@wayward/types 2.14.0 → 2.14.1-beta.dev.20241215.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/definitions/cplusplus/index.d.ts +2 -0
- package/definitions/game/game/Game.d.ts +1 -1
- package/definitions/game/game/IObject.d.ts +4 -0
- package/definitions/game/game/biome/template/Template.d.ts +3 -2
- package/definitions/game/game/deity/Deity.d.ts +1 -0
- package/definitions/game/game/doodad/Doodad.d.ts +1 -1
- package/definitions/game/game/doodad/IDoodad.d.ts +2 -0
- package/definitions/game/game/entity/CombatStrengthManager.d.ts +6 -5
- package/definitions/game/game/entity/Entity.d.ts +1 -1
- package/definitions/game/game/entity/EntityMovable.d.ts +3 -1
- package/definitions/game/game/entity/Human.d.ts +2 -2
- package/definitions/game/game/entity/IEntity.d.ts +1 -0
- package/definitions/game/game/entity/IHuman.d.ts +0 -1
- package/definitions/game/game/entity/action/Action.d.ts +2 -6
- package/definitions/game/game/entity/action/ActionExecutor.d.ts +1 -1
- package/definitions/game/game/entity/action/ActionsRegistration.d.ts +17 -8
- package/definitions/game/game/entity/action/IAction.d.ts +16 -11
- package/definitions/game/game/entity/action/actions/{Sacrifice.d.ts → AscendDescend.d.ts} +1 -8
- package/definitions/game/game/entity/action/actions/CageCreature.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/ClearMessages.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Consecrate.d.ts +43 -0
- package/definitions/game/game/entity/action/actions/Craft.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/CraftNew.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Dismantle.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Drop.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Eat.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/GatherLiquid.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Harvest.d.ts +2 -1
- package/definitions/game/game/entity/action/actions/Ignite.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Plant.d.ts +2 -1
- package/definitions/game/game/entity/action/actions/SetCreatureAi.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/SetCreatureAiAll.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Stack.d.ts +2 -2
- package/definitions/game/game/entity/action/actions/Throw.d.ts +1 -1
- package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +2 -1
- package/definitions/game/game/entity/action/usable/UsableAction.d.ts +3 -1
- package/definitions/game/game/entity/action/usable/UsableActionTranslator.d.ts +6 -6
- package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +3 -1
- package/definitions/game/game/entity/action/usable/actions/UsableActionsDynamic.d.ts +3 -0
- package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
- package/definitions/game/game/entity/ai/AI.d.ts +7 -7
- package/definitions/game/game/entity/creature/zone/CreatureZone.d.ts +4 -3
- package/definitions/game/game/entity/creature/zone/CreatureZoneManager.d.ts +2 -2
- package/definitions/game/game/entity/creature/zone/ICreatureZone.d.ts +29 -1
- package/definitions/game/game/entity/creature/zone/zones/arid/AridCreatures.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/arid/AridDoodadReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/arid/AridGuardians.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/arid/AridTileReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/coastal/CoastalCreatures.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/coastal/CoastalDoodadReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/coastal/CoastalGuardians.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/coastal/CoastalTileReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/iceCap/IceCapCreatures.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/iceCap/IceCapDoodadReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/iceCap/IceCapGuardians.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/iceCap/IceCapTileReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/volcanic/VolcanicCreatures.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/volcanic/VolcanicDoodadReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/volcanic/VolcanicGuardians.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/volcanic/VolcanicTileReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/wetlands/WetlandsCreatures.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/wetlands/WetlandsDoodadReplacements.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/wetlands/WetlandsGuardians.d.ts +12 -0
- package/definitions/game/game/entity/creature/zone/zones/wetlands/WetlandsTileReplacements.d.ts +12 -0
- package/definitions/game/game/entity/flowfield/FlowFieldManager.d.ts +1 -1
- package/definitions/game/game/entity/player/IPlayer.d.ts +3 -4
- package/definitions/game/game/entity/player/quest/quest/Quest.d.ts +1 -0
- package/definitions/game/game/entity/status/IStatus.d.ts +3 -0
- package/definitions/game/game/inspection/InfoProvider.d.ts +3 -0
- package/definitions/game/game/inspection/Inspection.d.ts +1 -0
- package/definitions/game/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +1 -2
- package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +5 -8
- package/definitions/game/game/island/IIsland.d.ts +1 -1
- package/definitions/game/game/island/Island.d.ts +1 -1
- package/definitions/game/game/island/automation/Automation.d.ts +12 -3
- package/definitions/game/game/island/automation/AutomationStep.d.ts +1 -0
- package/definitions/game/game/island/automation/IAutomation.d.ts +103 -8
- package/definitions/game/game/island/automation/steps/ExecuteAction.d.ts +1 -1
- package/definitions/game/game/item/IItem.d.ts +25 -4
- package/definitions/game/game/item/IItemManager.d.ts +7 -3
- package/definitions/game/game/item/Item.d.ts +1 -0
- package/definitions/game/game/item/ItemFinder.d.ts +1 -0
- package/definitions/game/game/item/ItemManager.d.ts +6 -6
- package/definitions/game/game/magic/MagicalPropertyManager.d.ts +1 -3
- package/definitions/game/game/mapgen/IMapGen.d.ts +1 -1
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +85 -83
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -0
- package/definitions/game/game/milestones/MilestoneDefinition.d.ts +4 -4
- package/definitions/game/game/milestones/milestone/Runekeeper.d.ts +6 -2
- package/definitions/game/game/options/modifiers/milestone/modifiers/Versatile.d.ts +8 -2
- package/definitions/game/game/reference/IReferenceManager.d.ts +2 -2
- package/definitions/game/game/tile/Tile.d.ts +6 -4
- package/definitions/game/game/tile/TileEventManager.d.ts +5 -0
- package/definitions/game/language/DictionaryMap.d.ts +8 -8
- package/definitions/game/language/Translation.d.ts +9 -4
- package/definitions/game/language/dictionary/Message.d.ts +829 -848
- package/definitions/game/language/dictionary/Misc.d.ts +68 -69
- package/definitions/game/language/dictionary/Note.d.ts +1 -2
- package/definitions/game/language/dictionary/UiTranslation.d.ts +906 -924
- package/definitions/game/language/english/ui/RunekeeperDomains.d.ts +1 -1
- package/definitions/game/language/impl/TranslationImpl.d.ts +1 -0
- package/definitions/game/multiplayer/IMultiplayer.d.ts +68 -67
- package/definitions/game/renderer/IRenderer.d.ts +26 -24
- package/definitions/game/renderer/notifier/INotifier.d.ts +3 -1
- package/definitions/game/save/data/ISaveDataGlobal.d.ts +3 -0
- package/definitions/game/save/serializer/Serializer.d.ts +2 -1
- package/definitions/game/save/upgrade/UpgradeVersion.d.ts +3 -1
- package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20241129.d.ts +12 -0
- package/definitions/game/steamworks/Steamworks.d.ts +7 -0
- package/definitions/game/ui/ServerJoinHandler.d.ts +1 -0
- package/definitions/game/ui/Ui.d.ts +1 -0
- package/definitions/game/ui/component/Component.d.ts +2 -1
- package/definitions/game/ui/input/Bindable.d.ts +222 -222
- package/definitions/game/ui/screen/screens/GameScreen.d.ts +3 -4
- package/definitions/game/ui/screen/screens/game/DialogMap.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/Dialogs.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/component/Dialog.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +2 -0
- package/definitions/game/ui/screen/screens/game/component/container/ContainerBucketItemList.d.ts +3 -3
- package/definitions/game/ui/screen/screens/game/dialog/AltarDialog.d.ts +38 -0
- package/definitions/game/ui/screen/screens/game/dialog/ContainerDialog.d.ts +1 -0
- package/definitions/game/ui/screen/screens/game/static/actions/ActionSlot.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/static/actions/ActionsSelector.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/static/actions/IActionBar.d.ts +3 -1
- package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +3 -2
- package/definitions/game/ui/util/ComponentManipulator.d.ts +5 -4
- package/definitions/game/utilities/Version.d.ts +1 -1
- package/definitions/game/utilities/WebWorker.d.ts +4 -1
- package/definitions/game/utilities/math/Direction.d.ts +1 -1
- package/definitions/hosts/electron/main/ipc/handlers/electron/electron.d.ts +1 -0
- package/definitions/hosts/shared/globals.d.ts +2 -2
- package/definitions/hosts/shared/interfaces.d.ts +10 -0
- package/definitions/hosts/shared/ipc/electron.d.ts +1 -0
- package/definitions/matchmakingserver/dedicatedServer.d.ts +2 -1
- package/definitions/matchmakingserver/shared.d.ts +1 -38
- package/definitions/test/core/applicationInteractions.d.ts +4 -0
- package/definitions/test/core/applicationManager.d.ts +5 -4
- package/definitions/test/interfaces.d.ts +0 -63
- package/definitions/test/testRunner.d.ts +2 -2
- package/definitions/utilities/Errors.d.ts +1 -0
- package/definitions/utilities/enum/IEnum.d.ts +1 -1
- package/definitions/utilities/object/Objects.d.ts +5 -15
- package/package.json +1 -1
- package/definitions/game/game/entity/creature/zone/GuardianZones.d.ts +0 -16
- /package/definitions/game/save/upgrade/versions/beta2.14.0/{beta2.14.0-dev20240927.d.ts → beta2.14.0-dev20241024.d.ts} +0 -0
|
@@ -17,853 +17,834 @@ declare enum Message {
|
|
|
17
17
|
ActionAlterAltered = 5,
|
|
18
18
|
ActionAlterFailed = 6,
|
|
19
19
|
ActionAlterNotPossible = 7,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
YouSeeFireSpread = 837,
|
|
850
|
-
YouSeeHelpingPlant = 838,
|
|
851
|
-
YouSeeLay = 839,
|
|
852
|
-
YouSeeLayingTrap = 840,
|
|
853
|
-
YouSeeSpewLava = 841,
|
|
854
|
-
YouSeeSpitAcid = 842,
|
|
855
|
-
YouSeeSpringForth = 843,
|
|
856
|
-
YouSeeSummon = 844,
|
|
857
|
-
YouSeeSwampFlood = 845,
|
|
858
|
-
YouSeeTrampling = 846,
|
|
859
|
-
YouSetTheTrapOff = 847,
|
|
860
|
-
YouStokeTheCreature = 848,
|
|
861
|
-
YouSwapMainHandAndOffHand = 849,
|
|
862
|
-
YouThrew = 850,
|
|
863
|
-
YouTilled = 851,
|
|
864
|
-
YouUnequip = 852,
|
|
865
|
-
YouUsed = 853,
|
|
866
|
-
YouViewTheItemsOn = 854,
|
|
867
|
-
YouWhileTraveling = 855
|
|
20
|
+
ActionAscendDescendNotCaveEntrance = 8,
|
|
21
|
+
ActionAttachAlreadyHasItem = 9,
|
|
22
|
+
ActionAttachAttachedItem = 10,
|
|
23
|
+
ActionAttachAttachingItem = 11,
|
|
24
|
+
ActionAttachCannotAttach = 12,
|
|
25
|
+
ActionAttachNothingToAttachItemTo = 13,
|
|
26
|
+
ActionBuildTooDeep = 14,
|
|
27
|
+
ActionButcherReleasesLava = 15,
|
|
28
|
+
ActionCageCreatureCannotBeCaged = 16,
|
|
29
|
+
ActionCageCreatureNoCreature = 17,
|
|
30
|
+
ActionCastAreaOverfished = 18,
|
|
31
|
+
ActionConsecrateNoRunes = 19,
|
|
32
|
+
ActionConsecrateRunesConsecrated = 20,
|
|
33
|
+
ActionConsecrateRunesConsecratedChaos = 21,
|
|
34
|
+
ActionConsecrateRunesConsecratedEvil = 22,
|
|
35
|
+
ActionConsecrateRunesConsecratedGood = 23,
|
|
36
|
+
ActionConsecrateRunesConsecratedNothingUpgraded = 24,
|
|
37
|
+
ActionConsecrateRunesConsecratedResults = 25,
|
|
38
|
+
ActionConsumeItemTypeStats = 26,
|
|
39
|
+
ActionContextAllowedFireToSpread = 27,
|
|
40
|
+
ActionContextGainedSkill = 28,
|
|
41
|
+
ActionContextKilledCreature = 29,
|
|
42
|
+
ActionContextKilledPlayer = 30,
|
|
43
|
+
ActionContextKilledPlayerWithPet = 31,
|
|
44
|
+
ActionContextRested = 32,
|
|
45
|
+
ActionContextSlept = 33,
|
|
46
|
+
ActionContextTamedCreature = 34,
|
|
47
|
+
ActionCraftEfficacy = 35,
|
|
48
|
+
ActionCraftEfficacyHigh = 36,
|
|
49
|
+
ActionCraftEfficacyHighest = 37,
|
|
50
|
+
ActionCraftEfficacyLow = 38,
|
|
51
|
+
ActionCraftEfficacyLowest = 39,
|
|
52
|
+
ActionCraftEfficacyMed = 40,
|
|
53
|
+
ActionCraftEfficacyPercent = 41,
|
|
54
|
+
ActionCraftYouLackTheRequirements = 42,
|
|
55
|
+
ActionDetachContainerDetachContainer = 43,
|
|
56
|
+
ActionDetachContainerNoDetach = 44,
|
|
57
|
+
ActionDigTooDeep = 45,
|
|
58
|
+
ActionDigWaterFilledHole = 46,
|
|
59
|
+
ActionDisassembleNoItemsSalvaged = 47,
|
|
60
|
+
ActionDisassembleSalvaged = 48,
|
|
61
|
+
ActionDismantleSeparated = 49,
|
|
62
|
+
ActionDisplayItemDisplayed = 50,
|
|
63
|
+
ActionDisplayItemEmptyContainerBeforehand = 51,
|
|
64
|
+
ActionDisplayItemReturned = 52,
|
|
65
|
+
ActionDrinkInFrontNoDrink = 53,
|
|
66
|
+
ActionDropCannotUseBlocked = 54,
|
|
67
|
+
ActionDropCannotUseItemEquipped = 55,
|
|
68
|
+
ActionDropCannotUseItemProtected = 56,
|
|
69
|
+
ActionDropCannotUseItemProtectedDangerous = 57,
|
|
70
|
+
ActionDropCannotUseNoItems = 58,
|
|
71
|
+
ActionDropCannotUseNoRoomMultipleItems = 59,
|
|
72
|
+
ActionDumpItemsCannotUseBlocked = 60,
|
|
73
|
+
ActionDumpItemsCannotUseNothingToDumpOut = 61,
|
|
74
|
+
ActionDumpItemsDumpedItems = 62,
|
|
75
|
+
ActionEnhanceEnhanced = 63,
|
|
76
|
+
ActionEnhanceFailed = 64,
|
|
77
|
+
ActionEnhanceNotPossible = 65,
|
|
78
|
+
ActionEquipWillBreakOnDamage = 66,
|
|
79
|
+
ActionFishingNothingBiting = 67,
|
|
80
|
+
ActionFishingSlipped = 68,
|
|
81
|
+
ActionFishingTooShallow = 69,
|
|
82
|
+
ActionInvokeCannotUseSilence = 70,
|
|
83
|
+
ActionInvokeChaosNoEffect = 71,
|
|
84
|
+
ActionInvokeEvilCreaturesAttracted = 72,
|
|
85
|
+
ActionInvokeEvilCreaturesNoneSummoned = 73,
|
|
86
|
+
ActionInvokeGoodCreaturesPacified = 74,
|
|
87
|
+
ActionInvokeGoodCreaturesPacifiedAttacked = 75,
|
|
88
|
+
ActionInvokeGoodCreaturesPacifiedNone = 76,
|
|
89
|
+
ActionJumpCannotJump = 77,
|
|
90
|
+
ActionMeleeNothingToAttack = 78,
|
|
91
|
+
ActionMoveItemCannotUseContainerTooFarAway = 79,
|
|
92
|
+
ActionMoveItemCannotUseEquipped = 80,
|
|
93
|
+
ActionMoveItemCannotUseFromInvalidContainer = 81,
|
|
94
|
+
ActionMoveItemCannotUseInvalidContainer = 82,
|
|
95
|
+
ActionMoveItemCannotUseItemFilteredOut = 83,
|
|
96
|
+
ActionMoveItemCannotUseItemQualityOrTypeIncorrect = 84,
|
|
97
|
+
ActionMoveItemCannotUseItemTooFarAway = 85,
|
|
98
|
+
ActionMoveItemCannotUseMovingFromMultipleContainers = 86,
|
|
99
|
+
ActionMoveItemCannotUseNoContainerToMoveTo = 87,
|
|
100
|
+
ActionMoveItemCannotUseNoItems = 88,
|
|
101
|
+
ActionMoveItemCannotUseNoRoom = 89,
|
|
102
|
+
ActionMoveItemCannotUseProtected = 90,
|
|
103
|
+
ActionMoveToSwimOffEdgeCannotCombatTides = 91,
|
|
104
|
+
ActionNavigateMoon = 92,
|
|
105
|
+
ActionNavigateNotOverworld = 93,
|
|
106
|
+
ActionNavigateSun = 94,
|
|
107
|
+
ActionNavigateUseSextant = 95,
|
|
108
|
+
ActionPetCreatureRefused = 96,
|
|
109
|
+
ActionPetNoTamedCreature = 97,
|
|
110
|
+
ActionPickUpAllItemsNoItems = 98,
|
|
111
|
+
ActionPickUpDoodadCannotUseContainsItems = 99,
|
|
112
|
+
ActionPickUpExcrementNoExcrement = 100,
|
|
113
|
+
ActionPickUpItemNoItem = 101,
|
|
114
|
+
ActionPickUpNoPickUp = 102,
|
|
115
|
+
ActionPourNoEffect = 103,
|
|
116
|
+
ActionRefineNoDurability = 104,
|
|
117
|
+
ActionReleaseNoTamedCreature = 105,
|
|
118
|
+
ActionRenameIsland = 106,
|
|
119
|
+
ActionRepairMaxDurabilityTooLow = 107,
|
|
120
|
+
ActionReshapeFailed = 108,
|
|
121
|
+
ActionReshapeNotPossibleBonus = 109,
|
|
122
|
+
ActionReshapeReshaped = 110,
|
|
123
|
+
ActionSailToCivilizationNotInsideBoat = 111,
|
|
124
|
+
ActionSailToIsland = 112,
|
|
125
|
+
ActionSailToIslandArrived = 113,
|
|
126
|
+
ActionSailToIslandCannotUseCannotReachEdge = 114,
|
|
127
|
+
ActionSailToIslandCannotUseCannotReachPort = 115,
|
|
128
|
+
ActionSailToIslandCannotUseGhost = 116,
|
|
129
|
+
ActionSailToIslandCannotUseInvalidDestination = 117,
|
|
130
|
+
ActionSailToIslandCannotUseNoDestination = 118,
|
|
131
|
+
ActionSailToIslandCannotUseNotEnoughStamina = 119,
|
|
132
|
+
ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 120,
|
|
133
|
+
ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 121,
|
|
134
|
+
ActionSailToIslandPlayerArriving = 122,
|
|
135
|
+
ActionSailToIslandPlayerDeparting = 123,
|
|
136
|
+
ActionSetCreatureAiAlreadyCommanded = 124,
|
|
137
|
+
ActionSetCreatureAiCannotCommand = 125,
|
|
138
|
+
ActionSetCreatureAiNotEnoughSkill = 126,
|
|
139
|
+
ActionSetCreatureAiNotEnoughTames = 127,
|
|
140
|
+
ActionSetDownNotEnoughRoom = 128,
|
|
141
|
+
ActionShipToIslandNoDestination = 129,
|
|
142
|
+
ActionSwapEquipmentCannotUseNoEquipmentToSwap = 130,
|
|
143
|
+
ActionTameCreatureTamed = 131,
|
|
144
|
+
ActionTameNoCreature = 132,
|
|
145
|
+
ActionTestDepthNothingToTest = 133,
|
|
146
|
+
ActionTestDepthWell = 134,
|
|
147
|
+
ActionToggleContainerCannotUseAlreadyClosed = 135,
|
|
148
|
+
ActionToggleContainerCannotUseNoContainer = 136,
|
|
149
|
+
ActionToggleContainerCannotUseNoContainerToClose = 137,
|
|
150
|
+
ActionToggleContainerCannotUseNoContainerToOpen = 138,
|
|
151
|
+
ActionToggleContainerCannotUseNotAccessible = 139,
|
|
152
|
+
ActionToggleContainerCannotUseUnknownContainer = 140,
|
|
153
|
+
ActionToggleDoorNoDoor = 141,
|
|
154
|
+
ActionToggleHitchAlreadyHitched = 142,
|
|
155
|
+
ActionToggleHitchAlreadyUnhitched = 143,
|
|
156
|
+
ActionToggleHitchNoCreature = 144,
|
|
157
|
+
ActionToggleHitchNoHitch = 145,
|
|
158
|
+
ActionToggleTilledAlreadyPacked = 146,
|
|
159
|
+
ActionToggleTilledAlreadyTilled = 147,
|
|
160
|
+
ActionToggleTilledDug = 148,
|
|
161
|
+
ActionTradeCannotUseExceedsCarryWeight = 149,
|
|
162
|
+
ActionTradeCannotUseNotEnoughCredit = 150,
|
|
163
|
+
ActionTradeCannotUseNothingToTrade = 151,
|
|
164
|
+
ActionTradeCannotUseTradedTooMuch = 152,
|
|
165
|
+
ActionTradeCreditChange = 153,
|
|
166
|
+
ActionTradeCreditChangeDecrease = 154,
|
|
167
|
+
ActionTradeCreditChangeIncrease = 155,
|
|
168
|
+
ActionTradeDialogue1 = 156,
|
|
169
|
+
ActionTradeDialogue2 = 157,
|
|
170
|
+
ActionTradeDialogue3 = 158,
|
|
171
|
+
ActionTradeDialogue4 = 159,
|
|
172
|
+
ActionTradeIndicateUntradable = 160,
|
|
173
|
+
ActionTradeMerchantItems = 161,
|
|
174
|
+
ActionTradeYourItems = 162,
|
|
175
|
+
ActionUncageCannotUncageHere = 163,
|
|
176
|
+
ActionUpgradeFailed = 164,
|
|
177
|
+
ActionUpgradeNotMagical = 165,
|
|
178
|
+
ActionUpgradeNotPossible = 166,
|
|
179
|
+
ActionUpgradeUpgraded = 167,
|
|
180
|
+
ActionUseItemWeaponNeeded = 168,
|
|
181
|
+
ActionViewItemsCannotUseBlocked = 169,
|
|
182
|
+
AddedFuelToFire = 170,
|
|
183
|
+
AddedFuelToTorch = 171,
|
|
184
|
+
AllEquipmentUnEquipped = 172,
|
|
185
|
+
AlreadyDesalinatedWaterInStill = 173,
|
|
186
|
+
AlreadyFullyRefined = 174,
|
|
187
|
+
AlreadyFullyRepaired = 175,
|
|
188
|
+
AlreadyPreserved = 176,
|
|
189
|
+
AnotherIsland = 177,
|
|
190
|
+
AnUnknownItem = 178,
|
|
191
|
+
AppearedNotEffectiveForGathering = 179,
|
|
192
|
+
ArmorAppeared = 180,
|
|
193
|
+
ArmorProtectedFromInjuryAgainst = 181,
|
|
194
|
+
AttemptToSoothBurnInWater = 182,
|
|
195
|
+
AttemptToSoothFrostbiteWithFire = 183,
|
|
196
|
+
AttemptToSoothFrostbiteWithFireTooHot = 184,
|
|
197
|
+
AttemptToTill = 185,
|
|
198
|
+
BadlyBurnedLostHealth = 186,
|
|
199
|
+
BeenPoisoned = 187,
|
|
200
|
+
BeginSleeping = 188,
|
|
201
|
+
BeginUsingVehicle = 189,
|
|
202
|
+
BleedingHasStopped = 190,
|
|
203
|
+
BleedingProfusely = 191,
|
|
204
|
+
BleedingToDeathLostHealth = 192,
|
|
205
|
+
BookBlank = 193,
|
|
206
|
+
BookContains = 194,
|
|
207
|
+
BookCrumbles = 195,
|
|
208
|
+
BookDiagrams = 196,
|
|
209
|
+
BookEmpty = 197,
|
|
210
|
+
BookNothing = 198,
|
|
211
|
+
BookOpen = 199,
|
|
212
|
+
BookScribbles = 200,
|
|
213
|
+
BothEffectiveIneffective = 201,
|
|
214
|
+
BrokeIntoPieces = 202,
|
|
215
|
+
BrokenOnImpact = 203,
|
|
216
|
+
BrokenWhileFiring = 204,
|
|
217
|
+
Build = 205,
|
|
218
|
+
Burned = 206,
|
|
219
|
+
CannotAddAnyMoreFuel = 207,
|
|
220
|
+
CannotAnythingHere = 208,
|
|
221
|
+
CannotBeCrafted = 209,
|
|
222
|
+
CannotBePerformedOverWater = 210,
|
|
223
|
+
CannotBePlacedHere = 211,
|
|
224
|
+
CannotBePreserved = 212,
|
|
225
|
+
CannotBeRefined = 213,
|
|
226
|
+
CannotBeRefinedReinforcementNeeded = 214,
|
|
227
|
+
CannotBeReinforced = 215,
|
|
228
|
+
CannotBeRepaired = 216,
|
|
229
|
+
CannotBuildHere = 217,
|
|
230
|
+
CannotDigWithHands = 218,
|
|
231
|
+
CannotEquipThatThere = 219,
|
|
232
|
+
CannotFishFor = 220,
|
|
233
|
+
CannotFromHere = 221,
|
|
234
|
+
CannotHere = 222,
|
|
235
|
+
CannotInWater = 223,
|
|
236
|
+
CannotLeave = 224,
|
|
237
|
+
CannotNoTreasure = 225,
|
|
238
|
+
CannotPickUpLockedContainer = 226,
|
|
239
|
+
CannotPickUpWhileLit = 227,
|
|
240
|
+
CannotPlaceContainerInItself = 228,
|
|
241
|
+
CannotPlaceHere = 229,
|
|
242
|
+
CannotPlaceThatFromHere = 230,
|
|
243
|
+
CannotPlaceThatHere = 231,
|
|
244
|
+
CannotPlaceThatOverWater = 232,
|
|
245
|
+
CannotPlantHereTilled = 233,
|
|
246
|
+
CannotRepairWhileLit = 234,
|
|
247
|
+
CannotRestHere = 235,
|
|
248
|
+
CannotShipNoItems = 236,
|
|
249
|
+
CannotShipNoPath = 237,
|
|
250
|
+
CannotSleepHere = 238,
|
|
251
|
+
CannotStartFireHere = 239,
|
|
252
|
+
CannotToAnythingHere = 240,
|
|
253
|
+
CannotToTellTime = 241,
|
|
254
|
+
CannotUseCommand = 242,
|
|
255
|
+
CannotWhenProtected = 243,
|
|
256
|
+
CannotWhenProtectedDangerousAction = 244,
|
|
257
|
+
CannotWhenProtectedDurability = 245,
|
|
258
|
+
CarryingTooMuchWeight = 246,
|
|
259
|
+
CarvedUpCorpse = 247,
|
|
260
|
+
Carving = 248,
|
|
261
|
+
CastYourLine = 249,
|
|
262
|
+
CaughtFish = 250,
|
|
263
|
+
ChatBanCommand = 251,
|
|
264
|
+
ChatBannedCommand = 252,
|
|
265
|
+
ChatCommandsCommand = 253,
|
|
266
|
+
ChatCommandsCommandCommand = 254,
|
|
267
|
+
ChatPingCommand = 255,
|
|
268
|
+
ChatPlayerMessage = 256,
|
|
269
|
+
ChatPlayersCommand = 257,
|
|
270
|
+
ChatServerMessage = 258,
|
|
271
|
+
ChatUnbanCommand = 259,
|
|
272
|
+
ChatUnknownCommand = 260,
|
|
273
|
+
Chop = 261,
|
|
274
|
+
Chopping = 262,
|
|
275
|
+
ClearedBlood = 263,
|
|
276
|
+
CloseToBeingDestroyed = 264,
|
|
277
|
+
CommandAttack = 265,
|
|
278
|
+
CommandDefend = 266,
|
|
279
|
+
CommandFollowClose = 267,
|
|
280
|
+
CommandFollowFar = 268,
|
|
281
|
+
CommandHeel = 269,
|
|
282
|
+
CommandStay = 270,
|
|
283
|
+
CopiedMap = 271,
|
|
284
|
+
CorpseOf = 272,//#used via other translations
|
|
285
|
+
CorpseOfNamed = 273,//#used via other translations
|
|
286
|
+
Craft = 274,
|
|
287
|
+
Crafted = 275,
|
|
288
|
+
Crafts = 276,
|
|
289
|
+
CreatureAngered = 277,
|
|
290
|
+
CreatureAppears = 278,
|
|
291
|
+
CreatureAppeased = 279,
|
|
292
|
+
CreatureExcrement = 280,
|
|
293
|
+
CreatureHappinessHigh = 281,
|
|
294
|
+
CreatureHappinessLow = 282,
|
|
295
|
+
CreatureHappinessLowest = 283,
|
|
296
|
+
CreatureHappinessNormal = 284,
|
|
297
|
+
CreatureIdolAttractedCreature = 285,
|
|
298
|
+
CreatureRefusesToBeTamed = 286,
|
|
299
|
+
CreatureRefusesYou = 287,
|
|
300
|
+
CreatureUntamed = 288,
|
|
301
|
+
CreatureZoneBiomeChanged = 289,
|
|
302
|
+
CreatureZoneLayerChanged = 290,
|
|
303
|
+
CreatureZoneRerolled = 291,
|
|
304
|
+
CreatureZoneTierDecreased = 292,
|
|
305
|
+
CreatureZoneTierIncreased = 293,
|
|
306
|
+
CuredYourPoison = 294,
|
|
307
|
+
Cut = 295,
|
|
308
|
+
CutHasHealed = 296,
|
|
309
|
+
CutLostHealth = 297,
|
|
310
|
+
CutWasBandaged = 298,
|
|
311
|
+
DamageAppeared = 299,
|
|
312
|
+
DamagedByPouring = 300,
|
|
313
|
+
DangerousMove = 301,
|
|
314
|
+
DangerousOpen = 302,
|
|
315
|
+
DayQuarter1 = 303,
|
|
316
|
+
DayQuarter2 = 304,
|
|
317
|
+
DayQuarter3 = 305,
|
|
318
|
+
DayQuarter4 = 306,
|
|
319
|
+
DealtNoDamageToYou = 307,
|
|
320
|
+
DeathBy = 308,
|
|
321
|
+
DeathByBleeding = 309,
|
|
322
|
+
DeathByBurning = 310,
|
|
323
|
+
DeathByChallengeWinner = 311,
|
|
324
|
+
DeathByConsumption = 312,
|
|
325
|
+
DeathByCut = 313,
|
|
326
|
+
DeathByDrowning = 314,
|
|
327
|
+
DeathByExhaustion = 315,
|
|
328
|
+
DeathByFistByPlayer = 316,
|
|
329
|
+
DeathByFrostbite = 317,
|
|
330
|
+
DeathByFrostbiteTemperatureShock = 318,
|
|
331
|
+
DeathByMalnutrition = 319,
|
|
332
|
+
DeathByPoison = 320,
|
|
333
|
+
DeathBySteppingOn = 321,
|
|
334
|
+
DeathByTrap = 322,
|
|
335
|
+
DeathByWeaponByPlayer = 323,
|
|
336
|
+
DedicatedTitleAlreadySelected = 324,
|
|
337
|
+
DedicatedTitleMilestoneNotAllowed = 325,
|
|
338
|
+
DestroyedFromUse = 326,
|
|
339
|
+
DidNotSeemToBeHurting = 327,
|
|
340
|
+
Dig = 328,
|
|
341
|
+
DigAway = 329,
|
|
342
|
+
Digging = 330,
|
|
343
|
+
Disassemble = 331,
|
|
344
|
+
Disassembling = 332,
|
|
345
|
+
DiscoveredCaveEntrance = 333,
|
|
346
|
+
DiscoveredColdInsulation = 334,
|
|
347
|
+
DiscoveredHeatInsulation = 335,
|
|
348
|
+
DiscoveredInTheBottle = 336,
|
|
349
|
+
DiscoveredLavaPassage = 337,
|
|
350
|
+
DiscoveredQuality = 338,
|
|
351
|
+
Dismantle = 339,
|
|
352
|
+
Dismantling = 340,
|
|
353
|
+
DismantlingRequires = 341,
|
|
354
|
+
Dismounted = 342,
|
|
355
|
+
DisplacedPuddles = 343,
|
|
356
|
+
DoNotProduceAnyResources = 344,
|
|
357
|
+
DoodadCauseStatus = 345,
|
|
358
|
+
DoodadGroupTier = 346,
|
|
359
|
+
DrewSurroundings = 347,
|
|
360
|
+
Dripstone = 348,
|
|
361
|
+
DroppedIntoDepths = 349,
|
|
362
|
+
DroppedIntoFire = 350,
|
|
363
|
+
DroppedIntoTheVoid = 351,
|
|
364
|
+
DryadSprouted = 352,
|
|
365
|
+
DueToDehydration = 353,
|
|
366
|
+
DueToStarvation = 354,
|
|
367
|
+
DugTreasureOut = 355,
|
|
368
|
+
DugTreasureOutSurprise = 356,
|
|
369
|
+
DumpContentsOfContainerInInventory = 357,
|
|
370
|
+
DyingOfDehydration = 358,
|
|
371
|
+
EarnedMilestone = 359,
|
|
372
|
+
Effective = 360,
|
|
373
|
+
EquipmentPreventedStatusEffects = 361,
|
|
374
|
+
ErrorHasOccured = 362,
|
|
375
|
+
ExtinguishedFire = 363,
|
|
376
|
+
ExtinguishedLightSource = 364,
|
|
377
|
+
ExudeNotPossible = 365,
|
|
378
|
+
FailedToAbsorb = 366,
|
|
379
|
+
FailedToAddFuelToTorch = 367,
|
|
380
|
+
FailedToCage = 368,
|
|
381
|
+
FailedToCatchFish = 369,
|
|
382
|
+
FailedToCauseDamage = 370,
|
|
383
|
+
FailedToCauseYouDamage = 371,
|
|
384
|
+
FailedToCopy = 372,
|
|
385
|
+
FailedToDraw = 373,
|
|
386
|
+
FailedToEnchant = 374,
|
|
387
|
+
FailedToExude = 375,
|
|
388
|
+
FailedToIgniteTorch = 376,
|
|
389
|
+
FailedToPickLock = 377,
|
|
390
|
+
FailedToPreserve = 378,
|
|
391
|
+
FailedToRefine = 379,
|
|
392
|
+
FailedToReinforce = 380,
|
|
393
|
+
FailedToRepair = 381,
|
|
394
|
+
FailedToStartFire = 382,
|
|
395
|
+
FailedToTame = 383,
|
|
396
|
+
FailedToTransmogrify = 384,
|
|
397
|
+
FarOffLands = 385,
|
|
398
|
+
FeltBurningPainLostHealth = 386,
|
|
399
|
+
FeltFrostbitePainLostHealth = 387,
|
|
400
|
+
FewMinutes = 388,
|
|
401
|
+
Filled = 389,
|
|
402
|
+
FilledFrom = 390,
|
|
403
|
+
FireAroundYouIsWarm = 391,
|
|
404
|
+
FiredIntoObstacle = 392,
|
|
405
|
+
FireOverflowed = 393,
|
|
406
|
+
FireOverflowedFireElemental = 394,
|
|
407
|
+
FireSource = 395,
|
|
408
|
+
FishingWithNoBait = 396,
|
|
409
|
+
Floating = 397,
|
|
410
|
+
FreshWater = 398,
|
|
411
|
+
FromTheStill = 399,
|
|
412
|
+
FuelIsRequired = 400,
|
|
413
|
+
Gather = 401,
|
|
414
|
+
GatherDestroy = 402,
|
|
415
|
+
Gathering = 403,
|
|
416
|
+
GhostNoActions = 404,
|
|
417
|
+
GhostOf = 405,
|
|
418
|
+
GoatHasNoMilk = 406,
|
|
419
|
+
HackAway = 407,
|
|
420
|
+
HandProtectionPreventedInjury = 408,
|
|
421
|
+
HandsNotEffectiveFor = 409,
|
|
422
|
+
Harvest = 410,
|
|
423
|
+
Harvesting = 411,
|
|
424
|
+
HasBeenHurtByATrap = 412,
|
|
425
|
+
HasDecayed = 413,
|
|
426
|
+
HasHitYouForDamage = 414,
|
|
427
|
+
HasNoEffect = 415,
|
|
428
|
+
HasSetTrapOffNoDamage = 416,
|
|
429
|
+
HasSplit = 417,
|
|
430
|
+
HelpGrow = 418,
|
|
431
|
+
HitchAttempt = 419,
|
|
432
|
+
HitchCreature = 420,
|
|
433
|
+
HitchDisabled = 421,
|
|
434
|
+
HitchInUse = 422,
|
|
435
|
+
HitForDamage = 423,
|
|
436
|
+
HitYouForDamage = 424,
|
|
437
|
+
Hour = 425,
|
|
438
|
+
Hours = 426,
|
|
439
|
+
HurtHandsHittingWithoutWeapons = 427,
|
|
440
|
+
HurtHandsWithNoTool = 428,
|
|
441
|
+
IgnitedTorch = 429,
|
|
442
|
+
Ineffective = 430,
|
|
443
|
+
InjuredFromTrap = 431,
|
|
444
|
+
InNeedOfRepair = 432,
|
|
445
|
+
InteractingWithHasInjuredYouForDamage = 433,
|
|
446
|
+
InvalidContainer = 434,
|
|
447
|
+
IsInTheWayOfPickingUp = 435,
|
|
448
|
+
ItemFromWater = 436,
|
|
449
|
+
JoinedAServer = 437,
|
|
450
|
+
Jump = 438,
|
|
451
|
+
Killed = 439,
|
|
452
|
+
KnowledgeHasIncreased = 440,
|
|
453
|
+
LastPlaceYouLeftOff = 441,
|
|
454
|
+
LearnedHowToCreate = 442,
|
|
455
|
+
LikelyFailures = 443,
|
|
456
|
+
Limited = 444,
|
|
457
|
+
Lockpick = 445,
|
|
458
|
+
MapCompletedNotOfThisArea = 446,
|
|
459
|
+
MapDestroyed = 447,
|
|
460
|
+
MapNearlyDestroyed = 448,
|
|
461
|
+
MapNotOfThisArea = 449,
|
|
462
|
+
MaterialsDestroyed = 450,
|
|
463
|
+
MessageOfTheDay = 451,
|
|
464
|
+
MetabolismSlowed = 452,
|
|
465
|
+
Milk = 453,
|
|
466
|
+
Mine = 454,
|
|
467
|
+
Mining = 455,
|
|
468
|
+
MissedWith = 456,
|
|
469
|
+
MissedYouWith = 457,
|
|
470
|
+
MovedItem = 458,
|
|
471
|
+
MovedItemFailed = 459,
|
|
472
|
+
MoveOverTrapButDoNotSetOff = 460,
|
|
473
|
+
MultiplayerGamePaused = 461,
|
|
474
|
+
MultiplayerGameResumed = 462,
|
|
475
|
+
MultiplayerPlayerConnected = 463,
|
|
476
|
+
MultiplayerPlayerDied = 464,
|
|
477
|
+
MultiplayerPlayerDisconnected = 465,
|
|
478
|
+
MultiplayerPlayerJoined = 466,
|
|
479
|
+
MustBeEquippedToIgnite = 467,
|
|
480
|
+
Mysteriously = 468,
|
|
481
|
+
NearlyBurnedEquipmentProtectedYou = 469,
|
|
482
|
+
NeedToStartTravelsOutside = 470,
|
|
483
|
+
NeedWaterForBoat = 471,
|
|
484
|
+
NightQuarter1 = 472,
|
|
485
|
+
NightQuarter2 = 473,
|
|
486
|
+
NightQuarter3 = 474,
|
|
487
|
+
NightQuarter4 = 475,
|
|
488
|
+
No = 476,
|
|
489
|
+
NoAmmunitionForThatWeapon = 477,
|
|
490
|
+
NoFireToStokeWith = 478,
|
|
491
|
+
NoFishAtLocation = 479,
|
|
492
|
+
NoGroundWater = 480,
|
|
493
|
+
NoInkToDrawMap = 481,
|
|
494
|
+
NoKindlingOrFuelItemsToStartFire = 482,
|
|
495
|
+
NoKindlingToStartFire = 483,
|
|
496
|
+
NoLongerFeelPainOfBeingBurned = 484,
|
|
497
|
+
NoLongerFeelPainOfBeingFrostbitten = 485,
|
|
498
|
+
NoLongerHostile = 486,
|
|
499
|
+
NoMoreRoomInContainer = 487,
|
|
500
|
+
NoPaperToDrawMap = 488,
|
|
501
|
+
NoRequiredItemToFireWeapon = 489,
|
|
502
|
+
NoReturnWithoutCompletingChallenges = 490,
|
|
503
|
+
NoRoomForImprovement = 491,
|
|
504
|
+
NoRoomForVehicle = 492,
|
|
505
|
+
NoRoomToDrop = 493,
|
|
506
|
+
NoRoomToSummon = 494,
|
|
507
|
+
NotEnoughPurifiedWaterYet = 495,
|
|
508
|
+
NotEnoughTreasureToReturn = 496,
|
|
509
|
+
NothingTo = 497,
|
|
510
|
+
NothingToGetFromThis = 498,
|
|
511
|
+
NothingToHarvestFromThisGather = 499,
|
|
512
|
+
NothingToSmother = 500,
|
|
513
|
+
NothingUsefulToHarvestYet = 501,
|
|
514
|
+
NoTinderToStartFire = 502,
|
|
515
|
+
NotSuitableToPlant = 503,
|
|
516
|
+
NoWaterInStill = 504,
|
|
517
|
+
NPCMerchantNewInventoryDialogue1 = 505,
|
|
518
|
+
NPCMerchantNewInventoryDialogue2 = 506,
|
|
519
|
+
NPCMerchantNewInventoryDialogue3 = 507,
|
|
520
|
+
NPCMerchantNewInventoryDialogue4 = 508,
|
|
521
|
+
NPCMerchantStartingDialogue1 = 509,
|
|
522
|
+
NPCMerchantStartingDialogue2 = 510,
|
|
523
|
+
NPCMerchantStartingDialogue3 = 511,
|
|
524
|
+
NPCMerchantStartingDialogue4 = 512,
|
|
525
|
+
NPCMerchantWelcomeCredit = 513,
|
|
526
|
+
NPCShipperShipToIsland = 514,
|
|
527
|
+
NPCShipperStartingDialogue1 = 515,
|
|
528
|
+
NPCShipperStartingDialogue2 = 516,
|
|
529
|
+
NPCShipperStartingDialogue3 = 517,
|
|
530
|
+
NPCShipperStartingDialogue4 = 518,
|
|
531
|
+
NPCWelcome = 519,
|
|
532
|
+
ObjectIsLocked = 520,
|
|
533
|
+
ObjectIsLockedAttemptToBreakIt = 521,
|
|
534
|
+
OfferAberrantFail = 522,
|
|
535
|
+
OfferAberrantFailButTamed = 523,
|
|
536
|
+
Open = 524,
|
|
537
|
+
OpenClose = 525,
|
|
538
|
+
OverEatingLostStamina = 526,
|
|
539
|
+
OverHydratingLostStamina = 527,
|
|
540
|
+
Pack = 528,
|
|
541
|
+
PaperTurnedToMush = 529,
|
|
542
|
+
ParryTheBlow = 530,
|
|
543
|
+
PetCreature = 531,
|
|
544
|
+
PickAway = 532,
|
|
545
|
+
PickUp = 533,
|
|
546
|
+
PickUpExcrement = 534,
|
|
547
|
+
PickUpTheItem = 535,
|
|
548
|
+
Place = 536,
|
|
549
|
+
PlacedItem = 537,
|
|
550
|
+
PlacedItemFailed = 538,
|
|
551
|
+
PlacedOnGround = 539,
|
|
552
|
+
PlantedInGround = 540,
|
|
553
|
+
PlantGatheredPlant = 541,
|
|
554
|
+
PlantGatheringWillDestroy = 542,
|
|
555
|
+
PlantHasResourcesToGather = 543,
|
|
556
|
+
PlantHasResourcesToHarvest = 544,
|
|
557
|
+
PlantHighlyFertile = 545,
|
|
558
|
+
Planting = 546,
|
|
559
|
+
PlantIsBare = 547,
|
|
560
|
+
PlantIsFertile = 548,
|
|
561
|
+
PlantIsInStage = 549,
|
|
562
|
+
PlantIsNotFertile = 550,
|
|
563
|
+
PlantNotReadyToHarvest = 551,
|
|
564
|
+
PlantReadyToGather = 552,
|
|
565
|
+
PlantReadyToGatherNotMaximal = 553,
|
|
566
|
+
PlantReadyToHarvest = 554,
|
|
567
|
+
PlantReadyToHarvestNotMaximal = 555,
|
|
568
|
+
PlayerHas = 556,
|
|
569
|
+
PlayerHasCompletedChallengeRequirement = 557,
|
|
570
|
+
PlayerHasWonChallenge = 558,
|
|
571
|
+
Poisoned = 559,
|
|
572
|
+
PoisonedLostHealth = 560,
|
|
573
|
+
PoisonWorkedItsCourse = 561,
|
|
574
|
+
PouredOut = 562,
|
|
575
|
+
PouredOutOnYourself = 563,
|
|
576
|
+
PouredWaterIntoStill = 564,
|
|
577
|
+
PourHarmedPlant = 565,
|
|
578
|
+
PourHealedPlant = 566,
|
|
579
|
+
PourHealedPlantFully = 567,
|
|
580
|
+
PourHealedPlantPartially = 568,
|
|
581
|
+
PourIncreasedFertility = 569,
|
|
582
|
+
Pouring = 570,
|
|
583
|
+
PourOverWatering = 571,
|
|
584
|
+
Prepare = 572,
|
|
585
|
+
Prepared = 573,
|
|
586
|
+
PreservedFood = 574,
|
|
587
|
+
PurifiedWaterInStill = 575,
|
|
588
|
+
RandomEventsFire = 576,
|
|
589
|
+
ReduceLength = 577,
|
|
590
|
+
RefusedToBeTamed = 578,
|
|
591
|
+
Repair = 579,
|
|
592
|
+
RequiredForDisassembly = 580,
|
|
593
|
+
RequiresFireToBeLit = 581,
|
|
594
|
+
RequiresYouToBeAround = 582,
|
|
595
|
+
Resistant = 583,
|
|
596
|
+
Rest = 584,
|
|
597
|
+
Rested = 585,
|
|
598
|
+
Resting = 586,
|
|
599
|
+
RestingOnGroundNotEffective = 587,
|
|
600
|
+
RestInterrupted = 588,
|
|
601
|
+
RestInterruptedDamage = 589,
|
|
602
|
+
RestInterruptedDying = 590,
|
|
603
|
+
RestInterruptedLoudNoise = 591,
|
|
604
|
+
RestInterruptedPain = 592,
|
|
605
|
+
RestInterruptedStirring = 593,
|
|
606
|
+
RestInterruptedWaterPoured = 594,
|
|
607
|
+
RestLongTime = 595,
|
|
608
|
+
RestModerateTime = 596,
|
|
609
|
+
RestOnBoat = 597,
|
|
610
|
+
RestShortTime = 598,
|
|
611
|
+
RestTime = 599,
|
|
612
|
+
ReturnedToCivilization = 600,
|
|
613
|
+
ReturningToCivilizationSetOffAgain = 601,
|
|
614
|
+
ReturnsToLife = 602,
|
|
615
|
+
Reverse = 603,
|
|
616
|
+
Sailing = 604,
|
|
617
|
+
ScrollMaster = 605,
|
|
618
|
+
ScrollProvidedNoUsefulInsight = 606,
|
|
619
|
+
Seawater = 607,
|
|
620
|
+
SeemsToHaveDrawnEnergy = 608,
|
|
621
|
+
SetTrapOffButNoDamage = 609,
|
|
622
|
+
SetUp = 610,
|
|
623
|
+
ShadowInTheWater = 611,
|
|
624
|
+
SkillHasRaised = 612,
|
|
625
|
+
Skills = 613,
|
|
626
|
+
Sleep = 614,
|
|
627
|
+
Sleeping = 615,
|
|
628
|
+
SleepOnBoat = 616,
|
|
629
|
+
Slept = 617,
|
|
630
|
+
SlitherSuckerConstricts = 618,
|
|
631
|
+
SlitherSuckerFailedToRemove = 619,
|
|
632
|
+
SlitherSuckerFailedToRemoveOuch = 620,
|
|
633
|
+
SlitherSuckerJumpedOnHead = 621,
|
|
634
|
+
SolarStill = 622,
|
|
635
|
+
SomethingInTheWayOf = 623,
|
|
636
|
+
SomethingInTheWayOfButcherFirst = 624,
|
|
637
|
+
SomethingInTheWayOfFire = 625,
|
|
638
|
+
SomethingInTheWayOfFishing = 626,
|
|
639
|
+
SomethingInTheWayOfPerforming = 627,
|
|
640
|
+
SomethingInTheWayOfPlacing = 628,
|
|
641
|
+
SomethingInTheWayOfReleasing = 629,
|
|
642
|
+
SomethingInTheWayOfSummoning = 630,
|
|
643
|
+
SomethingInWayOfClosingDoor = 631,
|
|
644
|
+
SoothedTheirBurnInjuries = 632,
|
|
645
|
+
SoothedYourBurnInjuries = 633,
|
|
646
|
+
SortedByCategory = 634,
|
|
647
|
+
SortedByCraftableOnly = 635,
|
|
648
|
+
SortedByName = 636,
|
|
649
|
+
SortedBySkill = 637,
|
|
650
|
+
SortedByUnlockedTime = 638,
|
|
651
|
+
StaminaIsFull = 639,
|
|
652
|
+
StartedFire = 640,
|
|
653
|
+
StartTravelInWater = 641,
|
|
654
|
+
StarvingToDeath = 642,
|
|
655
|
+
StatAmount = 643,
|
|
656
|
+
StatChangeUnknown = 644,
|
|
657
|
+
StatGained = 645,
|
|
658
|
+
StatIncreasing = 646,
|
|
659
|
+
StatLost = 647,
|
|
660
|
+
StatQuenched = 648,
|
|
661
|
+
StatRegained = 649,
|
|
662
|
+
StatSated = 650,
|
|
663
|
+
SteppingOn = 651,
|
|
664
|
+
Still = 652,
|
|
665
|
+
StillHasNoWaterToPurify = 653,
|
|
666
|
+
StirredUpClawWorm = 654,
|
|
667
|
+
StirredUpCreature = 655,
|
|
668
|
+
StoppedYourBleeding = 656,
|
|
669
|
+
StopUsingVehicle = 657,
|
|
670
|
+
SummonedGuardiansByDiggingTreasure = 658,
|
|
671
|
+
SummonedGuardiansByLockpicking = 659,
|
|
672
|
+
SummonVoidDwellerItem = 660,
|
|
673
|
+
SummonVoidDwellerRinging = 661,
|
|
674
|
+
SummonVoidDwellerShiver = 662,
|
|
675
|
+
SunNotBrightEnoughToStartFire = 663,
|
|
676
|
+
SwampWater = 664,
|
|
677
|
+
Swimming = 665,
|
|
678
|
+
TakenFromGroundBecomeTamed = 666,
|
|
679
|
+
TeleportBlocked = 667,
|
|
680
|
+
Teleported = 668,
|
|
681
|
+
TheirFist = 669,
|
|
682
|
+
TheirInventory = 670,
|
|
683
|
+
ThePlant = 671,
|
|
684
|
+
ThereIsNoContainerOnTheStill = 672,
|
|
685
|
+
ThereIsNoSunToStartFire = 673,
|
|
686
|
+
ThisCannotBeMilked = 674,
|
|
687
|
+
Throw = 675,
|
|
688
|
+
ThrownIntoDepths = 676,
|
|
689
|
+
ThrownIntoObstacle = 677,
|
|
690
|
+
ThrownIntoVoid = 678,
|
|
691
|
+
TierGroup = 679,
|
|
692
|
+
Till = 680,
|
|
693
|
+
Tilling = 681,
|
|
694
|
+
TimeIs = 682,
|
|
695
|
+
TimeIsDawn = 683,
|
|
696
|
+
TimeIsDaytime = 684,
|
|
697
|
+
TimeIsDusk = 685,
|
|
698
|
+
TimeIsNighttime = 686,
|
|
699
|
+
TimeIsSunrise = 687,
|
|
700
|
+
TimeIsSunset = 688,
|
|
701
|
+
ToFight = 689,
|
|
702
|
+
TooDamaged = 690,
|
|
703
|
+
TooExhaustedToJump = 691,
|
|
704
|
+
Touching = 692,
|
|
705
|
+
TrampledFire = 693,
|
|
706
|
+
TrampledFireFail = 694,
|
|
707
|
+
TrampledFirePartial = 695,
|
|
708
|
+
TrampledIntoGround = 696,
|
|
709
|
+
TrampleIntoGround = 697,
|
|
710
|
+
Trampling = 698,
|
|
711
|
+
TransmogrificationNotPossible = 699,
|
|
712
|
+
Transmogrified = 700,
|
|
713
|
+
TrapMissed = 701,
|
|
714
|
+
TrapStoppedYou = 702,
|
|
715
|
+
Traveling = 703,
|
|
716
|
+
Treasure = 704,
|
|
717
|
+
TreasureIsBlocked = 705,
|
|
718
|
+
UiActionCannotUseInaccessibleItem = 706,
|
|
719
|
+
UiActionCannotUseInThisSituation = 707,
|
|
720
|
+
UiActionCannotUseNoItemHovered = 708,
|
|
721
|
+
UiActionCannotUseNotInRange = 709,
|
|
722
|
+
UiActionCannotUseOnThisIsland = 710,
|
|
723
|
+
UiActionCannotUseRequiresCreature = 711,
|
|
724
|
+
UiActionCannotUseRequiresDoodad = 712,
|
|
725
|
+
UiActionCannotUseRequiresItem = 713,
|
|
726
|
+
UiActionCannotUseRequiresNPC = 714,
|
|
727
|
+
UiActionCannotUseRequiresVehicle = 715,
|
|
728
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 716,
|
|
729
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 717,
|
|
730
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 718,
|
|
731
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 719,
|
|
732
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 720,
|
|
733
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 721,
|
|
734
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 722,
|
|
735
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 723,
|
|
736
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 724,
|
|
737
|
+
UnhitchCreature = 725,
|
|
738
|
+
Unknown = 726,
|
|
739
|
+
Unlimited = 727,
|
|
740
|
+
UnlockedChest = 728,
|
|
741
|
+
UnpurifiedFreshWater = 729,
|
|
742
|
+
UnpurifiedWaterInStill = 730,
|
|
743
|
+
Use = 731,
|
|
744
|
+
UsingBareHands = 732,
|
|
745
|
+
VehicleDefense = 733,
|
|
746
|
+
Vulnerable = 734,
|
|
747
|
+
Water = 735,
|
|
748
|
+
WaterGathering = 736,
|
|
749
|
+
WaterPutOutFire = 737,
|
|
750
|
+
WellIsDry = 738,
|
|
751
|
+
WellIsFull = 739,
|
|
752
|
+
WildGoatRefusedToBeMilked = 740,
|
|
753
|
+
WorkingYourselfIntoExhaustion = 741,
|
|
754
|
+
WorkingYourselfIntoExhaustionAndDrowning = 742,
|
|
755
|
+
WorldContainer = 743,
|
|
756
|
+
You = 744,
|
|
757
|
+
YouAbsorb = 745,
|
|
758
|
+
YouApplied = 746,
|
|
759
|
+
YouAreAlready = 747,
|
|
760
|
+
YouAte = 748,
|
|
761
|
+
YouBeginResting = 749,
|
|
762
|
+
YouCannotDoThatYet = 750,
|
|
763
|
+
YouCanNowCombatTheTides = 751,
|
|
764
|
+
YouCrafted = 752,
|
|
765
|
+
YouDoNotFindTreasureYet = 753,
|
|
766
|
+
YouDrank = 754,
|
|
767
|
+
YouDropTheTorch = 755,
|
|
768
|
+
YouEnchant = 756,
|
|
769
|
+
YouEquip = 757,
|
|
770
|
+
YouExude = 758,
|
|
771
|
+
YouExudeSome = 759,
|
|
772
|
+
YouExudeSomeReasonConflicting = 760,
|
|
773
|
+
YouExudeSomeReasonMax = 761,
|
|
774
|
+
YouExudeSomeReasonProperties = 762,
|
|
775
|
+
YouFailedTo = 763,
|
|
776
|
+
YouFailedToExtinguishedFireFully = 764,
|
|
777
|
+
YouFailedToHeal = 765,
|
|
778
|
+
YouFailedToHealOther = 766,
|
|
779
|
+
YouFire = 767,
|
|
780
|
+
YouGathered = 768,
|
|
781
|
+
YouHarvested = 769,
|
|
782
|
+
YouHave = 770,
|
|
783
|
+
YouHaveAlreadyLearned = 771,
|
|
784
|
+
YouHaveBeenCut = 772,
|
|
785
|
+
YouHaveCaged = 773,
|
|
786
|
+
YouHaveCommanded = 774,
|
|
787
|
+
YouHaveDied = 775,
|
|
788
|
+
YouHaveHealedOther = 776,
|
|
789
|
+
YouHaveKilled = 777,
|
|
790
|
+
YouHaveNotCommanded = 778,
|
|
791
|
+
YouHaveReleased = 779,
|
|
792
|
+
YouHaveSummoned = 780,
|
|
793
|
+
YouHaveTamed = 781,
|
|
794
|
+
YouHaveUncaged = 782,
|
|
795
|
+
YouNoticeBarren = 783,
|
|
796
|
+
YouNoticeBecomeEnraged = 784,
|
|
797
|
+
YouNoticeDying = 785,
|
|
798
|
+
YouNoticeFertilityDecreasing = 786,
|
|
799
|
+
YouNoticeFertilityIncreasing = 787,
|
|
800
|
+
YouNoticeGrowing = 788,
|
|
801
|
+
YouNoticeLavaCooling = 789,
|
|
802
|
+
YouNoticeLavaHardening = 790,
|
|
803
|
+
YouNoticePerish = 791,
|
|
804
|
+
YouNoticePlantDamage = 792,
|
|
805
|
+
YouNoticePlantRegenerated = 793,
|
|
806
|
+
YouNoticeRegrowing = 794,
|
|
807
|
+
YouNoticeStumbleInjureItself = 795,
|
|
808
|
+
YouNoticeTakeFromGround = 796,
|
|
809
|
+
YouNoticeWoundsClosing = 797,
|
|
810
|
+
YouOfferedToCreature = 798,
|
|
811
|
+
YouOfferedToCreatureRejects = 799,
|
|
812
|
+
YouOpen = 800,
|
|
813
|
+
YouPacked = 801,
|
|
814
|
+
YouPickedUp = 802,
|
|
815
|
+
YouRefine = 803,
|
|
816
|
+
YouReinforce = 804,
|
|
817
|
+
YouRepair = 805,
|
|
818
|
+
YouReturnFromCivilizationWith = 806,
|
|
819
|
+
YourFist = 807,
|
|
820
|
+
YourHands = 808,
|
|
821
|
+
YourInventory = 809,
|
|
822
|
+
YourIsland = 810,
|
|
823
|
+
YouSeeALivingMushroomSpore = 811,
|
|
824
|
+
YouSeeASkeletonCollapse = 812,
|
|
825
|
+
YouSeeASlimeCombine = 813,
|
|
826
|
+
YouSeeAZombieBleeding = 814,
|
|
827
|
+
YouSeeCoolDown = 815,
|
|
828
|
+
YouSeeDrop = 816,
|
|
829
|
+
YouSeeEngulfFire = 817,
|
|
830
|
+
YouSeeFireSpread = 818,
|
|
831
|
+
YouSeeHelpingPlant = 819,
|
|
832
|
+
YouSeeLay = 820,
|
|
833
|
+
YouSeeLayingTrap = 821,
|
|
834
|
+
YouSeeSpewLava = 822,
|
|
835
|
+
YouSeeSpitAcid = 823,
|
|
836
|
+
YouSeeSpringForth = 824,
|
|
837
|
+
YouSeeSummon = 825,
|
|
838
|
+
YouSeeSwampFlood = 826,
|
|
839
|
+
YouSeeTrampling = 827,
|
|
840
|
+
YouSetTheTrapOff = 828,
|
|
841
|
+
YouStokeTheCreature = 829,
|
|
842
|
+
YouSwapMainHandAndOffHand = 830,
|
|
843
|
+
YouThrew = 831,
|
|
844
|
+
YouTilled = 832,
|
|
845
|
+
YouUnequip = 833,
|
|
846
|
+
YouUsed = 834,
|
|
847
|
+
YouViewTheItemsOn = 835,
|
|
848
|
+
YouWhileTraveling = 836
|
|
868
849
|
}
|
|
869
850
|
export default Message;
|