@wayward/types 2.15.0-beta.dev.20251012.1 → 2.15.0-beta.dev.20251019.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.
Files changed (66) hide show
  1. package/definitions/game/audio/IAudio.d.ts +64 -62
  2. package/definitions/game/game/curse/Curse.d.ts +12 -5
  3. package/definitions/game/game/curse/CurseEvent.d.ts +14 -5
  4. package/definitions/game/game/curse/ICurse.d.ts +11 -1
  5. package/definitions/game/game/curse/event/CurseEventCraftingInspiration.d.ts +2 -0
  6. package/definitions/game/game/curse/event/CurseEventFrigidNight.d.ts +1 -0
  7. package/definitions/game/game/curse/event/CurseEventHeatWave.d.ts +1 -0
  8. package/definitions/game/game/curse/event/CurseEventHorde.d.ts +20 -0
  9. package/definitions/game/game/curse/event/CurseEventLucky.d.ts +1 -0
  10. package/definitions/game/game/curse/event/CurseEventNewPlants.d.ts +15 -0
  11. package/definitions/game/game/curse/event/CurseEventPlantDeath.d.ts +15 -0
  12. package/definitions/game/game/curse/event/CurseEventShadows.d.ts +2 -1
  13. package/definitions/game/game/curse/event/CurseEventSwarm.d.ts +18 -0
  14. package/definitions/game/game/curse/event/CurseEventUnlucky.d.ts +1 -0
  15. package/definitions/game/game/doodad/Doodad.d.ts +3 -2
  16. package/definitions/game/game/doodad/Doodads.d.ts +2 -1
  17. package/definitions/game/game/doodad/IDoodad.d.ts +27 -3
  18. package/definitions/game/game/entity/CombatStrengthManager.d.ts +1 -1
  19. package/definitions/game/game/entity/Human.d.ts +3 -4
  20. package/definitions/game/game/entity/IHuman.d.ts +2 -2
  21. package/definitions/game/game/entity/IStats.d.ts +17 -42
  22. package/definitions/game/game/entity/Stats.d.ts +1 -0
  23. package/definitions/game/game/entity/player/IMessageManager.d.ts +5 -1
  24. package/definitions/game/game/entity/skill/ISkills.d.ts +1 -0
  25. package/definitions/game/game/entity/status/IStatus.d.ts +13 -8
  26. package/definitions/game/game/entity/status/IStatusContext.d.ts +1 -1
  27. package/definitions/game/game/entity/status/StatusEffectList.d.ts +2 -0
  28. package/definitions/game/game/inspection/IInspection.d.ts +5 -3
  29. package/definitions/game/game/inspection/InspectionTypeMap.d.ts +4 -2
  30. package/definitions/game/game/inspection/infoProviders/MagicalCurseProperties.d.ts +30 -0
  31. package/definitions/game/game/inspection/infoProviders/MagicalPropertyValue.d.ts +1 -0
  32. package/definitions/game/game/inspection/infoProviders/item/MagicalSourceTooltip.d.ts +3 -3
  33. package/definitions/game/game/inspection/inspections/MagicCurseInspection.d.ts +29 -0
  34. package/definitions/game/game/item/IItem.d.ts +24 -2
  35. package/definitions/game/game/item/ItemManager.d.ts +5 -0
  36. package/definitions/game/game/magic/MagicalPropertyManager.d.ts +35 -3
  37. package/definitions/game/game/magic/MagicalPropertyType.d.ts +4 -0
  38. package/definitions/game/game/milestones/MilestoneDefinition.d.ts +2 -2
  39. package/definitions/game/game/options/IGameOptions.d.ts +7 -0
  40. package/definitions/game/game/reference/IReferenceManager.d.ts +12 -1
  41. package/definitions/game/game/tile/Tile.d.ts +1 -0
  42. package/definitions/game/game/time/TimeManager.d.ts +4 -1
  43. package/definitions/game/language/DictionaryMap.d.ts +32 -0
  44. package/definitions/game/language/Translation.d.ts +1 -0
  45. package/definitions/game/language/dictionary/Message.d.ts +566 -564
  46. package/definitions/game/language/dictionary/Misc.d.ts +69 -65
  47. package/definitions/game/language/dictionary/UiTranslation.d.ts +858 -850
  48. package/definitions/game/language/english/item/DoodadsExtra.d.ts +2 -2
  49. package/definitions/game/language/english/item/ItemsExtra.d.ts +2 -2
  50. package/definitions/game/language/english/item/MagicalPropertyTypes.d.ts +1 -1
  51. package/definitions/game/renderer/fieldOfView/IFieldOfView.d.ts +4 -1
  52. package/definitions/game/renderer/world/WorldRenderer.d.ts +4 -0
  53. package/definitions/game/save/data/ISaveDataGlobal.d.ts +1 -0
  54. package/definitions/game/save/upgrade/UpgradeVersion.d.ts +2 -0
  55. package/definitions/game/save/upgrade/versions/beta2.15.0/beta2.15.0-dev20251016.d.ts +12 -0
  56. package/definitions/game/save/upgrade/versions/beta2.15.0/beta2.15.0-dev20251018.d.ts +12 -0
  57. package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +1 -0
  58. package/definitions/game/ui/screen/screens/game/static/Stats.d.ts +1 -0
  59. package/definitions/game/ui/screen/screens/game/static/stats/IStatDisplayDescription.d.ts +16 -4
  60. package/definitions/game/ui/screen/screens/game/static/stats/TemperatureDisplay.d.ts +13 -0
  61. package/definitions/game/ui/screen/screens/game/static/stats/component/StatComponent.d.ts +9 -3
  62. package/definitions/game/ui/screen/screens/menu/menus/options/TabPerformance.d.ts +1 -0
  63. package/definitions/game/ui/screen/screens/menu/menus/options/TabVideo.d.ts +2 -0
  64. package/definitions/utilities/log/ErrorReporting.d.ts +2 -0
  65. package/definitions/utilities/math/Range.d.ts +6 -6
  66. package/package.json +1 -1
