@wayward/types 2.13.2-beta.dev.20230530.1 → 2.13.2-beta.dev.20230601.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.
@@ -221,17 +221,18 @@ export declare enum TileUpdateType {
221
221
  DoodadOrientation = 14,
222
222
  DoodadOverHidden = 15,
223
223
  DoodadRemove = 16,
224
- Item = 17,
225
- ItemDrop = 18,
226
- ItemMovement = 19,
227
- Mod = 20,
228
- NPC = 21,
229
- NPCSpawn = 22,
230
- Player = 23,
231
- Terrain = 24,
232
- TileEvent = 25,
233
- TileEventManager = 26,
234
- Tilled = 27
224
+ DoodadAddWater = 17,
225
+ Item = 18,
226
+ ItemDrop = 19,
227
+ ItemMovement = 20,
228
+ Mod = 21,
229
+ NPC = 22,
230
+ NPCSpawn = 23,
231
+ Player = 24,
232
+ Terrain = 25,
233
+ TileEvent = 26,
234
+ TileEventManager = 27,
235
+ Tilled = 28
235
236
  }
236
237
  export declare enum PauseSource {
237
238
  /**
@@ -9,7 +9,7 @@
9
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
11
  import type { IEventEmitter } from "event/EventEmitter";
12
- import type { DisplayableDoodadType, DoodadTag, DoodadTypeExtra, DoorOrientation, IDoodadDescription, IDoodadOptions, IHasBuilder } from "game/doodad/IDoodad";
12
+ import type { DisplayableDoodadType, DoodadTag, DoodadTypeExtra, DoorOrientation, IDoodadDescription, IDoodadOptions, IHasBuilder, IHasWater } from "game/doodad/IDoodad";
13
13
  import { DoodadType, DoodadTypeGroup, GrowingStage } from "game/doodad/IDoodad";
14
14
  import { ActionType } from "game/entity/action/IAction";
15
15
  import type Creature from "game/entity/creature/Creature";
@@ -93,6 +93,7 @@ export default class Doodad extends Entity<IDoodadDescription, DoodadType, Dooda
93
93
  disassembly?: Item[];
94
94
  gatherReady?: number;
95
95
  growth?: GrowingStage;
96
+ hasWater?: IHasWater;
96
97
  hitchedCreature?: number;
97
98
  itemOrders?: number[];
98
99
  magic?: MagicalPropertyManager;
@@ -125,13 +126,13 @@ export default class Doodad extends Entity<IDoodadDescription, DoodadType, Dooda
125
126
  toString(): string;
126
127
  getRegistrarId(): number;
127
128
  /**
128
- * @param article Whether to include an article for the name of the doodad. Uses the article rules on the language. Defaults to `true`.
129
+ * @param article Whether to include an article for the name of the doodad. Uses the article rules on the language.`.
129
130
  * @param count The number of this doodad that you're getting the name of. Defaults to `1`.
130
131
  *
131
132
  * Examples:
132
133
  * - `doodad.getName()` // "a stone furnace"
133
- * - `doodad.getName(false)` // "stone furnace"
134
- * - `doodad.getName(undefined, 3)` // "stone furnaces"
134
+ * - `doodad.getName(Article.None)` // "stone furnace"
135
+ * - `doodad.getName(Article.None, 3)` // "stone furnaces"
135
136
  */
136
137
  getName(article?: Article, count?: number): import("../../language/impl/TranslationImpl").default;
137
138
  protected getDescription(): IDoodadDescription | undefined;
@@ -34,6 +34,7 @@ import type { IRGB } from "utilities/Color";
34
34
  export interface IDoodadOptions extends IObjectOptions {
35
35
  force?: boolean;
36
36
  gatherReady?: number;
37
+ hasWater?: IHasWater;
37
38
  stillContainer?: Item;
38
39
  growth?: GrowingStage;
39
40
  spread?: number;
@@ -239,7 +240,7 @@ export interface IProvidesSkill {
239
240
  skillValue: number;
240
241
  }
241
242
  export type IDoodadParticles = Record<number, IRGB>;
242
- export type IDoodadLoot = Record<number, ILootItem[] | undefined>;
243
+ export type IDoodadLoot = PartialRecord<GrowingStage, ILootItem[]>;
243
244
  export declare enum DoodadType {
244
245
  WoodenDoor = 0,
245
246
  WoodenFence = 1,
@@ -402,7 +403,11 @@ export declare enum DoodadType {
402
403
  ClayLighthouse = 158,
403
404
  LitClayLighthouse = 159,
404
405
  BasaltLighthouse = 160,
405
- LitBasaltLighthouse = 161
406
+ LitBasaltLighthouse = 161,
407
+ GraniteDripstone = 162,
408
+ SandstoneDripstone = 163,
409
+ BasaltDripstone = 164,
410
+ ClayDripstone = 165
406
411
  }
407
412
  export declare enum DoodadTypeExtra {
408
413
  None = 999,
@@ -440,7 +445,8 @@ export declare enum DoodadTypeGroup {
440
445
  Scarecrow = 415,
441
446
  Lighthouse = 416,
442
447
  LitLighthouse = 417,
443
- Last = 418
448
+ Dripstone = 418,
449
+ Last = 419
444
450
  }
445
451
  export declare enum DoorOrientation {
446
452
  Default = 0,
@@ -458,4 +464,8 @@ export declare enum GrowingStage {
458
464
  export interface IHasBuilder {
459
465
  getBuilder(): Human | undefined;
460
466
  }
467
+ export interface IHasWater {
468
+ top?: boolean;
469
+ bottom?: boolean;
470
+ }
461
471
  export {};
@@ -1449,7 +1449,11 @@ export declare enum ItemType {
1449
1449
  AberrantClayGolemFigure = 750,
1450
1450
  AberrantGraniteGolemFigure = 751,
1451
1451
  AberrantSandstoneGolemFigure = 752,
1452
- AberrantBasaltGolemFigure = 753
1452
+ AberrantBasaltGolemFigure = 753,
1453
+ GraniteDripstone = 754,
1454
+ SandstoneDripstone = 755,
1455
+ BasaltDripstone = 756,
1456
+ ClayDripstone = 757
1453
1457
  }
1454
1458
  export declare enum ItemTypeExtra {
1455
1459
  None = 999,
@@ -1610,7 +1614,8 @@ export declare enum ItemTypeGroup {
1610
1614
  Gem = 931,
1611
1615
  Golem = 932,
1612
1616
  CreatureResource = 933,
1613
- All = 934,
1614
- Last = 935
1617
+ Dripstone = 934,
1618
+ All = 935,
1619
+ Last = 936
1615
1620
  }
1616
1621
  export {};
@@ -82,6 +82,7 @@ export interface IMagicalPropertyDescription {
82
82
  */
83
83
  disableInscription?: true;
84
84
  subTypeEnum?: any;
85
+ isValidEnum?(enumValue: number): boolean;
85
86
  }
86
87
  export interface MagicalPropertyTypeSubTypeMap {
87
88
  [MagicalPropertyType.Stat]: Stat;
@@ -32,7 +32,7 @@ export declare const promptGameConfirmationDestroyOnGather: import("game/meta/pr
32
32
  export declare const promptGameConfirmationDroppingContainer: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
33
33
  export declare const promptGameConfirmationRestWithEquippedFireSource: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[actionVerb: Text, objectName: Text, actionNoun: Text]>;
34
34
  export declare const promptGameContainerNotFull: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
35
- export declare const promptGameDesalinationNoNeed: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
35
+ export declare const promptGameDesalinationNoNeed: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[dripstoneOrStile: Text]>;
36
36
  export declare const promptGameExtinguishWaterStill: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
37
37
  export declare const promptGameItemMayBeDestroyedInCraft: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[breakingItemsList: Text]>;
38
38
  export declare const promptGameItemMayCauseBurns: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
@@ -40,7 +40,7 @@ export declare const promptGameItemsMayBeDestroyedOnUse: import("game/meta/promp
40
40
  export declare const promptGameLoadFailure: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
41
41
  export declare const promptGameNoHealingRequired: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
42
42
  export declare const promptGameNoSaveOnDeath: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
43
- export declare const promptGamePickUpStillWithWater: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
43
+ export declare const promptGamePickUpStillWithWater: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[dripstoneOrStile: Text]>;
44
44
  export declare const promptGameReleaseCreature: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[creatureName: Text]>;
45
45
  export declare const promptGameUncage: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[creatureName: Text]>;
46
46
  export declare const promptGameRenameGeneric: import("game/meta/prompt/IPrompt").IPromptInputDescription<[placeholder?: string | TranslationImpl | undefined, name?: string | ISerializedTranslation | undefined]>;
@@ -287,514 +287,516 @@ declare enum Message {
287
287
  DoodadCauseStatus = 275,
288
288
  DoodadGroupTier = 276,
289
289
  DrewSurroundings = 277,
290
- Drop = 278,
291
- DroppedIntoDepths = 279,
292
- DroppedIntoFire = 280,
293
- DroppedIntoTheVoid = 281,
294
- DryadSprouted = 282,
295
- DueToDehydration = 283,
296
- DueToStarvation = 284,
297
- DugTreasureOut = 285,
298
- DumpContentsOfContainerInInventory = 286,
299
- DyingOfDehydration = 287,
300
- EarnedMilestone = 288,
301
- Effective = 289,
302
- Enchant = 290,
303
- EquipmentPreventedStatusEffects = 291,
304
- ErrorHasOccured = 292,
305
- ExtinguishedFire = 293,
306
- ExtinguishedLightSource = 294,
307
- Exude = 295,
308
- ExudeNotPossible = 296,
309
- FailedToAbsorb = 297,
310
- FailedToAddFuelToTorch = 298,
311
- FailedToCatchFish = 299,
312
- FailedToCauseDamage = 300,
313
- FailedToCauseYouDamage = 301,
314
- FailedToCopy = 302,
315
- FailedToDraw = 303,
316
- FailedToEnchant = 304,
317
- FailedToExude = 305,
318
- FailedToIgniteTorch = 306,
319
- FailedToPickLock = 307,
320
- FailedToPreserve = 308,
321
- FailedToRefine = 309,
322
- FailedToReinforce = 310,
323
- FailedToRepair = 311,
324
- FailedToStartFire = 312,
325
- FailedToTame = 313,
326
- FailedToTransmogrify = 314,
327
- FarOffLands = 315,
328
- FeltBurningPainLostHealth = 316,
329
- FeltFrostbitePainLostHealth = 317,
330
- FewMinutes = 318,
331
- Filled = 319,
332
- FilledFrom = 320,
333
- FireAroundYouIsWarm = 321,
334
- FiredIntoObstacle = 322,
335
- FireOverflowed = 323,
336
- FireOverflowedFireElemental = 324,
337
- FireSource = 325,
338
- FishingWithNoBait = 326,
339
- Floating = 327,
340
- FreshWater = 328,
341
- FromTheStill = 329,
342
- Fuel = 330,
343
- FuelIsRequired = 331,
344
- Gather = 332,
345
- GatherDestroy = 333,
346
- Gathering = 334,
347
- GhostNoActions = 335,
348
- GhostOf = 336,
349
- GoatHasNoMilk = 337,
350
- GrabAll = 338,
351
- HackAway = 339,
352
- HandProtectionPreventedInjury = 340,
353
- HandsNotEffectiveFor = 341,
354
- Harvest = 342,
355
- Harvesting = 343,
356
- HasBeenHurtByATrap = 344,
357
- HasDecayed = 345,
358
- HasHitYouForDamage = 346,
359
- HasNoEffect = 347,
360
- HasSetTrapOffNoDamage = 348,
361
- HasSplit = 349,
362
- Help = 350,
363
- HelpGrow = 351,
364
- Hitch = 352,
365
- HitchAttempt = 353,
366
- HitchCreature = 354,
367
- HitchDisabled = 355,
368
- HitchInUse = 356,
369
- HitForDamage = 357,
370
- HitYouForDamage = 358,
371
- Hour = 359,
372
- Hours = 360,
373
- HurtHandsHittingWithoutWeapons = 361,
374
- HurtHandsWithNoTool = 362,
375
- Ignite = 363,
376
- IgnitedTorch = 364,
377
- Ineffective = 365,
378
- InjuredFromTrap = 366,
379
- InNeedOfRepair = 367,
380
- InteractingWithHasInjuredYouForDamage = 368,
381
- Inventory = 369,
382
- IsInTheWayOfPickingUp = 370,
383
- It = 371,
384
- ItemFromWater = 372,
385
- JoinedAServer = 373,
386
- Jump = 374,
387
- Killed = 375,
388
- KnowledgeHasIncreased = 376,
389
- LastPlaceYouLeftOff = 377,
390
- LearnedHowToCreate = 378,
391
- LikelyFailures = 379,
392
- Limited = 380,
393
- Lockpick = 381,
394
- MapCompletedNotOfThisArea = 382,
395
- MapDestroyed = 383,
396
- MapNearlyDestroyed = 384,
397
- MapNotOfThisArea = 385,
398
- MaterialsDestroyed = 386,
399
- MerchantAlreadyTradedItem = 387,
400
- MessageOfTheDay = 388,
401
- Metabolism = 389,
402
- MetabolismSlowed = 390,
403
- Milk = 391,
404
- Mine = 392,
405
- Mining = 393,
406
- MissedWith = 394,
407
- MissedYouWith = 395,
408
- MovedItem = 396,
409
- MovedItemFailed = 397,
410
- MoveOverTrapButDoNotSetOff = 398,
411
- MultiplayerGamePaused = 399,
412
- MultiplayerGameResumed = 400,
413
- MultiplayerPlayerConnected = 401,
414
- MultiplayerPlayerDied = 402,
415
- MultiplayerPlayerDisconnected = 403,
416
- MultiplayerPlayerJoined = 404,
417
- MustBeEquippedToIgnite = 405,
418
- Mysteriously = 406,
419
- NearlyBurnedEquipmentProtectedYou = 407,
420
- NeedToStartTravelsOutside = 408,
421
- NeedWaterForBoat = 409,
422
- Negatively = 410,
423
- NightQuarter1 = 411,
424
- NightQuarter2 = 412,
425
- NightQuarter3 = 413,
426
- NightQuarter4 = 414,
427
- No = 415,
428
- NoAmmunitionForThatWeapon = 416,
429
- NoFireToStokeWith = 417,
430
- NoFishAtLocation = 418,
431
- NoGroundWater = 419,
432
- NoInkToDrawMap = 420,
433
- NoKindlingOrFuelItemsToStartFire = 421,
434
- NoKindlingToStartFire = 422,
435
- NoLongerFeelPainOfBeingBurned = 423,
436
- NoLongerFeelPainOfBeingFrostbitten = 424,
437
- NoLongerHostile = 425,
438
- NoMoreRoomInContainer = 426,
439
- NoPaperToDrawMap = 427,
440
- NoRequiredItemToFireWeapon = 428,
441
- NoReturnWithoutCompletingChallenges = 429,
442
- NoRoomForImprovement = 430,
443
- NoRoomToDrop = 431,
444
- NoRoomToSummon = 432,
445
- NotEnoughPurifiedWaterYet = 433,
446
- NotEnoughTreasureToReturn = 434,
447
- NotFacingCreatureToOfferThisTo = 435,
448
- NotFacingLockedObject = 436,
449
- NotFacingOtherToHeal = 437,
450
- NotFacingValidItem = 438,
451
- NothingHereToButcher = 439,
452
- NothingHereToFill = 440,
453
- NothingHereToGrasp = 441,
454
- NothingTo = 442,
455
- NothingToGetFromThis = 443,
456
- NothingToHarvestFromThisGather = 444,
457
- NothingToSmother = 445,
458
- NothingUsefulToHarvestYet = 446,
459
- NoTinderToStartFire = 447,
460
- NotSuitableToPlant = 448,
461
- NoWaterInStill = 449,
462
- NPCMerchantNewInventoryDialog1 = 450,
463
- NPCMerchantNewInventoryDialog2 = 451,
464
- NPCMerchantNewInventoryDialog3 = 452,
465
- NPCMerchantNewInventoryDialog4 = 453,
466
- NPCMerchantStartingDialog1 = 454,
467
- NPCMerchantStartingDialog2 = 455,
468
- NPCMerchantStartingDialog3 = 456,
469
- NPCMerchantStartingDialog4 = 457,
470
- NPCMerchantWelcomeCredit = 458,
471
- NPCShipperShipToIsland = 459,
472
- NPCShipperStartingDialog1 = 460,
473
- NPCShipperStartingDialog2 = 461,
474
- NPCShipperStartingDialog3 = 462,
475
- NPCShipperStartingDialog4 = 463,
476
- NPCWelcome = 464,
477
- ObjectIsLocked = 465,
478
- ObjectIsLockedAttemptToBreakIt = 466,
479
- OfferAberrantFail = 467,
480
- OfferAberrantFailButTamed = 468,
481
- Open = 469,
482
- OpenClose = 470,
483
- OverEatingLostStamina = 471,
484
- OverHydratingLostStamina = 472,
485
- Pack = 473,
486
- PaperTurnedToMush = 474,
487
- ParryTheBlow = 475,
488
- Pet = 476,
489
- PetCreature = 477,
490
- PickAway = 478,
491
- PickUp = 479,
492
- PickUpExcrement = 480,
493
- PickUpTheItem = 481,
494
- Place = 482,
495
- PlacedOnGround = 483,
496
- Plant = 484,
497
- PlantedInGround = 485,
498
- PlantGatheredPlant = 486,
499
- PlantGatheringWillDestroy = 487,
500
- PlantHasResourcesToGather = 488,
501
- PlantHasResourcesToHarvest = 489,
502
- PlantHighlyFertile = 490,
503
- Planting = 491,
504
- PlantIsBare = 492,
505
- PlantIsFertile = 493,
506
- PlantIsInStage = 494,
507
- PlantIsNotFertile = 495,
508
- PlantNotReadyToHarvest = 496,
509
- PlantReadyToGather = 497,
510
- PlantReadyToGatherNotMaximal = 498,
511
- PlantReadyToHarvest = 499,
512
- PlantReadyToHarvestNotMaximal = 500,
513
- Player = 501,
514
- PlayerHas = 502,
515
- PlayerHasCompletedChallengeRequirement = 503,
516
- PlayerHasWonChallenge = 504,
517
- Poisoned = 505,
518
- PoisonedLostHealth = 506,
519
- PoisonWorkedItsCourse = 507,
520
- Positively = 508,
521
- PouredOut = 509,
522
- PouredOutOnYourself = 510,
523
- PouredWaterIntoStill = 511,
524
- PourHarmedPlant = 512,
525
- PourHealedPlant = 513,
526
- PourHealedPlantFully = 514,
527
- PourHealedPlantPartially = 515,
528
- PourIncreasedFertility = 516,
529
- Pouring = 517,
530
- Prepare = 518,
531
- Prepared = 519,
532
- Preserve = 520,
533
- PreservedFood = 521,
534
- PurifiedWaterInStill = 522,
535
- RandomEventsFire = 523,
536
- ReduceLength = 524,
537
- Refine = 525,
538
- RefusedToBeTamed = 526,
539
- Reinforce = 527,
540
- Repair = 528,
541
- ReputationDecreased = 529,
542
- ReputationIncreased = 530,
543
- ReputationUpdate = 531,
544
- RequiredForDisassembly = 532,
545
- RequiresFireToBeLit = 533,
546
- RequiresYouFacingFireSource = 534,
547
- RequiresYouToBeAround = 535,
548
- Resistant = 536,
549
- Rest = 537,
550
- Rested = 538,
551
- Resting = 539,
552
- RestingOnGroundNotEffective = 540,
553
- RestInterrupted = 541,
554
- RestInterruptedDamage = 542,
555
- RestInterruptedDying = 543,
556
- RestInterruptedLoudNoise = 544,
557
- RestInterruptedPain = 545,
558
- RestInterruptedStirring = 546,
559
- RestInterruptedWaterPoured = 547,
560
- RestLongTime = 548,
561
- RestModerateTime = 549,
562
- RestOnBoat = 550,
563
- RestShortTime = 551,
564
- RestTime = 552,
565
- ReturnedToCivilization = 553,
566
- ReturningToCivilizationSetOffAgain = 554,
567
- ReturnsToLife = 555,
568
- Reverse = 556,
569
- Sailing = 557,
570
- ScrollMaster = 558,
571
- ScrollProvidedNoUsefulInsight = 559,
572
- Seawater = 560,
573
- SeemsToHaveDrawnEnergy = 561,
574
- SetTrapOffButNoDamage = 562,
575
- SetUp = 563,
576
- ShadowInTheWater = 564,
577
- Skill = 565,
578
- SkillHasRaised = 566,
579
- Skills = 567,
580
- Sleep = 568,
581
- Sleeping = 569,
582
- SleepOnBoat = 570,
583
- Slept = 571,
584
- SlitherSuckerConstricts = 572,
585
- SlitherSuckerJumpedOnHead = 573,
586
- SomethingInTheWayOf = 574,
587
- SomethingInTheWayOfButcherFirst = 575,
588
- SomethingInTheWayOfFire = 576,
589
- SomethingInTheWayOfFishing = 577,
590
- SomethingInTheWayOfPerforming = 578,
591
- SomethingInTheWayOfPlacing = 579,
592
- SomethingInTheWayOfReleasing = 580,
593
- SomethingInTheWayOfSummoning = 581,
594
- SomethingInWayOfClosingDoor = 582,
595
- SoothedTheirBurnInjuries = 583,
596
- SoothedYourBurnInjuries = 584,
597
- Sort = 585,
598
- SortedByBestCraftingRequirements = 586,
599
- SortedByCategory = 587,
600
- SortedByCraftableOnly = 588,
601
- SortedByDecay = 589,
602
- SortedByDurability = 590,
603
- SortedByGroup = 591,
604
- SortedByMagical = 592,
605
- SortedByName = 593,
606
- SortedByQuality = 594,
607
- SortedByRecent = 595,
608
- SortedBySkill = 596,
609
- SortedByUnlockedTime = 597,
610
- SortedByWeight = 598,
611
- SortedByWorth = 599,
612
- StaminaIsFull = 600,
613
- StartedFire = 601,
614
- StartTravelInWater = 602,
615
- StarvingToDeath = 603,
616
- StatAmount = 604,
617
- StatGained = 605,
618
- StatIncreasing = 606,
619
- StatLost = 607,
620
- StatQuenched = 608,
621
- StatRegained = 609,
622
- StatSated = 610,
623
- SteppingOn = 611,
624
- StillHasNoWaterToPurify = 612,
625
- StirredUpClawWorm = 613,
626
- StirredUpCreature = 614,
627
- StoppedYourBleeding = 615,
628
- StopUsingVehicle = 616,
629
- Strength = 617,
630
- SummonedGuardiansByDiggingTreasure = 618,
631
- SummonedGuardiansByLockpicking = 619,
632
- SummonVoidDwellerItem = 620,
633
- SummonVoidDwellerRinging = 621,
634
- SummonVoidDwellerShiver = 622,
635
- SunNotBrightEnoughToStartFire = 623,
636
- SwampWater = 624,
637
- Swimming = 625,
638
- TakenFromGroundBecomeTamed = 626,
639
- TeleportBlocked = 627,
640
- Teleported = 628,
641
- ThanksBuying = 629,
642
- ThanksSelling = 630,
643
- TheirFist = 631,
644
- ThePlant = 632,
645
- ThereIsNoContainerOnTheStill = 633,
646
- ThereIsNoSunToStartFire = 634,
647
- ThisCannotBeMilked = 635,
648
- Throw = 636,
649
- ThrownIntoDepths = 637,
650
- ThrownIntoObstacle = 638,
651
- ThrownIntoVoid = 639,
652
- Tier = 640,
653
- TierGroup = 641,
654
- Till = 642,
655
- Tilling = 643,
656
- TimeIs = 644,
657
- TimeIsDawn = 645,
658
- TimeIsDaytime = 646,
659
- TimeIsDusk = 647,
660
- TimeIsNighttime = 648,
661
- TimeIsSunrise = 649,
662
- TimeIsSunset = 650,
663
- ToFight = 651,
664
- TooDamaged = 652,
665
- TooExhaustedToJump = 653,
666
- Touching = 654,
667
- TrampledFire = 655,
668
- TrampledIntoGround = 656,
669
- TrampleIntoGround = 657,
670
- Trampling = 658,
671
- TransmogrificationNotPossible = 659,
672
- Transmogrified = 660,
673
- Transmogrify = 661,
674
- TrapMissed = 662,
675
- TrapStoppedYou = 663,
676
- Traveling = 664,
677
- TreasureIsBlocked = 665,
678
- UiActionCannotUseRequiresCreature = 666,
679
- UiActionCannotUseRequiresDoodad = 667,
680
- UiActionCannotUseRequiresItem = 668,
681
- Unhitch = 669,
682
- UnhitchCreature = 670,
683
- Unknown = 671,
684
- Unlimited = 672,
685
- UnlockedChest = 673,
686
- UnpurifiedFreshWater = 674,
687
- UnpurifiedWaterInStill = 675,
688
- Use = 676,
689
- UsingBareHands = 677,
690
- VehicleDefense = 678,
691
- Vulnerable = 679,
692
- Water = 680,
693
- WaterGathering = 681,
694
- WaterPutOutFire = 682,
695
- WellIsDry = 683,
696
- WellIsFull = 684,
697
- WildGoatRefusedToBeMilked = 685,
698
- WillNotTrade = 686,
699
- WorkingYourselfIntoExhaustion = 687,
700
- WorkingYourselfIntoExhaustionAndDrowning = 688,
701
- You = 689,
702
- YouAbsorb = 690,
703
- YouApplied = 691,
704
- YouAreAlready = 692,
705
- YouAte = 693,
706
- YouBeginResting = 694,
707
- YouCannotDoThatYet = 695,
708
- YouCanNowCombatTheTides = 696,
709
- YouCrafted = 697,
710
- YouDoNotFindTreasureYet = 698,
711
- YouDrank = 699,
712
- YouDropTheTorch = 700,
713
- YouEnchant = 701,
714
- YouEquip = 702,
715
- YouExude = 703,
716
- YouExudeSome = 704,
717
- YouExudeSomeReasonConflicting = 705,
718
- YouExudeSomeReasonMax = 706,
719
- YouExudeSomeReasonProperties = 707,
720
- YouFailedTo = 708,
721
- YouFailedToExtinguishedFireFully = 709,
722
- YouFailedToHeal = 710,
723
- YouFailedToHealOther = 711,
724
- YouFire = 712,
725
- YouGathered = 713,
726
- YouGatheredAndDropped = 714,
727
- YouHarvested = 715,
728
- YouHarvestedAndDropped = 716,
729
- YouHave = 717,
730
- YouHaveAlreadyLearned = 718,
731
- YouHaveBeenCut = 719,
732
- YouHaveCaged = 720,
733
- YouHaveCommanded = 721,
734
- YouHaveDied = 722,
735
- YouHaveHealedOther = 723,
736
- YouHaveKilled = 724,
737
- YouHaveReleased = 725,
738
- YouHaveSummoned = 726,
739
- YouHaveTamed = 727,
740
- YouHaveUncaged = 728,
741
- YouNeedMoreCredit = 729,
742
- YouNoticeBarren = 730,
743
- YouNoticeBecomeEnraged = 731,
744
- YouNoticeDying = 732,
745
- YouNoticeFertilityDecreasing = 733,
746
- YouNoticeFertilityIncreasing = 734,
747
- YouNoticeGrowing = 735,
748
- YouNoticeLavaCooling = 736,
749
- YouNoticeLavaHardening = 737,
750
- YouNoticePerish = 738,
751
- YouNoticePlantDamage = 739,
752
- YouNoticePlantRegenerated = 740,
753
- YouNoticeRegrowing = 741,
754
- YouNoticeStumbleInjureItself = 742,
755
- YouNoticeTakeFromGround = 743,
756
- YouNoticeWoundsClosing = 744,
757
- YouNoticeZombieHorde = 745,
758
- YouOfferedToCreature = 746,
759
- YouOfferedToCreatureRejects = 747,
760
- YouOpen = 748,
761
- YouPacked = 749,
762
- YouPickedUp = 750,
763
- YouRefine = 751,
764
- YouReinforce = 752,
765
- YouRepair = 753,
766
- YouReturnFromCivilizationWith = 754,
767
- YourFist = 755,
768
- YourHands = 756,
769
- YourInventory = 757,
770
- YourIsland = 758,
771
- YourRubbingNoEffect = 759,
772
- YouRub = 760,
773
- YouSee = 761,
774
- YouSeeALivingMushroomSpore = 762,
775
- YouSeeASkeletonCollapse = 763,
776
- YouSeeASlimeCombine = 764,
777
- YouSeeAZombieBleeding = 765,
778
- YouSeeCoolDown = 766,
779
- YouSeeDrop = 767,
780
- YouSeeEngulfFire = 768,
781
- YouSeeFireSpread = 769,
782
- YouSeeHelpingPlant = 770,
783
- YouSeeLay = 771,
784
- YouSeeLayingTrap = 772,
785
- YouSeeSpewLava = 773,
786
- YouSeeSpitAcid = 774,
787
- YouSeeSpringForth = 775,
788
- YouSeeSummon = 776,
789
- YouSeeSwampFlood = 777,
790
- YouSeeTrampling = 778,
791
- YouSetTheTrapOff = 779,
792
- YouStokeTheCreature = 780,
793
- YouSwapMainHandAndOffHand = 781,
794
- YouThrew = 782,
795
- YouTilled = 783,
796
- YouUnequip = 784,
797
- YouUsed = 785,
798
- YouWhileTraveling = 786
290
+ Dripstone = 278,
291
+ Drop = 279,
292
+ DroppedIntoDepths = 280,
293
+ DroppedIntoFire = 281,
294
+ DroppedIntoTheVoid = 282,
295
+ DryadSprouted = 283,
296
+ DueToDehydration = 284,
297
+ DueToStarvation = 285,
298
+ DugTreasureOut = 286,
299
+ DumpContentsOfContainerInInventory = 287,
300
+ DyingOfDehydration = 288,
301
+ EarnedMilestone = 289,
302
+ Effective = 290,
303
+ Enchant = 291,
304
+ EquipmentPreventedStatusEffects = 292,
305
+ ErrorHasOccured = 293,
306
+ ExtinguishedFire = 294,
307
+ ExtinguishedLightSource = 295,
308
+ Exude = 296,
309
+ ExudeNotPossible = 297,
310
+ FailedToAbsorb = 298,
311
+ FailedToAddFuelToTorch = 299,
312
+ FailedToCatchFish = 300,
313
+ FailedToCauseDamage = 301,
314
+ FailedToCauseYouDamage = 302,
315
+ FailedToCopy = 303,
316
+ FailedToDraw = 304,
317
+ FailedToEnchant = 305,
318
+ FailedToExude = 306,
319
+ FailedToIgniteTorch = 307,
320
+ FailedToPickLock = 308,
321
+ FailedToPreserve = 309,
322
+ FailedToRefine = 310,
323
+ FailedToReinforce = 311,
324
+ FailedToRepair = 312,
325
+ FailedToStartFire = 313,
326
+ FailedToTame = 314,
327
+ FailedToTransmogrify = 315,
328
+ FarOffLands = 316,
329
+ FeltBurningPainLostHealth = 317,
330
+ FeltFrostbitePainLostHealth = 318,
331
+ FewMinutes = 319,
332
+ Filled = 320,
333
+ FilledFrom = 321,
334
+ FireAroundYouIsWarm = 322,
335
+ FiredIntoObstacle = 323,
336
+ FireOverflowed = 324,
337
+ FireOverflowedFireElemental = 325,
338
+ FireSource = 326,
339
+ FishingWithNoBait = 327,
340
+ Floating = 328,
341
+ FreshWater = 329,
342
+ FromTheStill = 330,
343
+ Fuel = 331,
344
+ FuelIsRequired = 332,
345
+ Gather = 333,
346
+ GatherDestroy = 334,
347
+ Gathering = 335,
348
+ GhostNoActions = 336,
349
+ GhostOf = 337,
350
+ GoatHasNoMilk = 338,
351
+ GrabAll = 339,
352
+ HackAway = 340,
353
+ HandProtectionPreventedInjury = 341,
354
+ HandsNotEffectiveFor = 342,
355
+ Harvest = 343,
356
+ Harvesting = 344,
357
+ HasBeenHurtByATrap = 345,
358
+ HasDecayed = 346,
359
+ HasHitYouForDamage = 347,
360
+ HasNoEffect = 348,
361
+ HasSetTrapOffNoDamage = 349,
362
+ HasSplit = 350,
363
+ Help = 351,
364
+ HelpGrow = 352,
365
+ Hitch = 353,
366
+ HitchAttempt = 354,
367
+ HitchCreature = 355,
368
+ HitchDisabled = 356,
369
+ HitchInUse = 357,
370
+ HitForDamage = 358,
371
+ HitYouForDamage = 359,
372
+ Hour = 360,
373
+ Hours = 361,
374
+ HurtHandsHittingWithoutWeapons = 362,
375
+ HurtHandsWithNoTool = 363,
376
+ Ignite = 364,
377
+ IgnitedTorch = 365,
378
+ Ineffective = 366,
379
+ InjuredFromTrap = 367,
380
+ InNeedOfRepair = 368,
381
+ InteractingWithHasInjuredYouForDamage = 369,
382
+ Inventory = 370,
383
+ IsInTheWayOfPickingUp = 371,
384
+ It = 372,
385
+ ItemFromWater = 373,
386
+ JoinedAServer = 374,
387
+ Jump = 375,
388
+ Killed = 376,
389
+ KnowledgeHasIncreased = 377,
390
+ LastPlaceYouLeftOff = 378,
391
+ LearnedHowToCreate = 379,
392
+ LikelyFailures = 380,
393
+ Limited = 381,
394
+ Lockpick = 382,
395
+ MapCompletedNotOfThisArea = 383,
396
+ MapDestroyed = 384,
397
+ MapNearlyDestroyed = 385,
398
+ MapNotOfThisArea = 386,
399
+ MaterialsDestroyed = 387,
400
+ MerchantAlreadyTradedItem = 388,
401
+ MessageOfTheDay = 389,
402
+ Metabolism = 390,
403
+ MetabolismSlowed = 391,
404
+ Milk = 392,
405
+ Mine = 393,
406
+ Mining = 394,
407
+ MissedWith = 395,
408
+ MissedYouWith = 396,
409
+ MovedItem = 397,
410
+ MovedItemFailed = 398,
411
+ MoveOverTrapButDoNotSetOff = 399,
412
+ MultiplayerGamePaused = 400,
413
+ MultiplayerGameResumed = 401,
414
+ MultiplayerPlayerConnected = 402,
415
+ MultiplayerPlayerDied = 403,
416
+ MultiplayerPlayerDisconnected = 404,
417
+ MultiplayerPlayerJoined = 405,
418
+ MustBeEquippedToIgnite = 406,
419
+ Mysteriously = 407,
420
+ NearlyBurnedEquipmentProtectedYou = 408,
421
+ NeedToStartTravelsOutside = 409,
422
+ NeedWaterForBoat = 410,
423
+ Negatively = 411,
424
+ NightQuarter1 = 412,
425
+ NightQuarter2 = 413,
426
+ NightQuarter3 = 414,
427
+ NightQuarter4 = 415,
428
+ No = 416,
429
+ NoAmmunitionForThatWeapon = 417,
430
+ NoFireToStokeWith = 418,
431
+ NoFishAtLocation = 419,
432
+ NoGroundWater = 420,
433
+ NoInkToDrawMap = 421,
434
+ NoKindlingOrFuelItemsToStartFire = 422,
435
+ NoKindlingToStartFire = 423,
436
+ NoLongerFeelPainOfBeingBurned = 424,
437
+ NoLongerFeelPainOfBeingFrostbitten = 425,
438
+ NoLongerHostile = 426,
439
+ NoMoreRoomInContainer = 427,
440
+ NoPaperToDrawMap = 428,
441
+ NoRequiredItemToFireWeapon = 429,
442
+ NoReturnWithoutCompletingChallenges = 430,
443
+ NoRoomForImprovement = 431,
444
+ NoRoomToDrop = 432,
445
+ NoRoomToSummon = 433,
446
+ NotEnoughPurifiedWaterYet = 434,
447
+ NotEnoughTreasureToReturn = 435,
448
+ NotFacingCreatureToOfferThisTo = 436,
449
+ NotFacingLockedObject = 437,
450
+ NotFacingOtherToHeal = 438,
451
+ NotFacingValidItem = 439,
452
+ NothingHereToButcher = 440,
453
+ NothingHereToFill = 441,
454
+ NothingHereToGrasp = 442,
455
+ NothingTo = 443,
456
+ NothingToGetFromThis = 444,
457
+ NothingToHarvestFromThisGather = 445,
458
+ NothingToSmother = 446,
459
+ NothingUsefulToHarvestYet = 447,
460
+ NoTinderToStartFire = 448,
461
+ NotSuitableToPlant = 449,
462
+ NoWaterInStill = 450,
463
+ NPCMerchantNewInventoryDialog1 = 451,
464
+ NPCMerchantNewInventoryDialog2 = 452,
465
+ NPCMerchantNewInventoryDialog3 = 453,
466
+ NPCMerchantNewInventoryDialog4 = 454,
467
+ NPCMerchantStartingDialog1 = 455,
468
+ NPCMerchantStartingDialog2 = 456,
469
+ NPCMerchantStartingDialog3 = 457,
470
+ NPCMerchantStartingDialog4 = 458,
471
+ NPCMerchantWelcomeCredit = 459,
472
+ NPCShipperShipToIsland = 460,
473
+ NPCShipperStartingDialog1 = 461,
474
+ NPCShipperStartingDialog2 = 462,
475
+ NPCShipperStartingDialog3 = 463,
476
+ NPCShipperStartingDialog4 = 464,
477
+ NPCWelcome = 465,
478
+ ObjectIsLocked = 466,
479
+ ObjectIsLockedAttemptToBreakIt = 467,
480
+ OfferAberrantFail = 468,
481
+ OfferAberrantFailButTamed = 469,
482
+ Open = 470,
483
+ OpenClose = 471,
484
+ OverEatingLostStamina = 472,
485
+ OverHydratingLostStamina = 473,
486
+ Pack = 474,
487
+ PaperTurnedToMush = 475,
488
+ ParryTheBlow = 476,
489
+ Pet = 477,
490
+ PetCreature = 478,
491
+ PickAway = 479,
492
+ PickUp = 480,
493
+ PickUpExcrement = 481,
494
+ PickUpTheItem = 482,
495
+ Place = 483,
496
+ PlacedOnGround = 484,
497
+ Plant = 485,
498
+ PlantedInGround = 486,
499
+ PlantGatheredPlant = 487,
500
+ PlantGatheringWillDestroy = 488,
501
+ PlantHasResourcesToGather = 489,
502
+ PlantHasResourcesToHarvest = 490,
503
+ PlantHighlyFertile = 491,
504
+ Planting = 492,
505
+ PlantIsBare = 493,
506
+ PlantIsFertile = 494,
507
+ PlantIsInStage = 495,
508
+ PlantIsNotFertile = 496,
509
+ PlantNotReadyToHarvest = 497,
510
+ PlantReadyToGather = 498,
511
+ PlantReadyToGatherNotMaximal = 499,
512
+ PlantReadyToHarvest = 500,
513
+ PlantReadyToHarvestNotMaximal = 501,
514
+ Player = 502,
515
+ PlayerHas = 503,
516
+ PlayerHasCompletedChallengeRequirement = 504,
517
+ PlayerHasWonChallenge = 505,
518
+ Poisoned = 506,
519
+ PoisonedLostHealth = 507,
520
+ PoisonWorkedItsCourse = 508,
521
+ Positively = 509,
522
+ PouredOut = 510,
523
+ PouredOutOnYourself = 511,
524
+ PouredWaterIntoStill = 512,
525
+ PourHarmedPlant = 513,
526
+ PourHealedPlant = 514,
527
+ PourHealedPlantFully = 515,
528
+ PourHealedPlantPartially = 516,
529
+ PourIncreasedFertility = 517,
530
+ Pouring = 518,
531
+ Prepare = 519,
532
+ Prepared = 520,
533
+ Preserve = 521,
534
+ PreservedFood = 522,
535
+ PurifiedWaterInStill = 523,
536
+ RandomEventsFire = 524,
537
+ ReduceLength = 525,
538
+ Refine = 526,
539
+ RefusedToBeTamed = 527,
540
+ Reinforce = 528,
541
+ Repair = 529,
542
+ ReputationDecreased = 530,
543
+ ReputationIncreased = 531,
544
+ ReputationUpdate = 532,
545
+ RequiredForDisassembly = 533,
546
+ RequiresFireToBeLit = 534,
547
+ RequiresYouFacingFireSource = 535,
548
+ RequiresYouToBeAround = 536,
549
+ Resistant = 537,
550
+ Rest = 538,
551
+ Rested = 539,
552
+ Resting = 540,
553
+ RestingOnGroundNotEffective = 541,
554
+ RestInterrupted = 542,
555
+ RestInterruptedDamage = 543,
556
+ RestInterruptedDying = 544,
557
+ RestInterruptedLoudNoise = 545,
558
+ RestInterruptedPain = 546,
559
+ RestInterruptedStirring = 547,
560
+ RestInterruptedWaterPoured = 548,
561
+ RestLongTime = 549,
562
+ RestModerateTime = 550,
563
+ RestOnBoat = 551,
564
+ RestShortTime = 552,
565
+ RestTime = 553,
566
+ ReturnedToCivilization = 554,
567
+ ReturningToCivilizationSetOffAgain = 555,
568
+ ReturnsToLife = 556,
569
+ Reverse = 557,
570
+ Sailing = 558,
571
+ ScrollMaster = 559,
572
+ ScrollProvidedNoUsefulInsight = 560,
573
+ Seawater = 561,
574
+ SeemsToHaveDrawnEnergy = 562,
575
+ SetTrapOffButNoDamage = 563,
576
+ SetUp = 564,
577
+ ShadowInTheWater = 565,
578
+ Skill = 566,
579
+ SkillHasRaised = 567,
580
+ Skills = 568,
581
+ Sleep = 569,
582
+ Sleeping = 570,
583
+ SleepOnBoat = 571,
584
+ Slept = 572,
585
+ SlitherSuckerConstricts = 573,
586
+ SlitherSuckerJumpedOnHead = 574,
587
+ SomethingInTheWayOf = 575,
588
+ SomethingInTheWayOfButcherFirst = 576,
589
+ SomethingInTheWayOfFire = 577,
590
+ SomethingInTheWayOfFishing = 578,
591
+ SomethingInTheWayOfPerforming = 579,
592
+ SomethingInTheWayOfPlacing = 580,
593
+ SomethingInTheWayOfReleasing = 581,
594
+ SomethingInTheWayOfSummoning = 582,
595
+ SomethingInWayOfClosingDoor = 583,
596
+ SoothedTheirBurnInjuries = 584,
597
+ SoothedYourBurnInjuries = 585,
598
+ Sort = 586,
599
+ SortedByBestCraftingRequirements = 587,
600
+ SortedByCategory = 588,
601
+ SortedByCraftableOnly = 589,
602
+ SortedByDecay = 590,
603
+ SortedByDurability = 591,
604
+ SortedByGroup = 592,
605
+ SortedByMagical = 593,
606
+ SortedByName = 594,
607
+ SortedByQuality = 595,
608
+ SortedByRecent = 596,
609
+ SortedBySkill = 597,
610
+ SortedByUnlockedTime = 598,
611
+ SortedByWeight = 599,
612
+ SortedByWorth = 600,
613
+ StaminaIsFull = 601,
614
+ StartedFire = 602,
615
+ StartTravelInWater = 603,
616
+ StarvingToDeath = 604,
617
+ StatAmount = 605,
618
+ StatGained = 606,
619
+ StatIncreasing = 607,
620
+ StatLost = 608,
621
+ StatQuenched = 609,
622
+ StatRegained = 610,
623
+ StatSated = 611,
624
+ SteppingOn = 612,
625
+ Still = 613,
626
+ StillHasNoWaterToPurify = 614,
627
+ StirredUpClawWorm = 615,
628
+ StirredUpCreature = 616,
629
+ StoppedYourBleeding = 617,
630
+ StopUsingVehicle = 618,
631
+ Strength = 619,
632
+ SummonedGuardiansByDiggingTreasure = 620,
633
+ SummonedGuardiansByLockpicking = 621,
634
+ SummonVoidDwellerItem = 622,
635
+ SummonVoidDwellerRinging = 623,
636
+ SummonVoidDwellerShiver = 624,
637
+ SunNotBrightEnoughToStartFire = 625,
638
+ SwampWater = 626,
639
+ Swimming = 627,
640
+ TakenFromGroundBecomeTamed = 628,
641
+ TeleportBlocked = 629,
642
+ Teleported = 630,
643
+ ThanksBuying = 631,
644
+ ThanksSelling = 632,
645
+ TheirFist = 633,
646
+ ThePlant = 634,
647
+ ThereIsNoContainerOnTheStill = 635,
648
+ ThereIsNoSunToStartFire = 636,
649
+ ThisCannotBeMilked = 637,
650
+ Throw = 638,
651
+ ThrownIntoDepths = 639,
652
+ ThrownIntoObstacle = 640,
653
+ ThrownIntoVoid = 641,
654
+ Tier = 642,
655
+ TierGroup = 643,
656
+ Till = 644,
657
+ Tilling = 645,
658
+ TimeIs = 646,
659
+ TimeIsDawn = 647,
660
+ TimeIsDaytime = 648,
661
+ TimeIsDusk = 649,
662
+ TimeIsNighttime = 650,
663
+ TimeIsSunrise = 651,
664
+ TimeIsSunset = 652,
665
+ ToFight = 653,
666
+ TooDamaged = 654,
667
+ TooExhaustedToJump = 655,
668
+ Touching = 656,
669
+ TrampledFire = 657,
670
+ TrampledIntoGround = 658,
671
+ TrampleIntoGround = 659,
672
+ Trampling = 660,
673
+ TransmogrificationNotPossible = 661,
674
+ Transmogrified = 662,
675
+ Transmogrify = 663,
676
+ TrapMissed = 664,
677
+ TrapStoppedYou = 665,
678
+ Traveling = 666,
679
+ TreasureIsBlocked = 667,
680
+ UiActionCannotUseRequiresCreature = 668,
681
+ UiActionCannotUseRequiresDoodad = 669,
682
+ UiActionCannotUseRequiresItem = 670,
683
+ Unhitch = 671,
684
+ UnhitchCreature = 672,
685
+ Unknown = 673,
686
+ Unlimited = 674,
687
+ UnlockedChest = 675,
688
+ UnpurifiedFreshWater = 676,
689
+ UnpurifiedWaterInStill = 677,
690
+ Use = 678,
691
+ UsingBareHands = 679,
692
+ VehicleDefense = 680,
693
+ Vulnerable = 681,
694
+ Water = 682,
695
+ WaterGathering = 683,
696
+ WaterPutOutFire = 684,
697
+ WellIsDry = 685,
698
+ WellIsFull = 686,
699
+ WildGoatRefusedToBeMilked = 687,
700
+ WillNotTrade = 688,
701
+ WorkingYourselfIntoExhaustion = 689,
702
+ WorkingYourselfIntoExhaustionAndDrowning = 690,
703
+ You = 691,
704
+ YouAbsorb = 692,
705
+ YouApplied = 693,
706
+ YouAreAlready = 694,
707
+ YouAte = 695,
708
+ YouBeginResting = 696,
709
+ YouCannotDoThatYet = 697,
710
+ YouCanNowCombatTheTides = 698,
711
+ YouCrafted = 699,
712
+ YouDoNotFindTreasureYet = 700,
713
+ YouDrank = 701,
714
+ YouDropTheTorch = 702,
715
+ YouEnchant = 703,
716
+ YouEquip = 704,
717
+ YouExude = 705,
718
+ YouExudeSome = 706,
719
+ YouExudeSomeReasonConflicting = 707,
720
+ YouExudeSomeReasonMax = 708,
721
+ YouExudeSomeReasonProperties = 709,
722
+ YouFailedTo = 710,
723
+ YouFailedToExtinguishedFireFully = 711,
724
+ YouFailedToHeal = 712,
725
+ YouFailedToHealOther = 713,
726
+ YouFire = 714,
727
+ YouGathered = 715,
728
+ YouGatheredAndDropped = 716,
729
+ YouHarvested = 717,
730
+ YouHarvestedAndDropped = 718,
731
+ YouHave = 719,
732
+ YouHaveAlreadyLearned = 720,
733
+ YouHaveBeenCut = 721,
734
+ YouHaveCaged = 722,
735
+ YouHaveCommanded = 723,
736
+ YouHaveDied = 724,
737
+ YouHaveHealedOther = 725,
738
+ YouHaveKilled = 726,
739
+ YouHaveReleased = 727,
740
+ YouHaveSummoned = 728,
741
+ YouHaveTamed = 729,
742
+ YouHaveUncaged = 730,
743
+ YouNeedMoreCredit = 731,
744
+ YouNoticeBarren = 732,
745
+ YouNoticeBecomeEnraged = 733,
746
+ YouNoticeDying = 734,
747
+ YouNoticeFertilityDecreasing = 735,
748
+ YouNoticeFertilityIncreasing = 736,
749
+ YouNoticeGrowing = 737,
750
+ YouNoticeLavaCooling = 738,
751
+ YouNoticeLavaHardening = 739,
752
+ YouNoticePerish = 740,
753
+ YouNoticePlantDamage = 741,
754
+ YouNoticePlantRegenerated = 742,
755
+ YouNoticeRegrowing = 743,
756
+ YouNoticeStumbleInjureItself = 744,
757
+ YouNoticeTakeFromGround = 745,
758
+ YouNoticeWoundsClosing = 746,
759
+ YouNoticeZombieHorde = 747,
760
+ YouOfferedToCreature = 748,
761
+ YouOfferedToCreatureRejects = 749,
762
+ YouOpen = 750,
763
+ YouPacked = 751,
764
+ YouPickedUp = 752,
765
+ YouRefine = 753,
766
+ YouReinforce = 754,
767
+ YouRepair = 755,
768
+ YouReturnFromCivilizationWith = 756,
769
+ YourFist = 757,
770
+ YourHands = 758,
771
+ YourInventory = 759,
772
+ YourIsland = 760,
773
+ YourRubbingNoEffect = 761,
774
+ YouRub = 762,
775
+ YouSee = 763,
776
+ YouSeeALivingMushroomSpore = 764,
777
+ YouSeeASkeletonCollapse = 765,
778
+ YouSeeASlimeCombine = 766,
779
+ YouSeeAZombieBleeding = 767,
780
+ YouSeeCoolDown = 768,
781
+ YouSeeDrop = 769,
782
+ YouSeeEngulfFire = 770,
783
+ YouSeeFireSpread = 771,
784
+ YouSeeHelpingPlant = 772,
785
+ YouSeeLay = 773,
786
+ YouSeeLayingTrap = 774,
787
+ YouSeeSpewLava = 775,
788
+ YouSeeSpitAcid = 776,
789
+ YouSeeSpringForth = 777,
790
+ YouSeeSummon = 778,
791
+ YouSeeSwampFlood = 779,
792
+ YouSeeTrampling = 780,
793
+ YouSetTheTrapOff = 781,
794
+ YouStokeTheCreature = 782,
795
+ YouSwapMainHandAndOffHand = 783,
796
+ YouThrew = 784,
797
+ YouTilled = 785,
798
+ YouUnequip = 786,
799
+ YouUsed = 787,
800
+ YouWhileTraveling = 788
799
801
  }
800
802
  export default Message;
@@ -10,7 +10,8 @@
10
10
  */
11
11
  declare enum UiExperiment {
12
12
  ColorSchemeLight = 0,
13
- NewCraftingDialog = 1
13
+ NewCraftingDialog = 1,
14
+ ActionExamples = 2
14
15
  }
15
16
  declare module UiExperiment {
16
17
  type Excluded = "toggle" | "update" | "all" | "name" | "has";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wayward/types",
3
3
  "description": "TypeScript declarations for Wayward, used for modding.",
4
- "version": "2.13.2-beta.dev.20230530.1",
4
+ "version": "2.13.2-beta.dev.20230601.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",