@rpgm-tools/neo-angband-content 0.11.0
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/LICENSE.md +43 -0
- package/README.md +65 -0
- package/dist/compile.d.ts +10 -0
- package/dist/compile.d.ts.map +1 -0
- package/dist/compile.js +42 -0
- package/dist/compile.js.map +1 -0
- package/dist/data-exactness.reader.d.ts +105 -0
- package/dist/data-exactness.reader.d.ts.map +1 -0
- package/dist/data-exactness.reader.js +547 -0
- package/dist/data-exactness.reader.js.map +1 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -0
- package/dist/parser.d.ts +70 -0
- package/dist/parser.d.ts.map +1 -0
- package/dist/parser.js +365 -0
- package/dist/parser.js.map +1 -0
- package/dist/records.d.ts +101 -0
- package/dist/records.d.ts.map +1 -0
- package/dist/records.js +244 -0
- package/dist/records.js.map +1 -0
- package/dist/specs/generate.d.ts +12 -0
- package/dist/specs/generate.d.ts.map +1 -0
- package/dist/specs/generate.js +57 -0
- package/dist/specs/generate.js.map +1 -0
- package/dist/specs/index.d.ts +9 -0
- package/dist/specs/index.d.ts.map +1 -0
- package/dist/specs/index.js +60 -0
- package/dist/specs/index.js.map +1 -0
- package/dist/specs/init.d.ts +23 -0
- package/dist/specs/init.d.ts.map +1 -0
- package/dist/specs/init.js +305 -0
- package/dist/specs/init.js.map +1 -0
- package/dist/specs/misc.d.ts +33 -0
- package/dist/specs/misc.d.ts.map +1 -0
- package/dist/specs/misc.js +146 -0
- package/dist/specs/misc.js.map +1 -0
- package/dist/specs/mon-init.d.ts +22 -0
- package/dist/specs/mon-init.d.ts.map +1 -0
- package/dist/specs/mon-init.js +157 -0
- package/dist/specs/mon-init.js.map +1 -0
- package/dist/specs/obj-init.d.ts +19 -0
- package/dist/specs/obj-init.d.ts.map +1 -0
- package/dist/specs/obj-init.js +219 -0
- package/dist/specs/obj-init.js.map +1 -0
- package/dist/specs/ui-entry.d.ts +22 -0
- package/dist/specs/ui-entry.d.ts.map +1 -0
- package/dist/specs/ui-entry.js +69 -0
- package/dist/specs/ui-entry.js.map +1 -0
- package/dist/specs/visuals.d.ts +26 -0
- package/dist/specs/visuals.d.ts.map +1 -0
- package/dist/specs/visuals.js +35 -0
- package/dist/specs/visuals.js.map +1 -0
- package/pack/activation.json +3340 -0
- package/pack/artifact.json +5146 -0
- package/pack/blow_effects.json +370 -0
- package/pack/blow_methods.json +286 -0
- package/pack/body.json +59 -0
- package/pack/brand.json +100 -0
- package/pack/chest_trap.json +117 -0
- package/pack/class.json +5501 -0
- package/pack/constants.json +470 -0
- package/pack/curse.json +580 -0
- package/pack/dungeon_profile.json +836 -0
- package/pack/ego_item.json +2900 -0
- package/pack/flavor.json +1541 -0
- package/pack/hints.json +303 -0
- package/pack/history.json +1656 -0
- package/pack/manifest.json +52 -0
- package/pack/monster.json +29392 -0
- package/pack/monster_base.json +688 -0
- package/pack/monster_spell.json +2735 -0
- package/pack/names.json +1204 -0
- package/pack/object.json +11877 -0
- package/pack/object_base.json +364 -0
- package/pack/object_property.json +2034 -0
- package/pack/p_race.json +447 -0
- package/pack/pain.json +150 -0
- package/pack/pit.json +617 -0
- package/pack/player_property.json +519 -0
- package/pack/player_timed.json +1321 -0
- package/pack/projection.json +664 -0
- package/pack/quest.json +18 -0
- package/pack/realm.json +34 -0
- package/pack/room_template.json +9571 -0
- package/pack/shape.json +263 -0
- package/pack/slay.json +116 -0
- package/pack/store.json +675 -0
- package/pack/summon.json +143 -0
- package/pack/terrain.json +511 -0
- package/pack/trap.json +1483 -0
- package/pack/ui_entry.json +382 -0
- package/pack/ui_entry_base.json +60 -0
- package/pack/ui_entry_renderer.json +43 -0
- package/pack/ui_knowledge.json +302 -0
- package/pack/vault.json +4355 -0
- package/pack/visuals.json +680 -0
- package/pack/world.json +1030 -0
- package/package.json +67 -0
- package/src/compile.ts +55 -0
- package/src/data-exactness.reader.ts +559 -0
- package/src/index.ts +31 -0
- package/src/parser.ts +406 -0
- package/src/records.ts +341 -0
- package/src/specs/generate.ts +61 -0
- package/src/specs/index.ts +103 -0
- package/src/specs/init.ts +322 -0
- package/src/specs/misc.ts +153 -0
- package/src/specs/mon-init.ts +165 -0
- package/src/specs/obj-init.ts +230 -0
- package/src/specs/ui-entry.ts +74 -0
- package/src/specs/visuals.ts +37 -0
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file": "blow_effects",
|
|
3
|
+
"source": "lib/gamedata/blow_effects.txt",
|
|
4
|
+
"records": [
|
|
5
|
+
{
|
|
6
|
+
"name": "NONE",
|
|
7
|
+
"power": 0,
|
|
8
|
+
"eval": 0,
|
|
9
|
+
"lore-color-base": "Dark"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "HURT",
|
|
13
|
+
"power": 40,
|
|
14
|
+
"eval": 0,
|
|
15
|
+
"desc": [
|
|
16
|
+
"attack"
|
|
17
|
+
],
|
|
18
|
+
"lore-color-base": "Light Green",
|
|
19
|
+
"lash-type": "MISSILE"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "POISON",
|
|
23
|
+
"power": 20,
|
|
24
|
+
"eval": 10,
|
|
25
|
+
"desc": [
|
|
26
|
+
"poison"
|
|
27
|
+
],
|
|
28
|
+
"lore-color-base": "Orange",
|
|
29
|
+
"lore-color-resist": "Light Green",
|
|
30
|
+
"effect-type": "element",
|
|
31
|
+
"resist": "POIS",
|
|
32
|
+
"lash-type": "POIS"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "DISENCHANT",
|
|
36
|
+
"power": 10,
|
|
37
|
+
"eval": 30,
|
|
38
|
+
"desc": [
|
|
39
|
+
"disenchant"
|
|
40
|
+
],
|
|
41
|
+
"lore-color-base": "Light Red",
|
|
42
|
+
"lore-color-resist": "Light Green",
|
|
43
|
+
"effect-type": "element",
|
|
44
|
+
"resist": "DISEN",
|
|
45
|
+
"lash-type": "DISEN"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "DRAIN_CHARGES",
|
|
49
|
+
"power": 10,
|
|
50
|
+
"eval": 30,
|
|
51
|
+
"desc": [
|
|
52
|
+
"drain charges"
|
|
53
|
+
],
|
|
54
|
+
"lore-color-base": "Light Red",
|
|
55
|
+
"lore-color-resist": "Light Green",
|
|
56
|
+
"effect-type": "drain",
|
|
57
|
+
"lash-type": "DISEN"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "EAT_GOLD",
|
|
61
|
+
"power": 0,
|
|
62
|
+
"eval": 5,
|
|
63
|
+
"desc": [
|
|
64
|
+
"steal gold"
|
|
65
|
+
],
|
|
66
|
+
"lore-color-base": "Yellow",
|
|
67
|
+
"lore-color-resist": "Light Green",
|
|
68
|
+
"effect-type": "theft",
|
|
69
|
+
"lash-type": "MISSILE"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "EAT_ITEM",
|
|
73
|
+
"power": 0,
|
|
74
|
+
"eval": 5,
|
|
75
|
+
"desc": [
|
|
76
|
+
"steal items"
|
|
77
|
+
],
|
|
78
|
+
"lore-color-base": "Light Red",
|
|
79
|
+
"lore-color-resist": "Light Green",
|
|
80
|
+
"effect-type": "theft",
|
|
81
|
+
"lash-type": "MISSILE"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "EAT_FOOD",
|
|
85
|
+
"power": 0,
|
|
86
|
+
"eval": 5,
|
|
87
|
+
"desc": [
|
|
88
|
+
"eat your food"
|
|
89
|
+
],
|
|
90
|
+
"lore-color-base": "Yellow",
|
|
91
|
+
"lore-color-resist": "Light Green",
|
|
92
|
+
"effect-type": "eat-food",
|
|
93
|
+
"lash-type": "MISSILE"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "EAT_LIGHT",
|
|
97
|
+
"power": 0,
|
|
98
|
+
"eval": 5,
|
|
99
|
+
"desc": [
|
|
100
|
+
"absorb light"
|
|
101
|
+
],
|
|
102
|
+
"lore-color-base": "Yellow",
|
|
103
|
+
"lore-color-resist": "Light Green",
|
|
104
|
+
"effect-type": "eat-light",
|
|
105
|
+
"lash-type": "MISSILE"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "ACID",
|
|
109
|
+
"power": 20,
|
|
110
|
+
"eval": 20,
|
|
111
|
+
"desc": [
|
|
112
|
+
"shoot acid"
|
|
113
|
+
],
|
|
114
|
+
"lore-color-base": "Orange",
|
|
115
|
+
"lore-color-resist": "Yellow",
|
|
116
|
+
"lore-color-immune": "Light Green",
|
|
117
|
+
"lash-type": "ACID"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "ELEC",
|
|
121
|
+
"power": 40,
|
|
122
|
+
"eval": 10,
|
|
123
|
+
"desc": [
|
|
124
|
+
"electrify"
|
|
125
|
+
],
|
|
126
|
+
"lore-color-base": "Orange",
|
|
127
|
+
"lore-color-resist": "Yellow",
|
|
128
|
+
"lore-color-immune": "Light Green",
|
|
129
|
+
"lash-type": "ELEC"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "FIRE",
|
|
133
|
+
"power": 40,
|
|
134
|
+
"eval": 10,
|
|
135
|
+
"desc": [
|
|
136
|
+
"burn"
|
|
137
|
+
],
|
|
138
|
+
"lore-color-base": "Orange",
|
|
139
|
+
"lore-color-resist": "Yellow",
|
|
140
|
+
"lore-color-immune": "Light Green",
|
|
141
|
+
"lash-type": "FIRE"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "COLD",
|
|
145
|
+
"power": 40,
|
|
146
|
+
"eval": 10,
|
|
147
|
+
"desc": [
|
|
148
|
+
"freeze"
|
|
149
|
+
],
|
|
150
|
+
"lore-color-base": "Orange",
|
|
151
|
+
"lore-color-resist": "Yellow",
|
|
152
|
+
"lore-color-immune": "Light Green",
|
|
153
|
+
"lash-type": "ICE"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "BLIND",
|
|
157
|
+
"power": 0,
|
|
158
|
+
"eval": 20,
|
|
159
|
+
"desc": [
|
|
160
|
+
"blind"
|
|
161
|
+
],
|
|
162
|
+
"lore-color-base": "Yellow",
|
|
163
|
+
"lore-color-resist": "Light Green",
|
|
164
|
+
"effect-type": "flag",
|
|
165
|
+
"resist": "PROT_BLIND",
|
|
166
|
+
"lash-type": "DARK"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "CONFUSE",
|
|
170
|
+
"power": 20,
|
|
171
|
+
"eval": 20,
|
|
172
|
+
"desc": [
|
|
173
|
+
"confuse"
|
|
174
|
+
],
|
|
175
|
+
"lore-color-base": "Orange",
|
|
176
|
+
"lore-color-resist": "Light Green",
|
|
177
|
+
"effect-type": "flag",
|
|
178
|
+
"resist": "PROT_CONF",
|
|
179
|
+
"lash-type": "CHAOS"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "TERRIFY",
|
|
183
|
+
"power": 0,
|
|
184
|
+
"eval": 10,
|
|
185
|
+
"desc": [
|
|
186
|
+
"terrify"
|
|
187
|
+
],
|
|
188
|
+
"lore-color-base": "Yellow",
|
|
189
|
+
"lore-color-resist": "Light Green",
|
|
190
|
+
"effect-type": "flag",
|
|
191
|
+
"resist": "PROT_FEAR",
|
|
192
|
+
"lash-type": "CHAOS"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "PARALYZE",
|
|
196
|
+
"power": 0,
|
|
197
|
+
"eval": 40,
|
|
198
|
+
"desc": [
|
|
199
|
+
"paralyze"
|
|
200
|
+
],
|
|
201
|
+
"lore-color-base": "Light Red",
|
|
202
|
+
"lore-color-resist": "Light Green",
|
|
203
|
+
"effect-type": "flag",
|
|
204
|
+
"resist": "FREE_ACT",
|
|
205
|
+
"lash-type": "INERTIA"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "LOSE_STR",
|
|
209
|
+
"power": 0,
|
|
210
|
+
"eval": 20,
|
|
211
|
+
"desc": [
|
|
212
|
+
"reduce strength"
|
|
213
|
+
],
|
|
214
|
+
"lore-color-base": "Orange",
|
|
215
|
+
"lore-color-resist": "Light Green",
|
|
216
|
+
"effect-type": "flag",
|
|
217
|
+
"resist": "SUST_STR",
|
|
218
|
+
"lash-type": "TIME"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "LOSE_INT",
|
|
222
|
+
"power": 0,
|
|
223
|
+
"eval": 20,
|
|
224
|
+
"desc": [
|
|
225
|
+
"reduce intelligence"
|
|
226
|
+
],
|
|
227
|
+
"lore-color-base": "Orange",
|
|
228
|
+
"lore-color-resist": "Light Green",
|
|
229
|
+
"effect-type": "flag",
|
|
230
|
+
"resist": "SUST_INT",
|
|
231
|
+
"lash-type": "TIME"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "LOSE_WIS",
|
|
235
|
+
"power": 0,
|
|
236
|
+
"eval": 20,
|
|
237
|
+
"desc": [
|
|
238
|
+
"reduce wisdom"
|
|
239
|
+
],
|
|
240
|
+
"lore-color-base": "Orange",
|
|
241
|
+
"lore-color-resist": "Light Green",
|
|
242
|
+
"effect-type": "flag",
|
|
243
|
+
"resist": "SUST_WIS",
|
|
244
|
+
"lash-type": "TIME"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "LOSE_DEX",
|
|
248
|
+
"power": 0,
|
|
249
|
+
"eval": 20,
|
|
250
|
+
"desc": [
|
|
251
|
+
"reduce dexterity"
|
|
252
|
+
],
|
|
253
|
+
"lore-color-base": "Orange",
|
|
254
|
+
"lore-color-resist": "Light Green",
|
|
255
|
+
"effect-type": "flag",
|
|
256
|
+
"resist": "SUST_DEX",
|
|
257
|
+
"lash-type": "TIME"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "LOSE_CON",
|
|
261
|
+
"power": 0,
|
|
262
|
+
"eval": 30,
|
|
263
|
+
"desc": [
|
|
264
|
+
"reduce constitution"
|
|
265
|
+
],
|
|
266
|
+
"lore-color-base": "Orange",
|
|
267
|
+
"lore-color-resist": "Light Green",
|
|
268
|
+
"effect-type": "flag",
|
|
269
|
+
"resist": "SUST_CON",
|
|
270
|
+
"lash-type": "TIME"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "LOSE_ALL",
|
|
274
|
+
"power": 0,
|
|
275
|
+
"eval": 40,
|
|
276
|
+
"desc": [
|
|
277
|
+
"reduce all stats"
|
|
278
|
+
],
|
|
279
|
+
"lore-color-base": "Light Red",
|
|
280
|
+
"lore-color-resist": "Light Green",
|
|
281
|
+
"effect-type": "all_sustains",
|
|
282
|
+
"lash-type": "TIME"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "SHATTER",
|
|
286
|
+
"power": 60,
|
|
287
|
+
"eval": 300,
|
|
288
|
+
"desc": [
|
|
289
|
+
"shatter"
|
|
290
|
+
],
|
|
291
|
+
"lore-color-base": "Yellow",
|
|
292
|
+
"lash-type": "SHARDS"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "EXP_10",
|
|
296
|
+
"power": 20,
|
|
297
|
+
"eval": 5,
|
|
298
|
+
"desc": [
|
|
299
|
+
"lower experience"
|
|
300
|
+
],
|
|
301
|
+
"lore-color-base": "Orange",
|
|
302
|
+
"lore-color-resist": "Yellow",
|
|
303
|
+
"effect-type": "flag",
|
|
304
|
+
"resist": "HOLD_LIFE",
|
|
305
|
+
"lash-type": "NETHER"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "EXP_20",
|
|
309
|
+
"power": 20,
|
|
310
|
+
"eval": 5,
|
|
311
|
+
"desc": [
|
|
312
|
+
"lower experience"
|
|
313
|
+
],
|
|
314
|
+
"lore-color-base": "Orange",
|
|
315
|
+
"lore-color-resist": "Yellow",
|
|
316
|
+
"effect-type": "flag",
|
|
317
|
+
"resist": "HOLD_LIFE",
|
|
318
|
+
"lash-type": "NETHER"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "EXP_40",
|
|
322
|
+
"power": 20,
|
|
323
|
+
"eval": 10,
|
|
324
|
+
"desc": [
|
|
325
|
+
"lower experience"
|
|
326
|
+
],
|
|
327
|
+
"lore-color-base": "Orange",
|
|
328
|
+
"lore-color-resist": "Yellow",
|
|
329
|
+
"effect-type": "flag",
|
|
330
|
+
"resist": "HOLD_LIFE",
|
|
331
|
+
"lash-type": "NETHER"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "EXP_80",
|
|
335
|
+
"power": 20,
|
|
336
|
+
"eval": 10,
|
|
337
|
+
"desc": [
|
|
338
|
+
"lower experience"
|
|
339
|
+
],
|
|
340
|
+
"lore-color-base": "Orange",
|
|
341
|
+
"lore-color-resist": "Yellow",
|
|
342
|
+
"effect-type": "flag",
|
|
343
|
+
"resist": "HOLD_LIFE",
|
|
344
|
+
"lash-type": "NETHER"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "HALLU",
|
|
348
|
+
"power": 0,
|
|
349
|
+
"eval": 20,
|
|
350
|
+
"desc": [
|
|
351
|
+
"cause hallucinations"
|
|
352
|
+
],
|
|
353
|
+
"lore-color-base": "Yellow",
|
|
354
|
+
"lore-color-resist": "Light Green",
|
|
355
|
+
"effect-type": "element",
|
|
356
|
+
"resist": "CHAOS",
|
|
357
|
+
"lash-type": "CHAOS"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "BLACK_BREATH",
|
|
361
|
+
"power": 0,
|
|
362
|
+
"eval": 10,
|
|
363
|
+
"desc": [
|
|
364
|
+
"inflict Black Breath"
|
|
365
|
+
],
|
|
366
|
+
"lore-color-base": "Light Red",
|
|
367
|
+
"lash-type": "TIME"
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file": "blow_methods",
|
|
3
|
+
"source": "lib/gamedata/blow_methods.txt",
|
|
4
|
+
"records": [
|
|
5
|
+
{
|
|
6
|
+
"name": "HIT",
|
|
7
|
+
"cut": 1,
|
|
8
|
+
"stun": 1,
|
|
9
|
+
"miss": 1,
|
|
10
|
+
"phys": 1,
|
|
11
|
+
"msg": "MON_HIT",
|
|
12
|
+
"act": [
|
|
13
|
+
"hits {target}"
|
|
14
|
+
],
|
|
15
|
+
"desc": [
|
|
16
|
+
"hit"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "TOUCH",
|
|
21
|
+
"cut": 0,
|
|
22
|
+
"stun": 0,
|
|
23
|
+
"miss": 1,
|
|
24
|
+
"phys": 0,
|
|
25
|
+
"msg": "MON_TOUCH",
|
|
26
|
+
"act": [
|
|
27
|
+
"touches {target}"
|
|
28
|
+
],
|
|
29
|
+
"desc": [
|
|
30
|
+
"touch"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "PUNCH",
|
|
35
|
+
"cut": 0,
|
|
36
|
+
"stun": 1,
|
|
37
|
+
"miss": 1,
|
|
38
|
+
"phys": 1,
|
|
39
|
+
"msg": "MON_PUNCH",
|
|
40
|
+
"act": [
|
|
41
|
+
"punches {target}"
|
|
42
|
+
],
|
|
43
|
+
"desc": [
|
|
44
|
+
"punch"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "KICK",
|
|
49
|
+
"cut": 0,
|
|
50
|
+
"stun": 1,
|
|
51
|
+
"miss": 1,
|
|
52
|
+
"phys": 1,
|
|
53
|
+
"msg": "MON_KICK",
|
|
54
|
+
"act": [
|
|
55
|
+
"kicks {target}"
|
|
56
|
+
],
|
|
57
|
+
"desc": [
|
|
58
|
+
"kick"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "CLAW",
|
|
63
|
+
"cut": 1,
|
|
64
|
+
"stun": 0,
|
|
65
|
+
"miss": 1,
|
|
66
|
+
"phys": 1,
|
|
67
|
+
"msg": "MON_CLAW",
|
|
68
|
+
"act": [
|
|
69
|
+
"claws {target}"
|
|
70
|
+
],
|
|
71
|
+
"desc": [
|
|
72
|
+
"claw"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "BITE",
|
|
77
|
+
"cut": 1,
|
|
78
|
+
"stun": 0,
|
|
79
|
+
"miss": 1,
|
|
80
|
+
"phys": 1,
|
|
81
|
+
"msg": "MON_BITE",
|
|
82
|
+
"act": [
|
|
83
|
+
"bites {target}"
|
|
84
|
+
],
|
|
85
|
+
"desc": [
|
|
86
|
+
"bite"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "STING",
|
|
91
|
+
"cut": 0,
|
|
92
|
+
"stun": 0,
|
|
93
|
+
"miss": 1,
|
|
94
|
+
"phys": 1,
|
|
95
|
+
"msg": "MON_STING",
|
|
96
|
+
"act": [
|
|
97
|
+
"stings {target}"
|
|
98
|
+
],
|
|
99
|
+
"desc": [
|
|
100
|
+
"sting"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "BUTT",
|
|
105
|
+
"cut": 0,
|
|
106
|
+
"stun": 1,
|
|
107
|
+
"miss": 1,
|
|
108
|
+
"phys": 1,
|
|
109
|
+
"msg": "MON_BUTT",
|
|
110
|
+
"act": [
|
|
111
|
+
"butts {target}"
|
|
112
|
+
],
|
|
113
|
+
"desc": [
|
|
114
|
+
"butt"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "CRUSH",
|
|
119
|
+
"cut": 0,
|
|
120
|
+
"stun": 1,
|
|
121
|
+
"miss": 1,
|
|
122
|
+
"phys": 1,
|
|
123
|
+
"msg": "MON_CRUSH",
|
|
124
|
+
"act": [
|
|
125
|
+
"crushes {target}"
|
|
126
|
+
],
|
|
127
|
+
"desc": [
|
|
128
|
+
"crush"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "ENGULF",
|
|
133
|
+
"cut": 0,
|
|
134
|
+
"stun": 0,
|
|
135
|
+
"miss": 1,
|
|
136
|
+
"phys": 0,
|
|
137
|
+
"msg": "MON_ENGULF",
|
|
138
|
+
"act": [
|
|
139
|
+
"engulfs {target}"
|
|
140
|
+
],
|
|
141
|
+
"desc": [
|
|
142
|
+
"engulf"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "CRAWL",
|
|
147
|
+
"cut": 0,
|
|
148
|
+
"stun": 0,
|
|
149
|
+
"miss": 0,
|
|
150
|
+
"phys": 0,
|
|
151
|
+
"msg": "MON_CRAWL",
|
|
152
|
+
"act": [
|
|
153
|
+
"crawls on {target}"
|
|
154
|
+
],
|
|
155
|
+
"desc": [
|
|
156
|
+
"crawl on you"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "DROOL",
|
|
161
|
+
"cut": 0,
|
|
162
|
+
"stun": 0,
|
|
163
|
+
"miss": 0,
|
|
164
|
+
"phys": 0,
|
|
165
|
+
"msg": "MON_DROOL",
|
|
166
|
+
"act": [
|
|
167
|
+
"drools on {target}"
|
|
168
|
+
],
|
|
169
|
+
"desc": [
|
|
170
|
+
"drool on you"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "SPIT",
|
|
175
|
+
"cut": 0,
|
|
176
|
+
"stun": 0,
|
|
177
|
+
"miss": 0,
|
|
178
|
+
"phys": 0,
|
|
179
|
+
"msg": "MON_SPIT",
|
|
180
|
+
"act": [
|
|
181
|
+
"spits on {target}"
|
|
182
|
+
],
|
|
183
|
+
"desc": [
|
|
184
|
+
"spit"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "GAZE",
|
|
189
|
+
"cut": 0,
|
|
190
|
+
"stun": 0,
|
|
191
|
+
"miss": 0,
|
|
192
|
+
"phys": 0,
|
|
193
|
+
"msg": "MON_GAZE",
|
|
194
|
+
"act": [
|
|
195
|
+
"gazes at {target}"
|
|
196
|
+
],
|
|
197
|
+
"desc": [
|
|
198
|
+
"gaze"
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "WAIL",
|
|
203
|
+
"cut": 0,
|
|
204
|
+
"stun": 0,
|
|
205
|
+
"miss": 0,
|
|
206
|
+
"phys": 0,
|
|
207
|
+
"msg": "MON_WAIL",
|
|
208
|
+
"act": [
|
|
209
|
+
"wails at {target}"
|
|
210
|
+
],
|
|
211
|
+
"desc": [
|
|
212
|
+
"wail"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "SPORE",
|
|
217
|
+
"cut": 0,
|
|
218
|
+
"stun": 0,
|
|
219
|
+
"miss": 0,
|
|
220
|
+
"phys": 0,
|
|
221
|
+
"msg": "MON_SPORE",
|
|
222
|
+
"act": [
|
|
223
|
+
"releases spores at {target}"
|
|
224
|
+
],
|
|
225
|
+
"desc": [
|
|
226
|
+
"release spores"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "BEG",
|
|
231
|
+
"cut": 0,
|
|
232
|
+
"stun": 0,
|
|
233
|
+
"miss": 0,
|
|
234
|
+
"phys": 0,
|
|
235
|
+
"msg": "MON_BEG",
|
|
236
|
+
"act": [
|
|
237
|
+
"begs {target} for money"
|
|
238
|
+
],
|
|
239
|
+
"desc": [
|
|
240
|
+
"beg"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "INSULT",
|
|
245
|
+
"cut": 0,
|
|
246
|
+
"stun": 0,
|
|
247
|
+
"miss": 0,
|
|
248
|
+
"phys": 0,
|
|
249
|
+
"msg": "MON_INSULT",
|
|
250
|
+
"act": [
|
|
251
|
+
"insults {target}!",
|
|
252
|
+
"insults {oftarget} mother!",
|
|
253
|
+
"gives {target} the finger!",
|
|
254
|
+
"humiliates {target}!",
|
|
255
|
+
"defiles {target}!",
|
|
256
|
+
"dances around {target}!",
|
|
257
|
+
"makes obscene gestures!",
|
|
258
|
+
"moons {target}!!!"
|
|
259
|
+
],
|
|
260
|
+
"desc": [
|
|
261
|
+
"insult"
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "MOAN",
|
|
266
|
+
"cut": 0,
|
|
267
|
+
"stun": 0,
|
|
268
|
+
"miss": 0,
|
|
269
|
+
"phys": 0,
|
|
270
|
+
"msg": "MON_MOAN",
|
|
271
|
+
"act": [
|
|
272
|
+
"wants his mushrooms back",
|
|
273
|
+
"tells {target} to get off his land",
|
|
274
|
+
"looks for his dogs",
|
|
275
|
+
"says 'Did you kill my Fang?'",
|
|
276
|
+
"asks 'Do you want to buy any mushrooms?'",
|
|
277
|
+
"seems sad about something",
|
|
278
|
+
"asks if {target} {has} seen his dogs",
|
|
279
|
+
"mumbles something about mushrooms"
|
|
280
|
+
],
|
|
281
|
+
"desc": [
|
|
282
|
+
"moan"
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
}
|
package/pack/body.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file": "body",
|
|
3
|
+
"source": "lib/gamedata/body.txt",
|
|
4
|
+
"records": [
|
|
5
|
+
{
|
|
6
|
+
"body": "Humanoid",
|
|
7
|
+
"slot": [
|
|
8
|
+
{
|
|
9
|
+
"slot": "WEAPON",
|
|
10
|
+
"name": "weapon"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"slot": "BOW",
|
|
14
|
+
"name": "shooting"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"slot": "RING",
|
|
18
|
+
"name": "right hand"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"slot": "RING",
|
|
22
|
+
"name": "left hand"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"slot": "AMULET",
|
|
26
|
+
"name": "neck"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"slot": "LIGHT",
|
|
30
|
+
"name": "light"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"slot": "BODY_ARMOR",
|
|
34
|
+
"name": "body"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"slot": "CLOAK",
|
|
38
|
+
"name": "back"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"slot": "SHIELD",
|
|
42
|
+
"name": "arm"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"slot": "HAT",
|
|
46
|
+
"name": "head"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"slot": "GLOVES",
|
|
50
|
+
"name": "hands"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"slot": "BOOTS",
|
|
54
|
+
"name": "feet"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|