@@ -326,569 +326,571 @@ declare enum Message {
326
326
  CreatureZoneTierIncreased = 314,
327
327
  CrushedItemsUnderfoot = 315,
328
328
  CuredYourPoison = 316,
329
- CurseUpdateSunrise = 317,
330
- CurseUpdateSunset = 318,
331
- CurseUpdateWarning = 319,
332
- Cut = 320,
333
- CutHasHealed = 321,
334
- CutLostHealth = 322,
335
- CutWasBandaged = 323,
336
- DamageAppeared = 324,
337
- DamagedByPouring = 325,
338
- DangerousMove = 326,
339
- DangerousOpen = 327,
340
- DayQuarter1 = 328,
341
- DayQuarter2 = 329,
342
- DayQuarter3 = 330,
343
- DayQuarter4 = 331,
344
- DealtNoDamageToYou = 332,
345
- DeathBy = 333,
346
- DeathByBleeding = 334,
347
- DeathByBurning = 335,
348
- DeathByChallengeWinner = 336,
349
- DeathByConsumption = 337,
350
- DeathByCut = 338,
351
- DeathByDrowning = 339,
352
- DeathByExhaustion = 340,
353
- DeathByFistByPlayer = 341,
354
- DeathByFrostbite = 342,
355
- DeathByFrostbiteTemperatureShock = 343,
356
- DeathByMalnutrition = 344,
357
- DeathByPoison = 345,
358
- DeathBySteppingOn = 346,
359
- DeathByTrap = 347,
360
- DeathByWeaponByPlayer = 348,
361
- DedicatedTitleAlreadySelected = 349,
362
- DedicatedTitleMilestoneNotAllowed = 350,
363
- DestroyedFromUse = 351,
364
- DeveloperContainerDesync = 352,
365
- DidNotSeemToBeHurting = 353,
366
- Dig = 354,
367
- DigAway = 355,
368
- Digging = 356,
369
- Disassemble = 357,
370
- Disassembling = 358,
371
- DiscoveredCaveEntrance = 359,
372
- DiscoveredColdInsulation = 360,
373
- DiscoveredHeatInsulation = 361,
374
- DiscoveredInTheBottle = 362,
375
- DiscoveredLavaPassage = 363,
376
- DiscoveredQuality = 364,
377
- Dismantle = 365,
378
- Dismantling = 366,
379
- DismantlingRequires = 367,
380
- Dismounted = 368,
381
- DisplacedPuddles = 369,
382
- DoNotProduceAnyResources = 370,
383
- DoodadCauseStatus = 371,
384
- DoodadGroupTier = 372,
385
- DrewSurroundings = 373,
386
- Dripstone = 374,
387
- DroppedIntoDepths = 375,
388
- DroppedIntoFire = 376,
389
- DroppedIntoTheVoid = 377,
390
- DryadSprouted = 378,
391
- DueToDehydration = 379,
392
- DueToStarvation = 380,
393
- DugTreasureOut = 381,
394
- DugTreasureOutSurprise = 382,
395
- DumpContentsOfContainerInInventory = 383,
396
- DyingOfDehydration = 384,
397
- EarnedMilestone = 385,
398
- Effective = 386,
399
- EquipmentPreventedStatusEffects = 387,
400
- ErrorHasOccured = 388,
401
- Excavating = 389,
402
- ExtinguishedFire = 390,
403
- ExtinguishedLightSource = 391,
404
- ExudeNotPossible = 392,
405
- FailedToAbsorb = 393,
406
- FailedToAddFuelToTorch = 394,
407
- FailedToCage = 395,
408
- FailedToCatchFish = 396,
409
- FailedToCauseDamage = 397,
410
- FailedToCauseYouDamage = 398,
411
- FailedToCopy = 399,
412
- FailedToDraw = 400,
413
- FailedToEnchant = 401,
414
- FailedToExude = 402,
415
- FailedToIgniteTorch = 403,
416
- FailedToPickLock = 404,
417
- FailedToPreserve = 405,
418
- FailedToRefine = 406,
419
- FailedToReinforce = 407,
420
- FailedToRepair = 408,
421
- FailedToStartFire = 409,
422
- FailedToTame = 410,
423
- FailedToTransmogrify = 411,
424
- FarOffLands = 412,
425
- FeltBurningPainLostHealth = 413,
426
- FeltFrostbitePainLostHealth = 414,
427
- FewMinutes = 415,
428
- Filled = 416,
429
- FilledFrom = 417,
430
- FireAroundYouIsWarm = 418,
431
- FiredIntoObstacle = 419,
432
- FireOverflowed = 420,
433
- FireOverflowedFireElemental = 421,
434
- FireSource = 422,
435
- FishingWithNoBait = 423,
436
- Floating = 424,
437
- FreshWater = 425,
438
- FromTheStill = 426,
439
- FuelIsRequired = 427,
440
- Gather = 428,
441
- GatherDestroy = 429,
442
- Gathering = 430,
443
- GhostNoActions = 431,
444
- GhostOf = 432,
445
- GoatHasNoMilk = 433,
446
- HackAway = 434,
447
- HandProtectionPreventedInjury = 435,
448
- HandsNotEffectiveFor = 436,
449
- Harvest = 437,
450
- Harvesting = 438,
451
- HasBeenHurtByATrap = 439,
452
- HasDecayed = 440,
453
- HasHitYouForDamage = 441,
454
- HasNoEffect = 442,
455
- HasSetTrapOffNoDamage = 443,
456
- HasSplit = 444,
457
- HelpGrow = 445,
458
- HitchAttempt = 446,
459
- HitchCreature = 447,
460
- HitchDisabled = 448,
461
- HitchInUse = 449,
462
- HitForDamage = 450,
463
- HitYouForDamage = 451,
464
- Hour = 452,
465
- Hours = 453,
466
- HurtHandsHittingWithoutWeapons = 454,
467
- HurtHandsWithNoTool = 455,
468
- IgnitedTorch = 456,
469
- Ineffective = 457,
470
- InjuredFromTrap = 458,
471
- InNeedOfRepair = 459,
472
- InteractingWithHasInjuredYouForDamage = 460,
473
- InvalidContainer = 461,
474
- IsInTheWayOfPickingUp = 462,
475
- ItemFromWater = 463,
476
- JoinedAServer = 464,
477
- Jump = 465,
478
- Killed = 466,
479
- KnowledgeHasIncreased = 467,
480
- LastPlaceYouLeftOff = 468,
481
- LearnedHowToCreate = 469,
482
- LikelyFailures = 470,
483
- Limited = 471,
484
- Lockpick = 472,
485
- MapCompletedNotOfThisArea = 473,
486
- MapDestroyed = 474,
487
- MapNearlyDestroyed = 475,
488
- MapNotOfThisArea = 476,
489
- MaterialsDestroyed = 477,
490
- MessageOfTheDay = 478,
491
- MetabolismSlowed = 479,
492
- Milk = 480,
493
- Mine = 481,
494
- Mining = 482,
495
- MissedWith = 483,
496
- MissedYouWith = 484,
497
- MovedItem = 485,
498
- MovedItemFailed = 486,
499
- MoveOverTrapButDoNotSetOff = 487,
500
- MultiplayerGamePaused = 488,
501
- MultiplayerGameResumed = 489,
502
- MultiplayerPlayerConnected = 490,
503
- MultiplayerPlayerDied = 491,
504
- MultiplayerPlayerDisconnected = 492,
505
- MultiplayerPlayerJoined = 493,
506
- MustBeEquippedToIgnite = 494,
507
- Mysteriously = 495,
508
- NearlyBurnedEquipmentProtectedYou = 496,
509
- NeedToStartTravelsOutside = 497,
510
- NeedWaterForBoat = 498,
511
- NightQuarter1 = 499,
512
- NightQuarter2 = 500,
513
- NightQuarter3 = 501,
514
- NightQuarter4 = 502,
515
- No = 503,
516
- NoAmmunitionForThatWeapon = 504,
517
- NoCandleToStartFire = 505,
518
- NoFireToStokeWith = 506,
519
- NoFishAtLocation = 507,
520
- NoGroundWater = 508,
521
- NoInkToDrawMap = 509,
522
- NoKindlingOrFuelItemsToStartFire = 510,
523
- NoKindlingToStartFire = 511,
524
- NoLongerFeelPainOfBeingBurned = 512,
525
- NoLongerFeelPainOfBeingFrostbitten = 513,
526
- NoLongerHostile = 514,
527
- NoMoreRoomInContainer = 515,
528
- NoPaperToDrawMap = 516,
529
- NoRequiredItemToFireWeapon = 517,
530
- NoReturnWithoutCompletingChallenges = 518,
531
- NoRoomForImprovement = 519,
532
- NoRoomForVehicle = 520,
533
- NoRoomToDrop = 521,
534
- NoRoomToSummon = 522,
535
- NotEnoughPurifiedWaterYet = 523,
536
- NotEnoughTreasureToReturn = 524,
537
- NothingTo = 525,
538
- NothingToGetFromThis = 526,
539
- NothingToHarvestFromThisGather = 527,
540
- NothingToSmother = 528,
541
- NothingUsefulToHarvestYet = 529,
542
- NoTinderToStartFire = 530,
543
- NotSuitableToPlant = 531,
544
- NoWaterInStill = 532,
545
- NPCMerchantNewInventoryDialogue1 = 533,
546
- NPCMerchantNewInventoryDialogue2 = 534,
547
- NPCMerchantNewInventoryDialogue3 = 535,
548
- NPCMerchantNewInventoryDialogue4 = 536,
549
- NPCMerchantStartingDialogue1 = 537,
550
- NPCMerchantStartingDialogue2 = 538,
551
- NPCMerchantStartingDialogue3 = 539,
552
- NPCMerchantStartingDialogue4 = 540,
553
- NPCMerchantWelcomeCredit = 541,
554
- NPCShipperShipToIsland = 542,
555
- NPCShipperStartingDialogue1 = 543,
556
- NPCShipperStartingDialogue2 = 544,
557
- NPCShipperStartingDialogue3 = 545,
558
- NPCShipperStartingDialogue4 = 546,
559
- NPCWelcome = 547,
560
- ObjectIsLocked = 548,
561
- ObjectIsLockedAttemptToBreakIt = 549,
562
- OfferAberrantFail = 550,
563
- OfferAberrantFailButTamed = 551,
564
- Open = 552,
565
- OpenClose = 553,
566
- OpenCollapse = 554,
567
- OverEatingLostStamina = 555,
568
- OverHydratingLostStamina = 556,
569
- Pack = 557,
570
- PaperTurnedToMush = 558,
571
- ParryTheBlow = 559,
572
- PetCreature = 560,
573
- PickAway = 561,
574
- PickUp = 562,
575
- PickUpExcrement = 563,
576
- PickUpTheItem = 564,
577
- Place = 565,
578
- PlacedItem = 566,
579
- PlacedItemFailed = 567,
580
- PlacedOnGround = 568,
581
- PlantedInGround = 569,
582
- PlantGatheredPlant = 570,
583
- PlantGatheringWillDestroy = 571,
584
- PlantHasResourcesToGather = 572,
585
- PlantHasResourcesToHarvest = 573,
586
- PlantHighlyFertile = 574,
587
- Planting = 575,
588
- PlantIsBare = 576,
589
- PlantIsFertile = 577,
590
- PlantIsInStage = 578,
591
- PlantIsNotFertile = 579,
592
- PlantIsSeeding = 580,
593
- PlantNotReadyToHarvest = 581,
594
- PlantReadyToGather = 582,
595
- PlantReadyToGatherNotMaximal = 583,
596
- PlantReadyToHarvest = 584,
597
- PlantReadyToHarvestNotMaximal = 585,
598
- PlayerHas = 586,
599
- PlayerHasCompletedChallengeRequirement = 587,
600
- PlayerHasWonChallenge = 588,
601
- Poisoned = 589,
602
- PoisonedLostHealth = 590,
603
- PoisonWorkedItsCourse = 591,
604
- PouredOut = 592,
605
- PouredOutOnYourself = 593,
606
- PouredWaterIntoStill = 594,
607
- PourHarmedPlant = 595,
608
- PourHealedPlant = 596,
609
- PourHealedPlantFully = 597,
610
- PourHealedPlantPartially = 598,
611
- PourIncreasedFertility = 599,
612
- Pouring = 600,
613
- PourOverWatering = 601,
614
- Prepare = 602,
615
- Prepared = 603,
616
- PreservedFood = 604,
617
- PurifiedWaterInBottom = 605,
618
- PurifiedWaterInStill = 606,
619
- RandomEventsFire = 607,
620
- ReduceLength = 608,
621
- RefusedToBeTamed = 609,
622
- Repair = 610,
623
- RequiredForDisassembly = 611,
624
- RequiresFireToBeLit = 612,
625
- RequiresYouToBeAround = 613,
626
- Resistant = 614,
627
- Rest = 615,
628
- Rested = 616,
629
- Resting = 617,
630
- RestingOnGroundNotEffective = 618,
631
- RestInterrupted = 619,
632
- RestInterruptedDamage = 620,
633
- RestInterruptedDying = 621,
634
- RestInterruptedLoudNoise = 622,
635
- RestInterruptedPain = 623,
636
- RestInterruptedStirring = 624,
637
- RestInterruptedTooCold = 625,
638
- RestInterruptedTooHot = 626,
639
- RestInterruptedUncomfortablyCold = 627,
640
- RestInterruptedUncomfortablyHot = 628,
641
- RestInterruptedWaterPoured = 629,
642
- RestLongTime = 630,
643
- RestModerateTime = 631,
644
- RestOnBoat = 632,
645
- RestShortTime = 633,
646
- RestTime = 634,
647
- ReturnedToCivilization = 635,
648
- ReturningToCivilizationSetOffAgain = 636,
649
- ReturnsToLife = 637,
650
- Reverse = 638,
651
- Ride = 639,
652
- Sailing = 640,
653
- ScrollMaster = 641,
654
- ScrollProvidedNoUsefulInsight = 642,
655
- Seawater = 643,
656
- SeemsToHaveDrawnEnergy = 644,
657
- SetTrapOffButNoDamage = 645,
658
- SetUp = 646,
659
- ShadowInTheWater = 647,
660
- SkillHasRaised = 648,
661
- Skills = 649,
662
- Sleep = 650,
663
- Sleeping = 651,
664
- SleepOnBoat = 652,
665
- Slept = 653,
666
- SlitherSuckerConstricts = 654,
667
- SlitherSuckerFailedToRemove = 655,
668
- SlitherSuckerFailedToRemoveOuch = 656,
669
- SlitherSuckerJumpedOnHead = 657,
670
- SolarStill = 658,
671
- SomethingInTheWayOf = 659,
672
- SomethingInTheWayOfButcherFirst = 660,
673
- SomethingInTheWayOfFire = 661,
674
- SomethingInTheWayOfFishing = 662,
675
- SomethingInTheWayOfPerforming = 663,
676
- SomethingInTheWayOfPlacing = 664,
677
- SomethingInTheWayOfReleasing = 665,
678
- SomethingInTheWayOfSummoning = 666,
679
- SomethingInWayOfClosingDoor = 667,
680
- SoothedTheirBurnInjuries = 668,
681
- SoothedYourBurnInjuries = 669,
682
- SortedByCategory = 670,
683
- SortedByCraftableOnly = 671,
684
- SortedByName = 672,
685
- SortedBySkill = 673,
686
- SortedByUnlockedTime = 674,
687
- StaminaIsFull = 675,
688
- StartedFire = 676,
689
- StartTravelInWater = 677,
690
- StarvingToDeath = 678,
691
- StatAmount = 679,
692
- StatChangeUnknown = 680,
693
- StatGained = 681,
694
- StatIncreasing = 682,
695
- StatLost = 683,
696
- StatQuenched = 684,
697
- StatRegained = 685,
698
- StatSated = 686,
699
- SteppingOn = 687,
700
- Still = 688,
701
- StillHasNoWaterToPurify = 689,
702
- StillNoContainer = 690,
703
- StillTooColdToWork = 691,
704
- StirredUpClawWorm = 692,
705
- StirredUpCreature = 693,
706
- StoppedYourBleeding = 694,
707
- StopUsingVehicle = 695,
708
- SummonedGuardiansByDiggingTreasure = 696,
709
- SummonedGuardiansByLockpicking = 697,
710
- SummonVoidDwellerItem = 698,
711
- SummonVoidDwellerRinging = 699,
712
- SummonVoidDwellerShiver = 700,
713
- SunNotBrightEnoughToStartFire = 701,
714
- SwampWater = 702,
715
- Swimming = 703,
716
- TakenFromGroundBecomeTamed = 704,
717
- TeleportBlocked = 705,
718
- Teleported = 706,
719
- TheirFist = 707,
720
- TheirInventory = 708,
721
- ThePlant = 709,
722
- ThereIsNoContainerOnTheStill = 710,
723
- ThereIsNoSunToStartFire = 711,
724
- ThisCannotBeMilked = 712,
725
- Throw = 713,
726
- ThrownIntoDepths = 714,
727
- ThrownIntoObstacle = 715,
728
- ThrownIntoVoid = 716,
729
- TierGroup = 717,
730
- TileMakeCaveEntranceNearby = 718,
731
- TileMakeCaveEntrancePassable = 719,
732
- TileMakeCaveEntranceVoid = 720,
733
- Till = 721,
734
- Tilling = 722,
735
- TimeIs = 723,
736
- TimeIsDawn = 724,
737
- TimeIsDaytime = 725,
738
- TimeIsDusk = 726,
739
- TimeIsNighttime = 727,
740
- TimeIsSunrise = 728,
741
- TimeIsSunset = 729,
742
- ToFight = 730,
743
- TooDamaged = 731,
744
- TooExhaustedToJump = 732,
745
- Touching = 733,
746
- TrampledFire = 734,
747
- TrampledFireFail = 735,
748
- TrampledFirePartial = 736,
749
- TrampledIntoGround = 737,
750
- TrampleIntoGround = 738,
751
- Trampling = 739,
752
- TransmogrificationNoEffect = 740,
753
- TransmogrificationNotPossible = 741,
754
- Transmogrified = 742,
755
- TrapMissed = 743,
756
- TrapStoppedYou = 744,
757
- Traveling = 745,
758
- Treasure = 746,
759
- TreasureIsBlocked = 747,
760
- UiActionCannotUseInaccessibleItem = 748,
761
- UiActionCannotUseInThisSituation = 749,
762
- UiActionCannotUseNoItemHovered = 750,
763
- UiActionCannotUseNotInRange = 751,
764
- UiActionCannotUseOnThisIsland = 752,
765
- UiActionCannotUseRequiresCreature = 753,
766
- UiActionCannotUseRequiresDoodad = 754,
767
- UiActionCannotUseRequiresItem = 755,
768
- UiActionCannotUseRequiresNPC = 756,
769
- UiActionCannotUseRequiresVehicle = 757,
770
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 758,
771
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 759,
772
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 760,
773
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 761,
774
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 762,
775
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 763,
776
- UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 764,
777
- UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 765,
778
- UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 766,
779
- UnhitchCreature = 767,
780
- Unknown = 768,
781
- Unlimited = 769,
782
- UnlockedChest = 770,
783
- UnpurifiedFreshWater = 771,
784
- UnpurifiedWaterInStill = 772,
785
- UnpurifiedWaterInTop = 773,
786
- Use = 774,
787
- UsingBareHands = 775,
788
- VehicleDefense = 776,
789
- Vulnerable = 777,
790
- Water = 778,
791
- WaterGathering = 779,
792
- WaterPutOutFire = 780,
793
- WellIsDry = 781,
794
- WellIsFull = 782,
795
- WildGoatRefusedToBeMilked = 783,
796
- WorkingYourselfIntoExhaustion = 784,
797
- WorkingYourselfIntoExhaustionAndDrowning = 785,
798
- WorldContainer = 786,
799
- You = 787,
800
- YouAbsorb = 788,
801
- YouApplied = 789,
802
- YouAreAlready = 790,
803
- YouAte = 791,
804
- YouBeginResting = 792,
805
- YouCannotDoThatYet = 793,
806
- YouCanNowCombatTheTides = 794,
807
- YouCrafted = 795,
808
- YouDoNotFindTreasureYet = 796,
809
- YouDrank = 797,
810
- YouDropTheTorch = 798,
811
- YouEnchant = 799,
812
- YouEquip = 800,
813
- YouExude = 801,
814
- YouExudeSome = 802,
815
- YouExudeSomeReasonConflicting = 803,
816
- YouExudeSomeReasonMax = 804,
817
- YouExudeSomeReasonProperties = 805,
818
- YouFailedTo = 806,
819
- YouFailedToExtinguishedFireFully = 807,
820
- YouFailedToHeal = 808,
821
- YouFailedToHealOther = 809,
822
- YouFire = 810,
823
- YouGathered = 811,
824
- YouHarvested = 812,
825
- YouHave = 813,
826
- YouHaveAlreadyLearned = 814,
827
- YouHaveBeenCut = 815,
828
- YouHaveCaged = 816,
829
- YouHaveCommanded = 817,
830
- YouHaveDied = 818,
831
- YouHaveHealedOther = 819,
832
- YouHaveKilled = 820,
833
- YouHaveNotCommanded = 821,
834
- YouHaveReleased = 822,
835
- YouHaveSummoned = 823,
836
- YouHaveTamed = 824,
837
- YouHaveUncaged = 825,
838
- YouNoticeBarren = 826,
839
- YouNoticeBecomeEnraged = 827,
840
- YouNoticeDying = 828,
841
- YouNoticeFertilityDecreasing = 829,
842
- YouNoticeFertilityIncreasing = 830,
843
- YouNoticeGrowing = 831,
844
- YouNoticeLavaCooling = 832,
845
- YouNoticeLavaHardening = 833,
846
- YouNoticePerish = 834,
847
- YouNoticePlantDamage = 835,
848
- YouNoticePlantRegenerated = 836,
849
- YouNoticeRegrowing = 837,
850
- YouNoticeStumbleInjureItself = 838,
851
- YouNoticeTakeFromGround = 839,
852
- YouNoticeWoundsClosing = 840,
853
- YouOfferedToCreature = 841,
854
- YouOfferedToCreatureRejects = 842,
855
- YouOpen = 843,
856
- YouPacked = 844,
857
- YouPickedUp = 845,
858
- YouRefine = 846,
859
- YouReinforce = 847,
860
- YouRepair = 848,
861
- YouReturnFromCivilizationWith = 849,
862
- YourFist = 850,
863
- YourHands = 851,
864
- YourInventory = 852,
865
- YourIsland = 853,
866
- YouSeeALivingMushroomSpore = 854,
867
- YouSeeASkeletonCollapse = 855,
868
- YouSeeASlimeCombine = 856,
869
- YouSeeAZombieBleeding = 857,
870
- YouSeeCoolDown = 858,
871
- YouSeeDrop = 859,
872
- YouSeeEngulfFire = 860,
873
- YouSeeFireSpread = 861,
874
- YouSeeHelpingPlant = 862,
875
- YouSeeLay = 863,
876
- YouSeeLayingTrap = 864,
877
- YouSeeSpewLava = 865,
878
- YouSeeSpiderSpin = 866,
879
- YouSeeSpitAcid = 867,
880
- YouSeeSpringForth = 868,
881
- YouSeeSummon = 869,
882
- YouSeeSwampFlood = 870,
883
- YouSeeTrampling = 871,
884
- YouSetTheTrapOff = 872,
885
- YouStokeTheCreature = 873,
886
- YouSwapMainHandAndOffHand = 874,
887
- YouThrew = 875,
888
- YouTilled = 876,
889
- YouUnequip = 877,
890
- YouUsed = 878,
891
- YouViewTheItemsOn = 879,
892
- YouWhileTraveling = 880
329
+ CurseEventNewPlantDeath = 317,
330
+ CurseEventNewPlantsGrowth = 318,
331
+ CurseUpdateSunrise = 319,
332
+ CurseUpdateSunset = 320,
333
+ CurseUpdateWarning = 321,
334
+ CurseActionSailToIslandCannotUseCursebearer = 322,
335
+ Cut = 323,
336
+ CutHasHealed = 324,
337
+ CutLostHealth = 325,
338
+ CutWasBandaged = 326,
339
+ DamageAppeared = 327,
340
+ DamagedByPouring = 328,
341
+ DangerousMove = 329,
342
+ DangerousOpen = 330,
343
+ DayQuarter1 = 331,
344
+ DayQuarter2 = 332,
345
+ DayQuarter3 = 333,
346
+ DayQuarter4 = 334,
347
+ DealtNoDamageToYou = 335,
348
+ DeathBy = 336,
349
+ DeathByBleeding = 337,
350
+ DeathByBurning = 338,
351
+ DeathByChallengeWinner = 339,
352
+ DeathByConsumption = 340,
353
+ DeathByCut = 341,
354
+ DeathByDrowning = 342,
355
+ DeathByExhaustion = 343,
356
+ DeathByFistByPlayer = 344,
357
+ DeathByFrostbite = 345,
358
+ DeathByFrostbiteTemperatureShock = 346,
359
+ DeathByMalnutrition = 347,
360
+ DeathByPoison = 348,
361
+ DeathBySteppingOn = 349,
362
+ DeathByTrap = 350,
363
+ DeathByWeaponByPlayer = 351,
364
+ DedicatedTitleAlreadySelected = 352,
365
+ DedicatedTitleMilestoneNotAllowed = 353,
366
+ DestroyedFromUse = 354,
367
+ DeveloperContainerDesync = 355,
368
+ DidNotSeemToBeHurting = 356,
369
+ Dig = 357,
370
+ DigAway = 358,
371
+ Digging = 359,
372
+ Disassemble = 360,
373
+ Disassembling = 361,
374
+ DiscoveredCaveEntrance = 362,
375
+ DiscoveredColdInsulation = 363,
376
+ DiscoveredHeatInsulation = 364,
377
+ DiscoveredInTheBottle = 365,
378
+ DiscoveredLavaPassage = 366,
379
+ DiscoveredQuality = 367,
380
+ Dismantle = 368,
381
+ Dismantling = 369,
382
+ DismantlingRequires = 370,
383
+ Dismounted = 371,
384
+ DisplacedPuddles = 372,
385
+ DoNotProduceAnyResources = 373,
386
+ DoodadCauseStatus = 374,
387
+ DoodadGroupTier = 375,
388
+ DrewSurroundings = 376,
389
+ Dripstone = 377,
390
+ DroppedIntoDepths = 378,
391
+ DroppedIntoFire = 379,
392
+ DroppedIntoTheVoid = 380,
393
+ DryadSprouted = 381,
394
+ DueToDehydration = 382,
395
+ DueToStarvation = 383,
396
+ DugTreasureOut = 384,
397
+ DugTreasureOutSurprise = 385,
398
+ DumpContentsOfContainerInInventory = 386,
399
+ DyingOfDehydration = 387,
400
+ EarnedMilestone = 388,
401
+ Effective = 389,
402
+ EquipmentPreventedStatusEffects = 390,
403
+ ErrorHasOccured = 391,
404
+ Excavating = 392,
405
+ ExtinguishedFire = 393,
406
+ ExtinguishedLightSource = 394,
407
+ ExudeNotPossible = 395,
408
+ FailedToAbsorb = 396,
409
+ FailedToAddFuelToTorch = 397,
410
+ FailedToCage = 398,
411
+ FailedToCatchFish = 399,
412
+ FailedToCauseDamage = 400,
413
+ FailedToCauseYouDamage = 401,
414
+ FailedToCopy = 402,
415
+ FailedToDraw = 403,
416
+ FailedToEnchant = 404,
417
+ FailedToExude = 405,
418
+ FailedToIgniteTorch = 406,
419
+ FailedToPickLock = 407,
420
+ FailedToPreserve = 408,
421
+ FailedToRefine = 409,
422
+ FailedToReinforce = 410,
423
+ FailedToRepair = 411,
424
+ FailedToStartFire = 412,
425
+ FailedToTame = 413,
426
+ FailedToTransmogrify = 414,
427
+ FarOffLands = 415,
428
+ FeltBurningPainLostHealth = 416,
429
+ FeltFrostbitePainLostHealth = 417,
430
+ FewMinutes = 418,
431
+ Filled = 419,
432
+ FilledFrom = 420,
433
+ FireAroundYouIsWarm = 421,
434
+ FiredIntoObstacle = 422,
435
+ FireOverflowed = 423,
436
+ FireOverflowedFireElemental = 424,
437
+ FireSource = 425,
438
+ FishingWithNoBait = 426,
439
+ Floating = 427,
440
+ FreshWater = 428,
441
+ FromTheStill = 429,
442
+ FuelIsRequired = 430,
443
+ Gather = 431,
444
+ GatherDestroy = 432,
445
+ Gathering = 433,
446
+ GhostNoActions = 434,
447
+ GhostOf = 435,
448
+ GoatHasNoMilk = 436,
449
+ HackAway = 437,
450
+ HandProtectionPreventedInjury = 438,
451
+ HandsNotEffectiveFor = 439,
452
+ Harvest = 440,
453
+ Harvesting = 441,
454
+ HasBeenHurtByATrap = 442,
455
+ HasDecayed = 443,
456
+ HasHitYouForDamage = 444,
457
+ HasNoEffect = 445,
458
+ HasSetTrapOffNoDamage = 446,
459
+ HasSplit = 447,
460
+ HelpGrow = 448,
461
+ HitchAttempt = 449,
462
+ HitchCreature = 450,
463
+ HitchDisabled = 451,
464
+ HitchInUse = 452,
465
+ HitForDamage = 453,
466
+ HitYouForDamage = 454,
467
+ Hour = 455,
468
+ Hours = 456,
469
+ HurtHandsHittingWithoutWeapons = 457,
470
+ HurtHandsWithNoTool = 458,
471
+ IgnitedTorch = 459,
472
+ Ineffective = 460,
473
+ InjuredFromTrap = 461,
474
+ InNeedOfRepair = 462,
475
+ InteractingWithHasInjuredYouForDamage = 463,
476
+ InvalidContainer = 464,
477
+ IsInTheWayOfPickingUp = 465,
478
+ ItemFromWater = 466,
479
+ JoinedAServer = 467,
480
+ Jump = 468,
481
+ Killed = 469,
482
+ KnowledgeHasIncreased = 470,
483
+ LastPlaceYouLeftOff = 471,
484
+ LearnedHowToCreate = 472,
485
+ LikelyFailures = 473,
486
+ Limited = 474,
487
+ Lockpick = 475,
488
+ MapCompletedNotOfThisArea = 476,
489
+ MapDestroyed = 477,
490
+ MapNearlyDestroyed = 478,
491
+ MapNotOfThisArea = 479,
492
+ MaterialsDestroyed = 480,
493
+ MessageOfTheDay = 481,
494
+ MetabolismSlowed = 482,
495
+ Milk = 483,
496
+ Mine = 484,
497
+ Mining = 485,
498
+ MissedWith = 486,
499
+ MissedYouWith = 487,
500
+ MovedItem = 488,
501
+ MovedItemFailed = 489,
502
+ MoveOverTrapButDoNotSetOff = 490,
503
+ MultiplayerGamePaused = 491,
504
+ MultiplayerGameResumed = 492,
505
+ MultiplayerPlayerConnected = 493,
506
+ MultiplayerPlayerDied = 494,
507
+ MultiplayerPlayerDisconnected = 495,
508
+ MultiplayerPlayerJoined = 496,
509
+ MustBeEquippedToIgnite = 497,
510
+ Mysteriously = 498,
511
+ NearlyBurnedEquipmentProtectedYou = 499,
512
+ NeedToStartTravelsOutside = 500,
513
+ NeedWaterForBoat = 501,
514
+ NightQuarter1 = 502,
515
+ NightQuarter2 = 503,
516
+ NightQuarter3 = 504,
517
+ NightQuarter4 = 505,
518
+ No = 506,
519
+ NoAmmunitionForThatWeapon = 507,
520
+ NoCandleToStartFire = 508,
521
+ NoFireToStokeWith = 509,
522
+ NoFishAtLocation = 510,
523
+ NoGroundWater = 511,
524
+ NoInkToDrawMap = 512,
525
+ NoKindlingOrFuelItemsToStartFire = 513,
526
+ NoKindlingToStartFire = 514,
527
+ NoLongerFeelPainOfBeingBurned = 515,
528
+ NoLongerFeelPainOfBeingFrostbitten = 516,
529
+ NoLongerHostile = 517,
530
+ NoMoreRoomInContainer = 518,
531
+ NoPaperToDrawMap = 519,
532
+ NoRequiredItemToFireWeapon = 520,
533
+ NoReturnWithoutCompletingChallenges = 521,
534
+ NoRoomForImprovement = 522,
535
+ NoRoomForVehicle = 523,
536
+ NoRoomToDrop = 524,
537
+ NoRoomToSummon = 525,
538
+ NotEnoughPurifiedWaterYet = 526,
539
+ NotEnoughTreasureToReturn = 527,
540
+ NothingTo = 528,
541
+ NothingToGetFromThis = 529,
542
+ NothingToHarvestFromThisGather = 530,
543
+ NothingToSmother = 531,
544
+ NothingUsefulToHarvestYet = 532,
545
+ NoTinderToStartFire = 533,
546
+ NotSuitableToPlant = 534,
547
+ NoWaterInStill = 535,
548
+ NPCMerchantNewInventoryDialogue1 = 536,
549
+ NPCMerchantNewInventoryDialogue2 = 537,
550
+ NPCMerchantNewInventoryDialogue3 = 538,
551
+ NPCMerchantNewInventoryDialogue4 = 539,
552
+ NPCMerchantStartingDialogue1 = 540,
553
+ NPCMerchantStartingDialogue2 = 541,
554
+ NPCMerchantStartingDialogue3 = 542,
555
+ NPCMerchantStartingDialogue4 = 543,
556
+ NPCMerchantWelcomeCredit = 544,
557
+ NPCShipperShipToIsland = 545,
558
+ NPCShipperStartingDialogue1 = 546,
559
+ NPCShipperStartingDialogue2 = 547,
560
+ NPCShipperStartingDialogue3 = 548,
561
+ NPCShipperStartingDialogue4 = 549,
562
+ NPCWelcome = 550,
563
+ ObjectIsLocked = 551,
564
+ ObjectIsLockedAttemptToBreakIt = 552,
565
+ OfferAberrantFail = 553,
566
+ OfferAberrantFailButTamed = 554,
567
+ Open = 555,
568
+ OpenClose = 556,
569
+ OpenCollapse = 557,
570
+ OverEatingLostStamina = 558,
571
+ OverHydratingLostStamina = 559,
572
+ Pack = 560,
573
+ PaperTurnedToMush = 561,
574
+ ParryTheBlow = 562,
575
+ PetCreature = 563,
576
+ PickAway = 564,
577
+ PickUp = 565,
578
+ PickUpExcrement = 566,
579
+ PickUpTheItem = 567,
580
+ Place = 568,
581
+ PlacedItem = 569,
582
+ PlacedItemFailed = 570,
583
+ PlacedOnGround = 571,
584
+ PlantedInGround = 572,
585
+ PlantGatheredPlant = 573,
586
+ PlantGatheringWillDestroy = 574,
587
+ PlantHasResourcesToGather = 575,
588
+ PlantHasResourcesToHarvest = 576,
589
+ PlantHighlyFertile = 577,
590
+ Planting = 578,
591
+ PlantIsBare = 579,
592
+ PlantIsFertile = 580,
593
+ PlantIsInStage = 581,
594
+ PlantIsNotFertile = 582,
595
+ PlantIsSeeding = 583,
596
+ PlantNotReadyToHarvest = 584,
597
+ PlantReadyToGather = 585,
598
+ PlantReadyToGatherNotMaximal = 586,
599
+ PlantReadyToHarvest = 587,
600
+ PlantReadyToHarvestNotMaximal = 588,
601
+ PlayerHas = 589,
602
+ PlayerHasCompletedChallengeRequirement = 590,
603
+ PlayerHasWonChallenge = 591,
604
+ Poisoned = 592,
605
+ PoisonedLostHealth = 593,
606
+ PoisonWorkedItsCourse = 594,
607
+ PouredOut = 595,
608
+ PouredOutOnYourself = 596,
609
+ PouredWaterIntoStill = 597,
610
+ PourHarmedPlant = 598,
611
+ PourHealedPlant = 599,
612
+ PourHealedPlantFully = 600,
613
+ PourHealedPlantPartially = 601,
614
+ PourIncreasedFertility = 602,
615
+ Pouring = 603,
616
+ PourOverWatering = 604,
617
+ Prepare = 605,
618
+ Prepared = 606,
619
+ PreservedFood = 607,
620
+ PurifiedWaterInBottom = 608,
621
+ PurifiedWaterInStill = 609,
622
+ RandomEventsFire = 610,
623
+ ReduceLength = 611,
624
+ RefusedToBeTamed = 612,
625
+ Repair = 613,
626
+ RequiredForDisassembly = 614,
627
+ RequiresFireToBeLit = 615,
628
+ RequiresYouToBeAround = 616,
629
+ Resistant = 617,
630
+ Rest = 618,
631
+ Rested = 619,
632
+ Resting = 620,
633
+ RestingOnGroundNotEffective = 621,
634
+ RestInterrupted = 622,
635
+ RestInterruptedDamage = 623,
636
+ RestInterruptedDying = 624,
637
+ RestInterruptedLoudNoise = 625,
638
+ RestInterruptedPain = 626,
639
+ RestInterruptedStirring = 627,
640
+ RestInterruptedTooCold = 628,
641
+ RestInterruptedTooHot = 629,
642
+ RestInterruptedUncomfortablyCold = 630,
643
+ RestInterruptedUncomfortablyHot = 631,
644
+ RestInterruptedWaterPoured = 632,
645
+ RestLongTime = 633,
646
+ RestModerateTime = 634,
647
+ RestOnBoat = 635,
648
+ RestShortTime = 636,
649
+ RestTime = 637,
650
+ ReturnedToCivilization = 638,
651
+ ReturningToCivilizationSetOffAgain = 639,
652
+ ReturnsToLife = 640,
653
+ Reverse = 641,
654
+ Ride = 642,
655
+ Sailing = 643,
656
+ ScrollMaster = 644,
657
+ ScrollProvidedNoUsefulInsight = 645,
658
+ Seawater = 646,
659
+ SeemsToHaveDrawnEnergy = 647,
660
+ SetTrapOffButNoDamage = 648,
661
+ SetUp = 649,
662
+ ShadowInTheWater = 650,
663
+ SkillHasRaised = 651,
664
+ Skills = 652,
665
+ Sleep = 653,
666
+ Sleeping = 654,
667
+ SleepOnBoat = 655,
668
+ Slept = 656,
669
+ SlitherSuckerConstricts = 657,
670
+ SlitherSuckerFailedToRemove = 658,
671
+ SlitherSuckerFailedToRemoveOuch = 659,
672
+ SlitherSuckerJumpedOnHead = 660,
673
+ SolarStill = 661,
674
+ SomethingInTheWayOf = 662,
675
+ SomethingInTheWayOfButcherFirst = 663,
676
+ SomethingInTheWayOfFire = 664,
677
+ SomethingInTheWayOfFishing = 665,
678
+ SomethingInTheWayOfPerforming = 666,
679
+ SomethingInTheWayOfPlacing = 667,
680
+ SomethingInTheWayOfReleasing = 668,
681
+ SomethingInTheWayOfSummoning = 669,
682
+ SomethingInWayOfClosingDoor = 670,
683
+ SoothedTheirBurnInjuries = 671,
684
+ SoothedYourBurnInjuries = 672,
685
+ SortedByCategory = 673,
686
+ SortedByCraftableOnly = 674,
687
+ SortedByName = 675,
688
+ SortedBySkill = 676,
689
+ SortedByUnlockedTime = 677,
690
+ StaminaIsFull = 678,
691
+ StartedFire = 679,
692
+ StartTravelInWater = 680,
693
+ StarvingToDeath = 681,
694
+ StatAmount = 682,
695
+ StatChangeUnknown = 683,
696
+ StatGained = 684,
697
+ StatIncreasing = 685,
698
+ StatLost = 686,
699
+ StatQuenched = 687,
700
+ StatRegained = 688,
701
+ StatSated = 689,
702
+ SteppingOn = 690,
703
+ Still = 691,
704
+ StillHasNoWaterToPurify = 692,
705
+ StillNoContainer = 693,
706
+ StillTooColdToWork = 694,
707
+ StirredUpClawWorm = 695,
708
+ StirredUpCreature = 696,
709
+ StoppedYourBleeding = 697,
710
+ StopUsingVehicle = 698,
711
+ SummonedGuardiansByDiggingTreasure = 699,
712
+ SummonedGuardiansByLockpicking = 700,
713
+ SummonVoidDwellerItem = 701,
714
+ SummonVoidDwellerRinging = 702,
715
+ SummonVoidDwellerShiver = 703,
716
+ SunNotBrightEnoughToStartFire = 704,
717
+ SwampWater = 705,
718
+ Swimming = 706,
719
+ TakenFromGroundBecomeTamed = 707,
720
+ TeleportBlocked = 708,
721
+ Teleported = 709,
722
+ TheirFist = 710,
723
+ TheirInventory = 711,
724
+ ThePlant = 712,
725
+ ThereIsNoContainerOnTheStill = 713,
726
+ ThereIsNoSunToStartFire = 714,
727
+ ThisCannotBeMilked = 715,
728
+ Throw = 716,
729
+ ThrownIntoDepths = 717,
730
+ ThrownIntoObstacle = 718,
731
+ ThrownIntoVoid = 719,
732
+ TierGroup = 720,
733
+ TileMakeCaveEntranceNearby = 721,
734
+ TileMakeCaveEntrancePassable = 722,
735
+ TileMakeCaveEntranceVoid = 723,
736
+ Till = 724,
737
+ Tilling = 725,
738
+ TimeIs = 726,
739
+ TimeIsDawn = 727,
740
+ TimeIsDaytime = 728,
741
+ TimeIsDusk = 729,
742
+ TimeIsNighttime = 730,
743
+ TimeIsSunrise = 731,
744
+ TimeIsSunset = 732,
745
+ ToFight = 733,
746
+ TooDamaged = 734,
747
+ TooExhaustedToJump = 735,
748
+ Touching = 736,
749
+ TrampledFire = 737,
750
+ TrampledFireFail = 738,
751
+ TrampledFirePartial = 739,
752
+ TrampledIntoGround = 740,
753
+ TrampleIntoGround = 741,
754
+ Trampling = 742,
755
+ TransmogrificationNoEffect = 743,
756
+ TransmogrificationNotPossible = 744,
757
+ Transmogrified = 745,
758
+ TrapMissed = 746,
759
+ TrapStoppedYou = 747,
760
+ Traveling = 748,
761
+ Treasure = 749,
762
+ TreasureIsBlocked = 750,
763
+ UiActionCannotUseInaccessibleItem = 751,
764
+ UiActionCannotUseInThisSituation = 752,
765
+ UiActionCannotUseNoItemHovered = 753,
766
+ UiActionCannotUseNotInRange = 754,
767
+ UiActionCannotUseOnThisIsland = 755,
768
+ UiActionCannotUseRequiresCreature = 756,
769
+ UiActionCannotUseRequiresDoodad = 757,
770
+ UiActionCannotUseRequiresItem = 758,
771
+ UiActionCannotUseRequiresNPC = 759,
772
+ UiActionCannotUseRequiresVehicle = 760,
773
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 761,
774
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 762,
775
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 763,
776
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 764,
777
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 765,
778
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 766,
779
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 767,
780
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 768,
781
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 769,
782
+ UnhitchCreature = 770,
783
+ Unknown = 771,
784
+ Unlimited = 772,
785
+ UnlockedChest = 773,
786
+ UnpurifiedFreshWater = 774,
787
+ UnpurifiedWaterInStill = 775,
788
+ UnpurifiedWaterInTop = 776,
789
+ Use = 777,
790
+ UsingBareHands = 778,
791
+ VehicleDefense = 779,
792
+ Vulnerable = 780,
793
+ Water = 781,
794
+ WaterGathering = 782,
795
+ WaterPutOutFire = 783,
796
+ WellIsDry = 784,
797
+ WellIsFull = 785,
798
+ WildGoatRefusedToBeMilked = 786,
799
+ WorkingYourselfIntoExhaustion = 787,
800
+ WorkingYourselfIntoExhaustionAndDrowning = 788,
801
+ WorldContainer = 789,
802
+ You = 790,
803
+ YouAbsorb = 791,
804
+ YouApplied = 792,
805
+ YouAreAlready = 793,
806
+ YouAte = 794,
807
+ YouBeginResting = 795,
808
+ YouCannotDoThatYet = 796,
809
+ YouCanNowCombatTheTides = 797,
810
+ YouCrafted = 798,
811
+ YouDoNotFindTreasureYet = 799,
812
+ YouDrank = 800,
813
+ YouDropTheTorch = 801,
814
+ YouEnchant = 802,
815
+ YouEquip = 803,
816
+ YouExude = 804,
817
+ YouExudeSome = 805,
818
+ YouExudeSomeReasonConflicting = 806,
819
+ YouExudeSomeReasonMax = 807,
820
+ YouExudeSomeReasonProperties = 808,
821
+ YouFailedTo = 809,
822
+ YouFailedToExtinguishedFireFully = 810,
823
+ YouFailedToHeal = 811,
824
+ YouFailedToHealOther = 812,
825
+ YouFire = 813,
826
+ YouGathered = 814,
827
+ YouHarvested = 815,
828
+ YouHave = 816,
829
+ YouHaveAlreadyLearned = 817,
830
+ YouHaveBeenCut = 818,
831
+ YouHaveCaged = 819,
832
+ YouHaveCommanded = 820,
833
+ YouHaveDied = 821,
834
+ YouHaveHealedOther = 822,
835
+ YouHaveKilled = 823,
836
+ YouHaveNotCommanded = 824,
837
+ YouHaveReleased = 825,
838
+ YouHaveSummoned = 826,
839
+ YouHaveTamed = 827,
840
+ YouHaveUncaged = 828,
841
+ YouNoticeBarren = 829,
842
+ YouNoticeBecomeEnraged = 830,
843
+ YouNoticeDying = 831,
844
+ YouNoticeFertilityDecreasing = 832,
845
+ YouNoticeFertilityIncreasing = 833,
846
+ YouNoticeGrowing = 834,
847
+ YouNoticeLavaCooling = 835,
848
+ YouNoticeLavaHardening = 836,
849
+ YouNoticePerish = 837,
850
+ YouNoticePlantDamage = 838,
851
+ YouNoticePlantRegenerated = 839,
852
+ YouNoticeStumbleInjureItself = 840,
853
+ YouNoticeTakeFromGround = 841,
854
+ YouNoticeWoundsClosing = 842,
855
+ YouOfferedToCreature = 843,
856
+ YouOfferedToCreatureRejects = 844,
857
+ YouOpen = 845,
858
+ YouPacked = 846,
859
+ YouPickedUp = 847,
860
+ YouRefine = 848,
861
+ YouReinforce = 849,
862
+ YouRepair = 850,
863
+ YouReturnFromCivilizationWith = 851,
864
+ YourFist = 852,
865
+ YourHands = 853,
866
+ YourInventory = 854,
867
+ YourIsland = 855,
868
+ YouSeeALivingMushroomSpore = 856,
869
+ YouSeeASkeletonCollapse = 857,
870
+ YouSeeASlimeCombine = 858,
871
+ YouSeeAZombieBleeding = 859,
872
+ YouSeeCoolDown = 860,
873
+ YouSeeDrop = 861,
874
+ YouSeeEngulfFire = 862,
875
+ YouSeeFireSpread = 863,
876
+ YouSeeHelpingPlant = 864,
877
+ YouSeeLay = 865,
878
+ YouSeeLayingTrap = 866,
879
+ YouSeeSpewLava = 867,
880
+ YouSeeSpiderSpin = 868,
881
+ YouSeeSpitAcid = 869,
882
+ YouSeeSpringForth = 870,
883
+ YouSeeSummon = 871,
884
+ YouSeeSwampFlood = 872,
885
+ YouSeeTrampling = 873,
886
+ YouSetTheTrapOff = 874,
887
+ YouStokeTheCreature = 875,
888
+ YouSwapMainHandAndOffHand = 876,
889
+ YouThrew = 877,
890
+ YouTilled = 878,
891
+ YouUnequip = 879,
892
+ YouUsed = 880,
893
+ YouViewTheItemsOn = 881,
894
+ YouWhileTraveling = 882
893
895
  }
894
896
  export default Message;