tpmkms_4wp 9.0.3-beta.0 → 9.0.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/avatar.js +1 -3
- package/common/colors.instance.json +117 -61
- package/common/comparable.instance.json +0 -63
- package/common/comparable.js +0 -7
- package/common/concept.js +0 -8
- package/common/conjunction.js +0 -3
- package/common/crew.instance.json +83 -604
- package/common/crew.js +1 -13
- package/common/dialogues.js +0 -46
- package/common/dimension.instance.json +2 -126
- package/common/dimension.js +0 -8
- package/common/edible.instance.json +418 -355
- package/common/edible.js +0 -13
- package/common/emotions.js +0 -8
- package/common/fastfood.instance.json +3299 -6027
- package/common/fastfood.js +0 -82
- package/common/help.js +0 -5
- package/common/hierarchy.js +0 -9
- package/common/ordinals.js +0 -5
- package/common/people.instance.json +144 -120
- package/common/pipboy.instance.json +48 -271
- package/common/pipboy.js +2 -5
- package/common/pokemon.instance.json +138 -547
- package/common/properties.js +0 -13
- package/common/reports.instance.json +1 -1
- package/common/reports.js +0 -7
- package/common/scorekeeper.js +0 -12
- package/common/weight.instance.json +0 -168
- package/common/weight.js +0 -2
- package/common/wp.instance.json +2 -554
- package/common/wp.js +0 -18
- package/package.json +2 -2
package/common/edible.js
CHANGED
@@ -24,14 +24,6 @@ const template ={
|
|
24
24
|
"food and drinks are edible",
|
25
25
|
"chicken modifies strips",
|
26
26
|
"chicken modifies nugget",
|
27
|
-
{
|
28
|
-
associations: {
|
29
|
-
positive: [
|
30
|
-
{ context: [["nugget",0],["comma",0],["chicken",0],["strip",0],["list",0],["chicken",0],["nugget",0],["is",0],["food",0]], choose: 7 },
|
31
|
-
{ context: [["nugget",0],["chicken",0],["strip",0],["list",0],["chicken",0],["nugget",0],["is",0],["food",0]], choose: 6 },
|
32
|
-
],
|
33
|
-
}
|
34
|
-
},
|
35
27
|
"nuggets, chicken strips and chicken nuggets are food",
|
36
28
|
"sushi is food",
|
37
29
|
"apples oranges and bananas are fruit",
|
@@ -66,11 +58,6 @@ const template ={
|
|
66
58
|
['chicken_nugget', 'hasCountOfPieces'],
|
67
59
|
['nugget', 'hasCountOfPieces'],
|
68
60
|
],
|
69
|
-
associations: {
|
70
|
-
positive: [
|
71
|
-
// { context: [["apple",0],["juice",0]], choose: 1 },
|
72
|
-
],
|
73
|
-
}
|
74
61
|
/* save for later?
|
75
62
|
operators: [
|
76
63
|
"((food/1) [compoundFood] (food/1))",
|
package/common/emotions.js
CHANGED
@@ -29,14 +29,6 @@ const config = {
|
|
29
29
|
"([sentientBeing|])",
|
30
30
|
"([emotion|])",
|
31
31
|
],
|
32
|
-
associations: {
|
33
|
-
negative: [],
|
34
|
-
positive: [
|
35
|
-
{ context: [["unknown",0],["feel",0],["unknown",0]], choose: 1 },
|
36
|
-
{ context: [["unknown",1],["feel",0],["unknown",0]], choose: 1 },
|
37
|
-
{ context: [["unknown",1],["feel",0],["unknown",1]], choose: 1 },
|
38
|
-
]
|
39
|
-
},
|
40
32
|
bridges: [
|
41
33
|
{ id: 'sentientBeing' },
|
42
34
|
// just here so it loads and the sentence can make the semantics
|