ekms 7.12.8-beta.0 → 7.12.8-beta.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,48 +0,0 @@
1
- const { Config, knowledgeModule, where, Digraph } = require('./runtime').theprogrammablemind
2
- const { defaultContextCheck } = require('./helpers')
3
- const base_km = require('./hierarchy')
4
- const countable = require('./countable')
5
- const comparable = require('./comparable')
6
- const tests = require('./pipboyTemplate.test.json')
7
- const instance = require('./pipboyTemplate.instance.json')
8
-
9
- const template = {
10
- queries: [
11
- "pistols rifles grenades mines and shotguns are weapons",
12
- "mines and grenades are explosives",
13
- "explosives are weapons",
14
- "pistols rifles and shotguns are firearms",
15
- "firearms are weapons",
16
- "hats armor and suits are clothes",
17
- // "a rifle is a weapon",
18
- //"a weapon is equipable and changeable"
19
- "a weapon is equipable",
20
- "clothes are wearable",
21
- // "weapons are countable", TODO fix this
22
- "edible is a concept",
23
- "food is edible",
24
- "drinks are drinkable",
25
- "meat is food",
26
- "vegetables and fruit are food",
27
- "cola and pop are drinks",
28
- "medicine and stimpaks are takeable",
29
- "item modifies properties",
30
- "damage luck hp rads value ap charisma range and accuracy are item properties"
31
- ]
32
- }
33
-
34
- const createConfig = () => new Config({ name: 'pipboyTemplate' }, module).add(base_km(), countable(), comparable())
35
-
36
- knowledgeModule({
37
- module,
38
- description: 'Template for pipboy with speech',
39
- createConfig,
40
- template: { template, instance },
41
- test: {
42
- name: './pipboyTemplate.test.json',
43
- contents: tests,
44
- checks: {
45
- context: defaultContextCheck,
46
- },
47
- },
48
- })
@@ -1,2 +0,0 @@
1
- [
2
- ]