@wayward/types 2.11.3-beta.dev.20220123.2 → 2.11.4-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +10 -10
- package/definitions/cplusplus/index.d.ts +126 -126
- package/definitions/game/IGlobal.d.ts +91 -91
- package/definitions/game/Init.d.ts +20 -20
- package/definitions/game/Production.d.ts +10 -10
- package/definitions/game/audio/Audio.d.ts +76 -76
- package/definitions/game/audio/DefaultMusicHandler.d.ts +21 -21
- package/definitions/game/audio/IAudio.d.ts +76 -76
- package/definitions/game/audio/IMusic.d.ts +15 -15
- package/definitions/game/audio/Music.d.ts +13 -13
- package/definitions/game/audio/SoundEffects.d.ts +13 -13
- package/definitions/game/command/CommandManager.d.ts +35 -35
- package/definitions/game/command/Commands.d.ts +13 -13
- package/definitions/game/command/ICommand.d.ts +31 -31
- package/definitions/game/command/ICommandManager.d.ts +16 -16
- package/definitions/game/command/commands/Backup.d.ts +13 -13
- package/definitions/game/command/commands/Ban.d.ts +13 -13
- package/definitions/game/command/commands/Banned.d.ts +13 -13
- package/definitions/game/command/commands/Commands.d.ts +13 -13
- package/definitions/game/command/commands/Kick.d.ts +13 -13
- package/definitions/game/command/commands/Pause.d.ts +13 -13
- package/definitions/game/command/commands/Ping.d.ts +13 -13
- package/definitions/game/command/commands/Players.d.ts +13 -13
- package/definitions/game/command/commands/Save.d.ts +13 -13
- package/definitions/game/command/commands/Sync.d.ts +13 -13
- package/definitions/game/command/commands/Unban.d.ts +13 -13
- package/definitions/game/event/EventBuses.d.ts +115 -115
- package/definitions/game/event/EventEmitter.d.ts +95 -95
- package/definitions/game/event/EventManager.d.ts +45 -45
- package/definitions/game/game/Game.d.ts +168 -168
- package/definitions/game/game/IGame.d.ts +263 -263
- package/definitions/game/game/ILoot.d.ts +16 -16
- package/definitions/game/game/IObject.d.ts +54 -54
- package/definitions/game/game/ItemDoodadGroups.d.ts +14 -14
- package/definitions/game/game/ObjectManager.d.ts +31 -31
- package/definitions/game/game/VotingManager.d.ts +44 -44
- package/definitions/game/game/WorldZ.d.ts +16 -16
- package/definitions/game/game/biome/Biomes.d.ts +12 -12
- package/definitions/game/game/biome/IBiome.d.ts +74 -74
- package/definitions/game/game/biome/arid/Arid.d.ts +23 -23
- package/definitions/game/game/biome/arid/mapGen/2.10.0.d.ts +12 -12
- package/definitions/game/game/biome/arid/mapGen/2.11.0.d.ts +12 -12
- package/definitions/game/game/biome/arid/mapGen/2.9.0.d.ts +12 -12
- package/definitions/game/game/biome/coastal/Coastal.d.ts +23 -23
- package/definitions/game/game/biome/coastal/mapGen/2.10.0.d.ts +12 -12
- package/definitions/game/game/biome/coastal/mapGen/2.11.0.d.ts +12 -12
- package/definitions/game/game/biome/coastal/mapGen/2.9.0.d.ts +12 -12
- package/definitions/game/game/biome/iceCap/IceCap.d.ts +23 -23
- package/definitions/game/game/biome/iceCap/mapGen/2.10.0.d.ts +12 -12
- package/definitions/game/game/biome/iceCap/mapGen/2.11.0.d.ts +12 -12
- package/definitions/game/game/biome/iceCap/mapGen/2.9.0.d.ts +12 -12
- package/definitions/game/game/biome/volcanic/Volcanic.d.ts +23 -23
- package/definitions/game/game/biome/volcanic/mapGen/2.11.0.d.ts +12 -12
- package/definitions/game/game/doodad/Doodad.d.ts +280 -280
- package/definitions/game/game/doodad/DoodadInfo.d.ts +24 -24
- package/definitions/game/game/doodad/DoodadManager.d.ts +92 -92
- package/definitions/game/game/doodad/Doodads.d.ts +15 -15
- package/definitions/game/game/doodad/IDoodad.d.ts +334 -334
- package/definitions/game/game/entity/Entity.d.ts +147 -147
- package/definitions/game/game/entity/EntityManager.d.ts +32 -36
- package/definitions/game/game/entity/Human.d.ts +165 -154
- package/definitions/game/game/entity/IEntity.d.ts +172 -172
- package/definitions/game/game/entity/IEntityManager.d.ts +22 -23
- package/definitions/game/game/entity/IHuman.d.ts +266 -231
- package/definitions/game/game/entity/IStats.d.ts +174 -174
- package/definitions/game/game/entity/StatFactory.d.ts +136 -136
- package/definitions/game/game/entity/Stats.d.ts +167 -167
- package/definitions/game/game/entity/StatusEffects.d.ts +35 -35
- package/definitions/game/game/entity/action/Action.d.ts +89 -89
- package/definitions/game/game/entity/action/ActionArguments.d.ts +16 -16
- package/definitions/game/game/entity/action/ActionExecutor.d.ts +102 -102
- package/definitions/game/game/entity/action/Actions.d.ts +119 -119
- package/definitions/game/game/entity/action/IAction.d.ts +349 -349
- package/definitions/game/game/entity/action/actions/AddFuel.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Alter.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Apply.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/AttachContainer.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Attack.d.ts +17 -17
- package/definitions/game/game/entity/action/actions/Build.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Butcher.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Cast.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Chop.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/CloseContainer.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/CloseDoor.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/ConsumeItem.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/CopyMap.d.ts +24 -24
- package/definitions/game/game/entity/action/actions/Craft.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/CraftNew.d.ts +16 -16
- package/definitions/game/game/entity/action/actions/Cure.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/DetachContainer.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Dig.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Disassemble.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Dismantle.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/DrawMap.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/DrinkInFront.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/DrinkItem.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Drop.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Eat.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Enchant.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Enhance.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Equip.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Extinguish.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Fire.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Gather.d.ts +19 -19
- package/definitions/game/game/entity/action/actions/GatherLiquid.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/GrabAll.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Grasp.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Harvest.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Heal.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/HealOther.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Hitch.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Idle.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Ignite.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/InterruptResponse.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Jump.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Learn.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Lockpick.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Melee.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Mine.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Move.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/MoveItem.d.ts +17 -17
- package/definitions/game/game/entity/action/actions/MoveTo.d.ts +16 -16
- package/definitions/game/game/entity/action/actions/Navigate.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Offer.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/OpenBottle.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/OpenContainer.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/OpenDoor.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Paddle.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Pet.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Pickup.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/PickupAllItems.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/PickupExcrement.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/PickupItem.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/PlaceDown.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Plant.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Pour.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/PourOnYourself.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Preserve.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/ProtectItem.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Read.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/ReadMap.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Refine.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Reinforce.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Release.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Rename.d.ts +16 -16
- package/definitions/game/game/entity/action/actions/RenameIsland.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Repair.d.ts +16 -16
- package/definitions/game/game/entity/action/actions/Respawn.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Rest.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/Rub.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/RubClockwise.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/RubCounterClockwise.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/SailToCivilization.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/SailToIsland.d.ts +106 -106
- package/definitions/game/game/entity/action/actions/SetDown.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Shoot.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Sleep.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/SmotherFire.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Squeeze.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/StartFire.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/StokeFire.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Tame.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/Teleport.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/TellTime.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/TestDepth.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Throw.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/Till.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/ToggleContainer.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/ToggleDoor.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/ToggleHitch.d.ts +13 -13
- package/definitions/game/game/entity/action/actions/ToggleProtectItem.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Trade.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Transmogrify.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Unequip.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Unhitch.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/UnprotectItem.d.ts +12 -12
- package/definitions/game/game/entity/action/actions/UpdateDirection.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/UpdateItemOrder.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/UpdateItemQuickSlot.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/UpdateOption.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/Upgrade.d.ts +15 -15
- package/definitions/game/game/entity/action/actions/UseItem.d.ts +14 -14
- package/definitions/game/game/entity/action/actions/helper/ConsumeItemType.d.ts +17 -17
- package/definitions/game/game/entity/action/actions/helper/GatherTreasure.d.ts +23 -23
- package/definitions/game/game/entity/action/actions/helper/Inventories.d.ts +19 -19
- package/definitions/game/game/entity/action/actions/map/GetObfuscation.d.ts +17 -17
- package/definitions/game/game/entity/action/actions/map/MapQuality.d.ts +20 -20
- package/definitions/game/game/entity/creature/Creature.d.ts +138 -135
- package/definitions/game/game/entity/creature/CreatureManager.d.ts +86 -86
- package/definitions/game/game/entity/creature/CreatureSpawning.d.ts +33 -33
- package/definitions/game/game/entity/creature/Creatures.d.ts +16 -16
- package/definitions/game/game/entity/creature/ICreature.d.ts +265 -265
- package/definitions/game/game/entity/creature/ICreatureManager.d.ts +15 -20
- package/definitions/game/game/entity/creature/Pathing.d.ts +30 -30
- package/definitions/game/game/entity/creature/corpse/Corpse.d.ts +55 -55
- package/definitions/game/game/entity/creature/corpse/CorpseManager.d.ts +28 -28
- package/definitions/game/game/entity/creature/corpse/Corpses.d.ts +14 -14
- package/definitions/game/game/entity/creature/corpse/ICorpse.d.ts +41 -41
- package/definitions/game/game/entity/flowfield/FlowField.d.ts +42 -42
- package/definitions/game/game/entity/flowfield/FlowFieldDebugRenderer.d.ts +23 -23
- package/definitions/game/game/entity/flowfield/FlowFieldManager.d.ts +49 -49
- package/definitions/game/game/entity/flowfield/IFlowFieldDebugRenderer.d.ts +13 -13
- package/definitions/game/game/entity/flowfield/IFlowFieldManager.d.ts +11 -11
- package/definitions/game/game/entity/npc/INPC.d.ts +13 -13
- package/definitions/game/game/entity/npc/INPCs.d.ts +14 -14
- package/definitions/game/game/entity/npc/NPC.d.ts +132 -135
- package/definitions/game/game/entity/npc/NPCManager.d.ts +32 -32
- package/definitions/game/game/entity/npc/NPCS.d.ts +18 -18
- package/definitions/game/game/entity/npc/npcs/DeathKnight.d.ts +24 -24
- package/definitions/game/game/entity/npc/npcs/IMerchant.d.ts +12 -12
- package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +30 -30
- package/definitions/game/game/entity/player/Customizations.d.ts +23 -23
- package/definitions/game/game/entity/player/IMessageManager.d.ts +128 -128
- package/definitions/game/game/entity/player/IPlayer.d.ts +361 -391
- package/definitions/game/game/entity/player/MessageManager.d.ts +116 -116
- package/definitions/game/game/entity/player/Player.d.ts +284 -286
- package/definitions/game/game/entity/player/PlayerDefense.d.ts +17 -17
- package/definitions/game/game/entity/player/PlayerManager.d.ts +58 -58
- package/definitions/game/game/entity/player/note/Corpse.d.ts +13 -13
- package/definitions/game/game/entity/player/note/NoteManager.d.ts +48 -48
- package/definitions/game/game/entity/player/quest/QuestManager.d.ts +94 -94
- package/definitions/game/game/entity/player/quest/Quests.d.ts +15 -15
- package/definitions/game/game/entity/player/quest/Requirements.d.ts +36 -36
- package/definitions/game/game/entity/player/quest/quest/Challenge.d.ts +47 -47
- package/definitions/game/game/entity/player/quest/quest/IQuest.d.ts +20 -20
- package/definitions/game/game/entity/player/quest/quest/Quest.d.ts +62 -62
- package/definitions/game/game/entity/player/quest/requirement/BuildRequirement.d.ts +15 -15
- package/definitions/game/game/entity/player/quest/requirement/CollectItemRequirement.d.ts +14 -14
- package/definitions/game/game/entity/player/quest/requirement/CraftRequirement.d.ts +16 -16
- package/definitions/game/game/entity/player/quest/requirement/DiscoverTreasureRequirement.d.ts +15 -15
- package/definitions/game/game/entity/player/quest/requirement/DismantleRequirement.d.ts +16 -16
- package/definitions/game/game/entity/player/quest/requirement/EquipRequirement.d.ts +15 -15
- package/definitions/game/game/entity/player/quest/requirement/IRequirement.d.ts +44 -44
- package/definitions/game/game/entity/player/quest/requirement/KillCreatureRequirement.d.ts +17 -17
- package/definitions/game/game/entity/player/quest/requirement/KillCreaturesRequirement.d.ts +16 -16
- package/definitions/game/game/entity/player/quest/requirement/LearnAnySkillRequirement.d.ts +13 -13
- package/definitions/game/game/entity/player/quest/requirement/LearnSkillRequirement.d.ts +14 -14
- package/definitions/game/game/entity/player/quest/requirement/LearnSkillsRequirement.d.ts +13 -13
- package/definitions/game/game/entity/player/quest/requirement/Requirement.d.ts +41 -41
- package/definitions/game/game/entity/player/quest/requirement/TameCreatureRequirement.d.ts +17 -17
- package/definitions/game/game/entity/player/quest/requirement/TameCreaturesRequirement.d.ts +16 -16
- package/definitions/game/game/entity/player/quest/requirement/helpers/IsCreatureKilledByHost.d.ts +15 -15
- package/definitions/game/game/entity/player/quest/requirement/helpers/IsItemMatch.d.ts +13 -13
- package/definitions/game/game/entity/skill/ISkills.d.ts +24 -24
- package/definitions/game/game/entity/skill/SkillManager.d.ts +88 -88
- package/definitions/game/game/entity/status/StatusEffect.d.ts +122 -122
- package/definitions/game/game/entity/status/handler/BadTemperatureEffect.d.ts +29 -29
- package/definitions/game/game/entity/status/handler/Bleeding.d.ts +23 -23
- package/definitions/game/game/entity/status/handler/Burned.d.ts +22 -22
- package/definitions/game/game/entity/status/handler/Dehydrated.d.ts +21 -21
- package/definitions/game/game/entity/status/handler/Encumbered.d.ts +27 -27
- package/definitions/game/game/entity/status/handler/Exhausted.d.ts +30 -30
- package/definitions/game/game/entity/status/handler/Freezing.d.ts +19 -19
- package/definitions/game/game/entity/status/handler/Frostbitten.d.ts +22 -22
- package/definitions/game/game/entity/status/handler/IBadTemperature.d.ts +17 -17
- package/definitions/game/game/entity/status/handler/IExhausted.d.ts +16 -16
- package/definitions/game/game/entity/status/handler/Overheating.d.ts +19 -19
- package/definitions/game/game/entity/status/handler/Poisoned.d.ts +22 -22
- package/definitions/game/game/entity/status/handler/Starving.d.ts +21 -21
- package/definitions/game/game/inspection/IInfoProvider.d.ts +38 -38
- package/definitions/game/game/inspection/IInspection.d.ts +44 -44
- package/definitions/game/game/inspection/InfoProvider.d.ts +135 -135
- package/definitions/game/game/inspection/InfoProviderContext.d.ts +21 -21
- package/definitions/game/game/inspection/Inspection.d.ts +36 -36
- package/definitions/game/game/inspection/InspectionTypeMap.d.ts +69 -69
- package/definitions/game/game/inspection/InspectionsHandler.d.ts +33 -33
- package/definitions/game/game/inspection/handlers/TilePositionInspection.d.ts +43 -43
- package/definitions/game/game/inspection/infoProviders/CollapsableInfoProvider.d.ts +34 -34
- package/definitions/game/game/inspection/infoProviders/ContainedItems.d.ts +28 -28
- package/definitions/game/game/inspection/infoProviders/Fire.d.ts +23 -23
- package/definitions/game/game/inspection/infoProviders/ILevel.d.ts +18 -18
- package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +46 -46
- package/definitions/game/game/inspection/infoProviders/LevelValue.d.ts +43 -43
- package/definitions/game/game/inspection/infoProviders/MagicalDamageReduction.d.ts +12 -12
- package/definitions/game/game/inspection/infoProviders/MagicalDamageRegeneration.d.ts +12 -12
- package/definitions/game/game/inspection/infoProviders/MagicalProperties.d.ts +28 -28
- package/definitions/game/game/inspection/infoProviders/MagicalPropertyValue.d.ts +74 -74
- package/definitions/game/game/inspection/infoProviders/ObscuredValue.d.ts +64 -64
- package/definitions/game/game/inspection/infoProviders/Quality.d.ts +27 -27
- package/definitions/game/game/inspection/infoProviders/UnlockableRowInfoProvider.d.ts +29 -29
- package/definitions/game/game/inspection/infoProviders/UseInfo.d.ts +75 -75
- package/definitions/game/game/inspection/infoProviders/Uses.d.ts +40 -40
- package/definitions/game/game/inspection/infoProviders/creature/Aberrant.d.ts +21 -21
- package/definitions/game/game/inspection/infoProviders/creature/CreatureHealth.d.ts +17 -17
- package/definitions/game/game/inspection/infoProviders/creature/Happiness.d.ts +22 -22
- package/definitions/game/game/inspection/infoProviders/creature/ResistancesAndVulnerabilities.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/doodad/DoodadCapacity.d.ts +20 -20
- package/definitions/game/game/inspection/infoProviders/doodad/DoodadDetails.d.ts +21 -21
- package/definitions/game/game/inspection/infoProviders/doodad/DoodadDurability.d.ts +23 -23
- package/definitions/game/game/inspection/infoProviders/doodad/DoodadUses.d.ts +21 -21
- package/definitions/game/game/inspection/infoProviders/doodad/Fertility.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/doodad/GrowthStage.d.ts +22 -22
- package/definitions/game/game/inspection/infoProviders/doodad/Harvestability.d.ts +26 -26
- package/definitions/game/game/inspection/infoProviders/doodad/IDurability.d.ts +16 -16
- package/definitions/game/game/inspection/infoProviders/doodad/StillWater.d.ts +23 -23
- package/definitions/game/game/inspection/infoProviders/entity/Health.d.ts +23 -23
- package/definitions/game/game/inspection/infoProviders/item/ItemDetails.d.ts +26 -26
- package/definitions/game/game/inspection/infoProviders/item/ItemDurability.d.ts +27 -27
- package/definitions/game/game/inspection/infoProviders/item/ItemProtected.d.ts +27 -27
- package/definitions/game/game/inspection/infoProviders/item/ItemUses.d.ts +173 -173
- package/definitions/game/game/inspection/infoProviders/item/ItemWeight.d.ts +22 -22
- package/definitions/game/game/inspection/infoProviders/item/ItemWorth.d.ts +24 -24
- package/definitions/game/game/inspection/infoProviders/item/MagicalSourceTooltip.d.ts +16 -16
- package/definitions/game/game/inspection/infoProviders/item/SkillSourceTooltip.d.ts +13 -13
- package/definitions/game/game/inspection/infoProviders/item/use/ItemBuildInfo.d.ts +37 -37
- package/definitions/game/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +35 -35
- package/definitions/game/game/inspection/infoProviders/item/use/ItemCraftInfo.d.ts +24 -24
- package/definitions/game/game/inspection/infoProviders/item/use/ItemDisassembleInfo.d.ts +27 -27
- package/definitions/game/game/inspection/infoProviders/item/use/ItemDismantleInfo.d.ts +44 -44
- package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +43 -43
- package/definitions/game/game/inspection/infoProviders/item/use/ItemOfferInfo.d.ts +24 -24
- package/definitions/game/game/inspection/infoProviders/item/use/ItemRangedInfo.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/item/use/ItemShootInfo.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/item/use/ItemStokeInfo.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/item/use/ItemTelescopyInfo.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/item/use/ItemThrowInfo.d.ts +15 -15
- package/definitions/game/game/inspection/infoProviders/item/use/ItemTrapDamageInfo.d.ts +25 -25
- package/definitions/game/game/inspection/infoProviders/recipe/AdditionalRequirements.d.ts +12 -12
- package/definitions/game/game/inspection/infoProviders/shared/SharedLightSourceInfo.d.ts +37 -37
- package/definitions/game/game/inspection/infoProviders/skill/MagicalItemBonuses.d.ts +22 -22
- package/definitions/game/game/inspection/infoProviders/stat/DefenseInfo.d.ts +24 -24
- package/definitions/game/game/inspection/inspections/CorpseInspection.d.ts +25 -25
- package/definitions/game/game/inspection/inspections/CorpsesInspection.d.ts +24 -24
- package/definitions/game/game/inspection/inspections/CreatureInspection.d.ts +26 -26
- package/definitions/game/game/inspection/inspections/DoodadInspection.d.ts +29 -29
- package/definitions/game/game/inspection/inspections/EntityInspection.d.ts +18 -18
- package/definitions/game/game/inspection/inspections/HumanInspection.d.ts +20 -20
- package/definitions/game/game/inspection/inspections/IslandInspection.d.ts +30 -30
- package/definitions/game/game/inspection/inspections/ItemInspection.d.ts +55 -55
- package/definitions/game/game/inspection/inspections/ItemsInspection.d.ts +29 -29
- package/definitions/game/game/inspection/inspections/ListInspection.d.ts +19 -19
- package/definitions/game/game/inspection/inspections/MilestoneInspection.d.ts +30 -30
- package/definitions/game/game/inspection/inspections/NPCInspection.d.ts +20 -19
- package/definitions/game/game/inspection/inspections/PlayerInspection.d.ts +24 -24
- package/definitions/game/game/inspection/inspections/RecipeInspection.d.ts +29 -29
- package/definitions/game/game/inspection/inspections/SelfInspection.d.ts +33 -33
- package/definitions/game/game/inspection/inspections/SkillInspection.d.ts +30 -30
- package/definitions/game/game/inspection/inspections/StatInspection.d.ts +24 -24
- package/definitions/game/game/inspection/inspections/TileEventInspection.d.ts +40 -40
- package/definitions/game/game/inspection/inspections/TileInspection.d.ts +27 -27
- package/definitions/game/game/island/IIsland.d.ts +124 -124
- package/definitions/game/game/island/Island.d.ts +287 -281
- package/definitions/game/game/island/IslandManager.d.ts +45 -45
- package/definitions/game/game/item/IItem.d.ts +1204 -1204
- package/definitions/game/game/item/IItemManager.d.ts +98 -72
- package/definitions/game/game/item/Item.d.ts +290 -291
- package/definitions/game/game/item/ItemManager.d.ts +270 -270
- package/definitions/game/game/item/ItemMapManager.d.ts +72 -72
- package/definitions/game/game/item/ItemRecipeRequirementChecker.d.ts +61 -61
- package/definitions/game/game/item/ItemReference.d.ts +38 -38
- package/definitions/game/game/item/ItemReferenceManager.d.ts +21 -21
- package/definitions/game/game/item/Items.d.ts +16 -16
- package/definitions/game/game/item/LootGroups.d.ts +25 -25
- package/definitions/game/game/item/recipe/Crafter.d.ts +93 -93
- package/definitions/game/game/item/recipe/Recipe.d.ts +50 -50
- package/definitions/game/game/item/recipe/RecipeOutput.d.ts +19 -19
- package/definitions/game/game/item/recipe/RecipeOutputs.d.ts +17 -17
- package/definitions/game/game/item/recipe/RecipeRegistry.d.ts +23 -23
- package/definitions/game/game/item/recipe/RecipeRequirement.d.ts +44 -44
- package/definitions/game/game/item/recipe/RecipeRequirements.d.ts +23 -23
- package/definitions/game/game/item/recipe/output/ItemOutput.d.ts +46 -46
- package/definitions/game/game/item/recipe/requirement/DoodadRequirement.d.ts +28 -28
- package/definitions/game/game/item/recipe/requirement/FireRequirement.d.ts +20 -20
- package/definitions/game/game/item/recipe/requirement/ItemRequirement.d.ts +82 -82
- package/definitions/game/game/item/recipe/requirement/ToolRequirement.d.ts +15 -15
- package/definitions/game/game/magic/MagicalPropertyManager.d.ts +232 -232
- package/definitions/game/game/magic/MagicalPropertyType.d.ts +58 -58
- package/definitions/game/game/mapgen/IMapGen.d.ts +72 -72
- package/definitions/game/game/mapgen/MapGen.d.ts +17 -17
- package/definitions/game/game/mapgen/MapGenHelpers.d.ts +265 -265
- package/definitions/game/game/mapgen/version/2.0.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.1.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.10.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.11.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.2.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.3.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.4.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.5.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.6.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.7.0.d.ts +16 -16
- package/definitions/game/game/mapgen/version/2.8.0.d.ts +24 -24
- package/definitions/game/game/mapgen/version/2.9.0.d.ts +16 -16
- package/definitions/game/game/mapping/Background.d.ts +20 -20
- package/definitions/game/game/mapping/DrawnMap.d.ts +145 -145
- package/definitions/game/game/mapping/IMapConfig.d.ts +23 -23
- package/definitions/game/game/mapping/IMapRender.d.ts +31 -31
- package/definitions/game/game/mapping/IMapTile.d.ts +55 -55
- package/definitions/game/game/mapping/MapSprites.d.ts +28 -28
- package/definitions/game/game/mapping/MapTileRenderStrategies.d.ts +14 -14
- package/definitions/game/game/mapping/Obfuscation.d.ts +19 -19
- package/definitions/game/game/mapping/SavedTilesSerializer.d.ts +19 -19
- package/definitions/game/game/mapping/strategies/Land.d.ts +12 -12
- package/definitions/game/game/mapping/strategies/Random2x2Strategy.d.ts +17 -17
- package/definitions/game/game/mapping/strategies/Wall.d.ts +33 -33
- package/definitions/game/game/mapping/strategies/Water.d.ts +12 -12
- package/definitions/game/game/meta/AutoSave.d.ts +16 -16
- package/definitions/game/game/meta/DedicatedServerManager.d.ts +18 -18
- package/definitions/game/game/meta/IAutoSave.d.ts +18 -18
- package/definitions/game/game/meta/Loading.d.ts +176 -176
- package/definitions/game/game/meta/SaveLoad.d.ts +40 -40
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +184 -184
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +129 -129
- package/definitions/game/game/meta/prompt/Prompts.d.ts +39 -39
- package/definitions/game/game/milestones/IMilestone.d.ts +108 -108
- package/definitions/game/game/milestones/MilestoneDefinition.d.ts +52 -52
- package/definitions/game/game/milestones/MilestoneManager.d.ts +53 -53
- package/definitions/game/game/milestones/Milestones.d.ts +15 -15
- package/definitions/game/game/options/GameOptions.d.ts +44 -44
- package/definitions/game/game/options/IGameOptions.d.ts +333 -333
- package/definitions/game/game/options/modifiers/GameplayModifier.d.ts +40 -40
- package/definitions/game/game/options/modifiers/GameplayModifiersManager.d.ts +34 -34
- package/definitions/game/game/options/modifiers/challenge/ChallengeModifier.d.ts +30 -30
- package/definitions/game/game/options/modifiers/challenge/ChallengeModifiers.d.ts +25 -25
- package/definitions/game/game/options/modifiers/challenge/IChallenge.d.ts +30 -30
- package/definitions/game/game/options/modifiers/challenge/modifiers/BenignityRate.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/EternalNight.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/HungerRate.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/MalignityRate.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/NoHealthRegeneration.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/NoStaminaRegeneration.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/NoStartingItems.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyBleeding.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyBurning.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/PermanentlyPoisoned.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/StartingMalignity.d.ts +16 -16
- package/definitions/game/game/options/modifiers/challenge/modifiers/ThirstRate.d.ts +16 -16
- package/definitions/game/game/options/modifiers/island/IslandModifier.d.ts +38 -38
- package/definitions/game/game/options/modifiers/island/IslandModifiers.d.ts +25 -25
- package/definitions/game/game/options/modifiers/island/modifiers/OverrunWithCreature.d.ts +17 -17
- package/definitions/game/game/options/modifiers/milestone/MilestoneModifier.d.ts +45 -45
- package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +26 -26
- package/definitions/game/game/options/modifiers/milestone/modifiers/Abnormalizer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Apocryphal.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Artificer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Benevolent.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Boundless.d.ts +18 -18
- package/definitions/game/game/options/modifiers/milestone/modifiers/Challenger.d.ts +22 -22
- package/definitions/game/game/options/modifiers/milestone/modifiers/Chef.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Collector.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Contender.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Crafter.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/DestroyerOfMagi.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Diverse.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Doctor.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/DragonSlayer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Explorer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Exterminator.d.ts +18 -18
- package/definitions/game/game/options/modifiers/milestone/modifiers/Friendly.d.ts +15 -15
- package/definitions/game/game/options/modifiers/milestone/modifiers/Gardener.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Gatherer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Grandmaster.d.ts +18 -18
- package/definitions/game/game/options/modifiers/milestone/modifiers/Helmsman.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Hunter.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Huntsman.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Locksmith.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Malevolent.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/MasterOfAll.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Merchant.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Multitasker.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Navigator.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Notekeeper.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Operator.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Pacifier.d.ts +15 -15
- package/definitions/game/game/options/modifiers/milestone/modifiers/Prepared.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Pulchritudinous.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/ReaperOfSouls.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Seafarer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Seasoned.d.ts +14 -14
- package/definitions/game/game/options/modifiers/milestone/modifiers/Survivor.d.ts +14 -14
- package/definitions/game/game/options/modifiers/milestone/modifiers/Talented.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Thrower.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Traitor.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Trapper.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/TreasureHunter.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Treasurer.d.ts +16 -16
- package/definitions/game/game/options/modifiers/milestone/modifiers/Weathered.d.ts +14 -14
- package/definitions/game/game/options/modifiers/milestone/modifiers/shared/StatBonusMilestoneModifier.d.ts +17 -17
- package/definitions/game/game/options/modifiers/milestone/modifiers/shared/TamedCreatureMilestoneModifier.d.ts +25 -25
- package/definitions/game/game/reference/IReferenceManager.d.ts +32 -32
- package/definitions/game/game/reference/ReferenceManager.d.ts +58 -58
- package/definitions/game/game/riddle/Riddle.d.ts +14 -14
- package/definitions/game/game/riddle/types/Treasure.d.ts +13 -13
- package/definitions/game/game/temperature/ITemperature.d.ts +106 -106
- package/definitions/game/game/temperature/TemperatureManager.d.ts +164 -164
- package/definitions/game/game/tile/ITerrain.d.ts +278 -278
- package/definitions/game/game/tile/ITileEvent.d.ts +110 -110
- package/definitions/game/game/tile/TerrainResources.d.ts +24 -24
- package/definitions/game/game/tile/TerrainTemplates.d.ts +13 -13
- package/definitions/game/game/tile/Terrains.d.ts +19 -19
- package/definitions/game/game/tile/TileEvent.d.ts +71 -71
- package/definitions/game/game/tile/TileEventManager.d.ts +81 -81
- package/definitions/game/game/tile/TileEvents.d.ts +14 -14
- package/definitions/game/game/tile/events/Acid.d.ts +12 -12
- package/definitions/game/game/tile/events/Blood.d.ts +13 -13
- package/definitions/game/game/tile/events/Excrement.d.ts +16 -16
- package/definitions/game/game/tile/events/Fire.d.ts +13 -13
- package/definitions/game/game/tile/events/Fungus.d.ts +13 -13
- package/definitions/game/game/tile/events/IFire.d.ts +39 -39
- package/definitions/game/game/tile/events/MeltingTile.d.ts +29 -29
- package/definitions/game/game/tile/events/Puddles.d.ts +22 -22
- package/definitions/game/game/tile/events/Tumbleweed.d.ts +13 -13
- package/definitions/game/game/time/ITimeManager.d.ts +47 -47
- package/definitions/game/game/time/TimeManager.d.ts +138 -138
- package/definitions/game/language/Dictionary.d.ts +107 -107
- package/definitions/game/language/DictionaryMap.d.ts +377 -377
- package/definitions/game/language/English.d.ts +13 -13
- package/definitions/game/language/ITranslation.d.ts +41 -41
- package/definitions/game/language/Language.d.ts +15 -15
- package/definitions/game/language/LanguageExtension.d.ts +14 -14
- package/definitions/game/language/LanguageJsonSchemaGenerator.d.ts +133 -133
- package/definitions/game/language/LanguageManager.d.ts +95 -95
- package/definitions/game/language/Translation.d.ts +127 -127
- package/definitions/game/language/TranslationsProvider.d.ts +53 -53
- package/definitions/game/language/dictionary/GameEndMessage.d.ts +14 -14
- package/definitions/game/language/dictionary/HumanName.d.ts +16 -16
- package/definitions/game/language/dictionary/InterruptChoice.d.ts +30 -30
- package/definitions/game/language/dictionary/Message.d.ts +899 -899
- package/definitions/game/language/dictionary/Misc.d.ts +129 -129
- package/definitions/game/language/dictionary/MultiplayerCompatibility.d.ts +16 -16
- package/definitions/game/language/dictionary/Note.d.ts +42 -42
- package/definitions/game/language/dictionary/UiTranslation.d.ts +786 -786
- package/definitions/game/language/english/DamageTypes.d.ts +13 -13
- package/definitions/game/language/english/Stats.d.ts +13 -13
- package/definitions/game/language/english/StatusEffects.d.ts +13 -13
- package/definitions/game/language/english/Terrains.d.ts +13 -13
- package/definitions/game/language/english/TileEvents.d.ts +13 -13
- package/definitions/game/language/english/creature/Corpses.d.ts +13 -13
- package/definitions/game/language/english/creature/Creatures.d.ts +13 -13
- package/definitions/game/language/english/doodad/DoodadGroups.d.ts +13 -13
- package/definitions/game/language/english/doodad/Doodads.d.ts +13 -13
- package/definitions/game/language/english/doodad/Growth.d.ts +12 -12
- package/definitions/game/language/english/doodad/GrowthFungus.d.ts +12 -12
- package/definitions/game/language/english/game/Actions.d.ts +13 -13
- package/definitions/game/language/english/game/Biomes.d.ts +13 -13
- package/definitions/game/language/english/game/Challenges.d.ts +13 -13
- package/definitions/game/language/english/game/Directions.d.ts +13 -13
- package/definitions/game/language/english/game/DurabilityLevels.d.ts +13 -13
- package/definitions/game/language/english/game/FireStages.d.ts +13 -13
- package/definitions/game/language/english/game/GameModes.d.ts +13 -13
- package/definitions/game/language/english/game/IslandModifiers.d.ts +13 -13
- package/definitions/game/language/english/game/MapQualities.d.ts +13 -13
- package/definitions/game/language/english/game/Messages.d.ts +13 -13
- package/definitions/game/language/english/game/PartsOfDay.d.ts +13 -13
- package/definitions/game/language/english/game/Qualities.d.ts +13 -13
- package/definitions/game/language/english/game/Riddles.d.ts +13 -13
- package/definitions/game/language/english/game/TemperatureTypes.d.ts +13 -13
- package/definitions/game/language/english/game/WorldLayers.d.ts +13 -13
- package/definitions/game/language/english/game/islandName/IslandName.d.ts +17 -17
- package/definitions/game/language/english/game/islandName/IslandNameBiomeDescriptors.d.ts +13 -13
- package/definitions/game/language/english/game/islandName/IslandNameModifierDescriptors.d.ts +13 -13
- package/definitions/game/language/english/game/islandName/IslandNameOverrunWithCreatureDescriptors.d.ts +13 -13
- package/definitions/game/language/english/item/Books.d.ts +13 -13
- package/definitions/game/language/english/item/CraftEfficacies.d.ts +13 -13
- package/definitions/game/language/english/item/ItemGroups.d.ts +13 -13
- package/definitions/game/language/english/item/Items.d.ts +13 -13
- package/definitions/game/language/english/item/MagicalPropertyTypes.d.ts +13 -13
- package/definitions/game/language/english/item/RecipeLevels.d.ts +13 -13
- package/definitions/game/language/english/misc/Commands.d.ts +13 -13
- package/definitions/game/language/english/misc/InspectTypes.d.ts +13 -13
- package/definitions/game/language/english/misc/MiscTranslations.d.ts +13 -13
- package/definitions/game/language/english/misc/ModProvides.d.ts +13 -13
- package/definitions/game/language/english/misc/ModTypes.d.ts +13 -13
- package/definitions/game/language/english/misc/Numbers.d.ts +55 -55
- package/definitions/game/language/english/misc/Sources.d.ts +13 -13
- package/definitions/game/language/english/npc/NPCs.d.ts +13 -13
- package/definitions/game/language/english/player/BadTemperatureLevels.d.ts +13 -13
- package/definitions/game/language/english/player/EquipEffects.d.ts +13 -13
- package/definitions/game/language/english/player/ExhaustionLevels.d.ts +13 -13
- package/definitions/game/language/english/player/Milestones.d.ts +14 -14
- package/definitions/game/language/english/player/Names.d.ts +13 -13
- package/definitions/game/language/english/player/Notes.d.ts +12 -12
- package/definitions/game/language/english/player/Skills.d.ts +13 -13
- package/definitions/game/language/english/player/Slot.d.ts +13 -13
- package/definitions/game/language/english/player/WeightStatuses.d.ts +13 -13
- package/definitions/game/language/english/player/quest/Quests.d.ts +13 -13
- package/definitions/game/language/english/player/quest/Requirements.d.ts +13 -13
- package/definitions/game/language/english/ui/AutoSaveOptions.d.ts +13 -13
- package/definitions/game/language/english/ui/BindableTypes.d.ts +13 -13
- package/definitions/game/language/english/ui/Bindables.d.ts +13 -13
- package/definitions/game/language/english/ui/ChangelogSections.d.ts +13 -13
- package/definitions/game/language/english/ui/Dialogs.d.ts +13 -13
- package/definitions/game/language/english/ui/DrawnMapThemes.d.ts +13 -13
- package/definitions/game/language/english/ui/GameEndMessages.d.ts +13 -13
- package/definitions/game/language/english/ui/HelpArticles.d.ts +13 -13
- package/definitions/game/language/english/ui/InfoDisplayLevels.d.ts +13 -13
- package/definitions/game/language/english/ui/Inputs.d.ts +12 -12
- package/definitions/game/language/english/ui/Levels.d.ts +13 -13
- package/definitions/game/language/english/ui/Macros.d.ts +12 -12
- package/definitions/game/language/english/ui/MenuBarButtons.d.ts +13 -13
- package/definitions/game/language/english/ui/MessagesDefaultFilters.d.ts +13 -13
- package/definitions/game/language/english/ui/MessagesTimestampModes.d.ts +13 -13
- package/definitions/game/language/english/ui/MilestoneModifierGroups.d.ts +13 -13
- package/definitions/game/language/english/ui/ModLoadErrors.d.ts +13 -13
- package/definitions/game/language/english/ui/MultiplayerCompatibilities.d.ts +13 -13
- package/definitions/game/language/english/ui/MusicPlaylists.d.ts +13 -13
- package/definitions/game/language/english/ui/PowerModes.d.ts +13 -13
- package/definitions/game/language/english/ui/TeamMemberResponsibilities.d.ts +13 -13
- package/definitions/game/language/english/ui/UiTranslations.d.ts +13 -13
- package/definitions/game/language/english/ui/UnlockedRecipesStrategies.d.ts +13 -13
- package/definitions/game/language/english/ui/Websites.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/InterruptChoices.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/Loading.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/ModLoadFailureReasons.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/MultiplayerDisconnectReasons.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/MultiplayerJoinServerRetryReason.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/MultiplayerUnableToJoinReason.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/Prompts.d.ts +13 -13
- package/definitions/game/language/english/ui/interrupt/SaveImportErrorReasons.d.ts +13 -13
- package/definitions/game/language/english/ui/quadrant/QuadrantComponentContextMenuActions.d.ts +13 -13
- package/definitions/game/language/english/ui/quadrant/QuadrantComponentMap.d.ts +21 -21
- package/definitions/game/language/english/ui/quadrant/QuadrantComponents.d.ts +13 -13
- package/definitions/game/language/english/ui/quadrant/UiQuadrants.d.ts +13 -13
- package/definitions/game/language/english/ui/sort/CharacterSorts.d.ts +13 -13
- package/definitions/game/language/english/ui/sort/HighscoreSorts.d.ts +13 -13
- package/definitions/game/language/english/ui/sort/ModSorts.d.ts +13 -13
- package/definitions/game/language/english/ui/sort/SaveSlotSorts.d.ts +13 -13
- package/definitions/game/language/impl/TranslationImpl.d.ts +115 -115
- package/definitions/game/language/segment/BindSegment.d.ts +13 -13
- package/definitions/game/language/segment/CapitalizationSegment.d.ts +20 -20
- package/definitions/game/language/segment/ColorSegment.d.ts +17 -17
- package/definitions/game/language/segment/FormatListSegment.d.ts +17 -17
- package/definitions/game/language/segment/HeadingSegment.d.ts +16 -16
- package/definitions/game/language/segment/InterpolateArgumentSegment.d.ts +13 -13
- package/definitions/game/language/segment/LinkSegment.d.ts +19 -19
- package/definitions/game/language/segment/ListSegment.d.ts +16 -16
- package/definitions/game/language/segment/NumberSegment.d.ts +27 -27
- package/definitions/game/language/segment/RandomizationSegment.d.ts +13 -13
- package/definitions/game/language/segment/ReformatSegment.d.ts +13 -13
- package/definitions/game/language/segment/Segments.d.ts +40 -40
- package/definitions/game/language/segment/TextDecorationSegments.d.ts +23 -23
- package/definitions/game/language/segment/TooltipSegment.d.ts +18 -18
- package/definitions/game/language/segment/TranslationSegment.d.ts +23 -23
- package/definitions/game/language/utility/TranslationSorter.d.ts +49 -49
- package/definitions/game/mod/BaseMod.d.ts +167 -167
- package/definitions/game/mod/IMod.d.ts +64 -64
- package/definitions/game/mod/IModInfo.d.ts +98 -98
- package/definitions/game/mod/IModManager.d.ts +44 -44
- package/definitions/game/mod/InterModRegistry.d.ts +21 -21
- package/definitions/game/mod/InterModRegistryManager.d.ts +20 -20
- package/definitions/game/mod/Mod.d.ts +101 -101
- package/definitions/game/mod/ModManager.d.ts +121 -121
- package/definitions/game/mod/ModRegistry.d.ts +715 -715
- package/definitions/game/multiplayer/IMultiplayer.d.ts +211 -208
- package/definitions/game/multiplayer/Multiplayer.d.ts +197 -197
- package/definitions/game/multiplayer/dedicatedServer/ssh/DefaultShell.d.ts +34 -34
- package/definitions/game/multiplayer/dedicatedServer/ssh/ISsh.d.ts +27 -26
- package/definitions/game/multiplayer/dedicatedServer/ssh/ISshCommand.d.ts +52 -52
- package/definitions/game/multiplayer/dedicatedServer/ssh/ISshCommandManager.d.ts +16 -16
- package/definitions/game/multiplayer/dedicatedServer/ssh/ISshShell.d.ts +20 -20
- package/definitions/game/multiplayer/dedicatedServer/ssh/Shell.d.ts +47 -47
- package/definitions/game/multiplayer/dedicatedServer/ssh/SshCommand.d.ts +27 -27
- package/definitions/game/multiplayer/dedicatedServer/ssh/SshCommandManager.d.ts +23 -23
- package/definitions/game/multiplayer/dedicatedServer/ssh/SshServer.d.ts +24 -23
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Backup.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Ban.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Chat.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/End.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Exit.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Help.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Kick.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Load.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Ls.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Motd.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/New.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Save.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Send.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Shutdown.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Status.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Sync.d.ts +14 -14
- package/definitions/game/multiplayer/dedicatedServer/ssh/commands/Unban.d.ts +14 -14
- package/definitions/game/multiplayer/matchmaking/IMatchmaking.d.ts +96 -96
- package/definitions/game/multiplayer/matchmaking/Matchmaking.d.ts +25 -25
- package/definitions/game/multiplayer/networking/Connection.d.ts +83 -83
- package/definitions/game/multiplayer/networking/IConnection.d.ts +74 -74
- package/definitions/game/multiplayer/networking/SmartConnection.d.ts +46 -46
- package/definitions/game/multiplayer/networking/SteamNetworkConnection.d.ts +36 -36
- package/definitions/game/multiplayer/networking/WebRTCConnection.d.ts +34 -34
- package/definitions/game/multiplayer/networking/WebSocketConnection.d.ts +25 -25
- package/definitions/game/multiplayer/packets/BasePacket.d.ts +100 -100
- package/definitions/game/multiplayer/packets/ClientPacket.d.ts +15 -15
- package/definitions/game/multiplayer/packets/EntityTargetedSharedPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/IPacket.d.ts +63 -63
- package/definitions/game/multiplayer/packets/IndexedPacket.d.ts +77 -77
- package/definitions/game/multiplayer/packets/Packet.d.ts +40 -40
- package/definitions/game/multiplayer/packets/Packets.d.ts +18 -18
- package/definitions/game/multiplayer/packets/PlayerTargetedClientPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/PlayerTargetedPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/PlayerTargetedServerPacket.d.ts +16 -16
- package/definitions/game/multiplayer/packets/PlayerTargetedSharedPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/ServerPacket.d.ts +15 -15
- package/definitions/game/multiplayer/packets/SharedPacket.d.ts +15 -15
- package/definitions/game/multiplayer/packets/client/AddPlayerPacket.d.ts +17 -17
- package/definitions/game/multiplayer/packets/client/CaughtUpPacket.d.ts +19 -19
- package/definitions/game/multiplayer/packets/client/ClearSyncPacketWaitingPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/client/DisplayInterruptPacket.d.ts +19 -19
- package/definitions/game/multiplayer/packets/client/EmitPlayerEventPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/client/HideLoadingScreenPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/client/LoadIslandPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/client/PausePacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/client/PongPacket.d.ts +16 -16
- package/definitions/game/multiplayer/packets/client/ReadyPlayerPacket.d.ts +15 -15
- package/definitions/game/multiplayer/packets/client/RemovePlayerPacket.d.ts +17 -17
- package/definitions/game/multiplayer/packets/client/SendMessagePacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/client/SetPlayerZPacket.d.ts +16 -16
- package/definitions/game/multiplayer/packets/client/ShowLoadingScreenPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/client/SynchronizeGameStatePacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/client/SynchronizeStatesPacket.d.ts +17 -17
- package/definitions/game/multiplayer/packets/client/TickPacket.d.ts +17 -17
- package/definitions/game/multiplayer/packets/client/WorldPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/server/AddMessageHistoryPacket.d.ts +19 -19
- package/definitions/game/multiplayer/packets/server/ConnectPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/server/ConnectedPacket.d.ts +22 -22
- package/definitions/game/multiplayer/packets/server/DesyncPacket.d.ts +27 -27
- package/definitions/game/multiplayer/packets/server/KeepAlivePacket.d.ts +21 -21
- package/definitions/game/multiplayer/packets/server/LogsPacket.d.ts +19 -0
- package/definitions/game/multiplayer/packets/server/PingPacket.d.ts +17 -17
- package/definitions/game/multiplayer/packets/server/ReadyPacket.d.ts +22 -22
- package/definitions/game/multiplayer/packets/server/UiDataUpdatePacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/server/UpdateDialogInfoPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/server/UpdateMovementIntentPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/server/UpdateQuickSlotInfoPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/shared/ActionPacket.d.ts +27 -27
- package/definitions/game/multiplayer/packets/shared/ChatMessagePacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/shared/DisconnectPacket.d.ts +19 -19
- package/definitions/game/multiplayer/packets/shared/DiscoverRecipePacket.d.ts +21 -21
- package/definitions/game/multiplayer/packets/shared/LogsPacket.d.ts +20 -20
- package/definitions/game/multiplayer/packets/shared/MarkAsExploredPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/shared/UpdateMovementIntentPacket.d.ts +18 -0
- package/definitions/game/multiplayer/packets/shared/UpdateMultiplayerOptionsPacket.d.ts +18 -18
- package/definitions/game/multiplayer/packets/shared/UpdateWalkPathPacket.d.ts +20 -20
- package/definitions/game/renderer/CompiledProgram.d.ts +30 -30
- package/definitions/game/renderer/Decorations.d.ts +83 -83
- package/definitions/game/renderer/IRenderer.d.ts +107 -106
- package/definitions/game/renderer/ISpriteInfo.d.ts +20 -20
- package/definitions/game/renderer/ITextureDebugRenderer.d.ts +14 -14
- package/definitions/game/renderer/Overlays.d.ts +16 -16
- package/definitions/game/renderer/Renderer.d.ts +81 -81
- package/definitions/game/renderer/RendererConstants.d.ts +19 -19
- package/definitions/game/renderer/Shaders.d.ts +13 -13
- package/definitions/game/renderer/StatusEffectRenderer.d.ts +71 -71
- package/definitions/game/renderer/WebGlContext.d.ts +40 -40
- package/definitions/game/renderer/context/BaseRendererContext.d.ts +18 -18
- package/definitions/game/renderer/context/RendererContext.d.ts +22 -22
- package/definitions/game/renderer/context/RendererOrigin.d.ts +60 -59
- package/definitions/game/renderer/exploreMap/ByteGrid.d.ts +22 -22
- package/definitions/game/renderer/exploreMap/ExploreMap.d.ts +22 -22
- package/definitions/game/renderer/fieldOfView/FieldOfView.d.ts +85 -84
- package/definitions/game/renderer/fieldOfView/FieldOfViewDebugRenderer.d.ts +23 -23
- package/definitions/game/renderer/fieldOfView/IByteGrid.d.ts +21 -21
- package/definitions/game/renderer/fieldOfView/IFieldOfView.d.ts +25 -25
- package/definitions/game/renderer/notifier/INotifier.d.ts +50 -49
- package/definitions/game/renderer/notifier/Notifier.d.ts +45 -45
- package/definitions/game/renderer/particle/IParticle.d.ts +16 -16
- package/definitions/game/renderer/particle/Particle.d.ts +41 -41
- package/definitions/game/renderer/particle/Particles.d.ts +14 -14
- package/definitions/game/renderer/spriteBatch/ISpriteBatch.d.ts +13 -13
- package/definitions/game/renderer/spriteBatch/SpriteBatch.d.ts +40 -40
- package/definitions/game/renderer/tile/TerrainTileInfo.d.ts +67 -67
- package/definitions/game/renderer/tile/TileAdaptors.d.ts +45 -45
- package/definitions/game/renderer/tile/TileLayer.d.ts +61 -61
- package/definitions/game/renderer/tile/adaptors/Default.d.ts +21 -21
- package/definitions/game/renderer/tile/adaptors/Fence.d.ts +18 -18
- package/definitions/game/renderer/tile/adaptors/Floor.d.ts +18 -18
- package/definitions/game/renderer/tile/adaptors/Lava.d.ts +18 -18
- package/definitions/game/renderer/tile/adaptors/Mountain.d.ts +20 -20
- package/definitions/game/renderer/tile/adaptors/MountainGround.d.ts +18 -18
- package/definitions/game/renderer/tile/adaptors/Till.d.ts +17 -17
- package/definitions/game/renderer/tile/adaptors/Wall.d.ts +18 -18
- package/definitions/game/renderer/tile/adaptors/Water.d.ts +19 -19
- package/definitions/game/renderer/tile/atlas/ITileAtlas.d.ts +52 -52
- package/definitions/game/renderer/tile/atlas/TileAtlas.d.ts +58 -58
- package/definitions/game/renderer/world/IWorldLayer.d.ts +41 -41
- package/definitions/game/renderer/world/IWorldRenderer.d.ts +54 -54
- package/definitions/game/renderer/world/World.d.ts +41 -41
- package/definitions/game/renderer/world/WorldLayer.d.ts +52 -52
- package/definitions/game/renderer/world/WorldLayerRenderer.d.ts +82 -82
- package/definitions/game/renderer/world/WorldRenderer.d.ts +225 -225
- package/definitions/game/replay/IReplayLogEntry.d.ts +28 -28
- package/definitions/game/replay/ReplayLogEntry.d.ts +31 -31
- package/definitions/game/replay/ReplayManager.d.ts +43 -43
- package/definitions/game/resource/IResourceLoader.d.ts +56 -56
- package/definitions/game/resource/IResourcePath.d.ts +22 -22
- package/definitions/game/resource/ISpriteAtlas.d.ts +12 -12
- package/definitions/game/resource/ImageOverrides.d.ts +15 -15
- package/definitions/game/resource/ResourceLoader.d.ts +77 -77
- package/definitions/game/resource/ResourcePath.d.ts +66 -66
- package/definitions/game/resource/SpriteAtlas.d.ts +36 -36
- package/definitions/game/resource/SpriteInfo.d.ts +21 -21
- package/definitions/game/resource/SpritePack.d.ts +23 -23
- package/definitions/game/resource/SpritePacker.d.ts +50 -50
- package/definitions/game/save/ISaveManager.d.ts +90 -90
- package/definitions/game/save/SaveManager.d.ts +135 -135
- package/definitions/game/save/clientStore/ClientData.d.ts +15 -15
- package/definitions/game/save/clientStore/ClientStore.d.ts +20 -20
- package/definitions/game/save/clientStore/IClientStore.d.ts +25 -25
- package/definitions/game/save/clientStore/clientData/ExploredMap.d.ts +23 -23
- package/definitions/game/save/clientStore/clientData/UiData.d.ts +19 -19
- package/definitions/game/save/data/ISaveDataGlobal.d.ts +152 -152
- package/definitions/game/save/data/SaveData.d.ts +42 -42
- package/definitions/game/save/data/SaveDataGlobal.d.ts +53 -53
- package/definitions/game/save/datastorage/FileDataStorage.d.ts +29 -29
- package/definitions/game/save/datastorage/IAsyncDataStorage.d.ts +23 -23
- package/definitions/game/save/datastorage/IDataStorage.d.ts +16 -16
- package/definitions/game/save/datastorage/IndexedDbDataStorage.d.ts +40 -40
- package/definitions/game/save/datastorage/LocalStorageDataStorage.d.ts +29 -29
- package/definitions/game/save/serializer/ISerializer.d.ts +146 -146
- package/definitions/game/save/serializer/IStringTokenizer.d.ts +12 -12
- package/definitions/game/save/serializer/PropertiesToSerialize.d.ts +19 -19
- package/definitions/game/save/serializer/Serializer.d.ts +67 -67
- package/definitions/game/save/serializer/StringTokenizer.d.ts +44 -44
- package/definitions/game/save/upgrade/UpgradeGame.d.ts +11 -11
- package/definitions/game/save/upgrade/UpgradeIsland.d.ts +16 -16
- package/definitions/game/save/upgrade/UpgradePlayer.d.ts +17 -17
- package/definitions/game/save/upgrade/UpgradeSaveDataGlobal.d.ts +12 -12
- package/definitions/game/steamworks/ISteamworks.d.ts +43 -43
- package/definitions/game/steamworks/Steamworks.d.ts +192 -192
- package/definitions/game/typings/jquery.d.ts +2960 -2960
- package/definitions/game/typings/jqueryui.d.ts +1618 -1618
- package/definitions/game/ui/IUi.d.ts +47 -47
- package/definitions/game/ui/LoadingBridge.d.ts +22 -22
- package/definitions/game/ui/PromptsBridge.d.ts +28 -28
- package/definitions/game/ui/SaveDropHandler.d.ts +33 -33
- package/definitions/game/ui/ServerJoinHandler.d.ts +17 -17
- package/definitions/game/ui/Ui.d.ts +100 -100
- package/definitions/game/ui/UiExperiments.d.ts +24 -24
- package/definitions/game/ui/component/Article.d.ts +14 -14
- package/definitions/game/ui/component/Block.d.ts +18 -18
- package/definitions/game/ui/component/BlockRow.d.ts +20 -20
- package/definitions/game/ui/component/Button.d.ts +42 -42
- package/definitions/game/ui/component/CheckButton.d.ts +39 -39
- package/definitions/game/ui/component/CheckButtonRange.d.ts +35 -35
- package/definitions/game/ui/component/ChoiceList.d.ts +48 -48
- package/definitions/game/ui/component/Component.d.ts +332 -332
- package/definitions/game/ui/component/ContextMenu.d.ts +67 -67
- package/definitions/game/ui/component/Details.d.ts +27 -27
- package/definitions/game/ui/component/Divider.d.ts +14 -14
- package/definitions/game/ui/component/Dropdown.d.ts +80 -80
- package/definitions/game/ui/component/EnableDisableAllRow.d.ts +21 -21
- package/definitions/game/ui/component/EnumContextMenu.d.ts +27 -27
- package/definitions/game/ui/component/FilterRow.d.ts +14 -14
- package/definitions/game/ui/component/GameIcons.d.ts +57 -57
- package/definitions/game/ui/component/GroupDropdown.d.ts +48 -48
- package/definitions/game/ui/component/HorizontalLine.d.ts +14 -14
- package/definitions/game/ui/component/IComponent.d.ts +124 -124
- package/definitions/game/ui/component/IThreeStateButton.d.ts +19 -19
- package/definitions/game/ui/component/Input.d.ts +91 -91
- package/definitions/game/ui/component/InputButton.d.ts +34 -34
- package/definitions/game/ui/component/InputRow.d.ts +31 -31
- package/definitions/game/ui/component/LabelledRow.d.ts +22 -22
- package/definitions/game/ui/component/Lightbox.d.ts +26 -26
- package/definitions/game/ui/component/List.d.ts +22 -22
- package/definitions/game/ui/component/RangeInput.d.ts +47 -47
- package/definitions/game/ui/component/RangeInputValueDisplay.d.ts +18 -18
- package/definitions/game/ui/component/RangeRow.d.ts +41 -41
- package/definitions/game/ui/component/Refreshable.d.ts +16 -16
- package/definitions/game/ui/component/RowSection.d.ts +14 -14
- package/definitions/game/ui/component/SortRow.d.ts +44 -44
- package/definitions/game/ui/component/Text.d.ts +76 -76
- package/definitions/game/ui/component/Textarea.d.ts +14 -14
- package/definitions/game/ui/component/ThreeStateButton.d.ts +46 -46
- package/definitions/game/ui/component/WarningRow.d.ts +24 -24
- package/definitions/game/ui/component/dropdown/CorpseDropdown.d.ts +17 -17
- package/definitions/game/ui/component/dropdown/CreatureDropdown.d.ts +16 -16
- package/definitions/game/ui/component/dropdown/DoodadDropdown.d.ts +19 -19
- package/definitions/game/ui/component/dropdown/EnumDropdown.d.ts +28 -28
- package/definitions/game/ui/component/dropdown/IslandDropdown.d.ts +23 -23
- package/definitions/game/ui/component/dropdown/ItemDropdown.d.ts +20 -20
- package/definitions/game/ui/component/dropdown/NPCDropdown.d.ts +16 -16
- package/definitions/game/ui/component/dropdown/PlayerDropdown.d.ts +17 -17
- package/definitions/game/ui/component/dropdown/SkillDropdown.d.ts +17 -17
- package/definitions/game/ui/component/dropdown/TerrainDropdown.d.ts +16 -16
- package/definitions/game/ui/component/dropdown/TileEventDropdown.d.ts +17 -17
- package/definitions/game/ui/input/Bind.d.ts +162 -162
- package/definitions/game/ui/input/Bindable.d.ts +150 -150
- package/definitions/game/ui/input/Bindables.d.ts +18 -18
- package/definitions/game/ui/input/Bindings.d.ts +32 -32
- package/definitions/game/ui/input/Defaults.d.ts +14 -14
- package/definitions/game/ui/input/IInput.d.ts +73 -73
- package/definitions/game/ui/input/InputManager.d.ts +142 -142
- package/definitions/game/ui/input/Macros.d.ts +24 -24
- package/definitions/game/ui/old/IOldUi.d.ts +86 -86
- package/definitions/game/ui/old/OldUi.d.ts +77 -77
- package/definitions/game/ui/old/functional/FunctionalSortable.d.ts +37 -37
- package/definitions/game/ui/old/functional/FunctionalTooltip.d.ts +11 -11
- package/definitions/game/ui/old/functional/IFunctionalSortable.d.ts +51 -51
- package/definitions/game/ui/old/functional/IFunctionalTooltip.d.ts +37 -37
- package/definitions/game/ui/old/screens/BaseScreen.d.ts +32 -32
- package/definitions/game/ui/old/screens/InGameScreen.d.ts +275 -275
- package/definitions/game/ui/screen/IScreen.d.ts +35 -35
- package/definitions/game/ui/screen/Screen.d.ts +66 -66
- package/definitions/game/ui/screen/ScreenManager.d.ts +96 -96
- package/definitions/game/ui/screen/ScreenMap.d.ts +27 -27
- package/definitions/game/ui/screen/screens/GameScreen.d.ts +136 -136
- package/definitions/game/ui/screen/screens/InterruptScreen.d.ts +22 -22
- package/definitions/game/ui/screen/screens/MainMenuScreen.d.ts +15 -15
- package/definitions/game/ui/screen/screens/SplashScreen.d.ts +19 -19
- package/definitions/game/ui/screen/screens/game/DialogManager.d.ts +31 -31
- package/definitions/game/ui/screen/screens/game/DialogMap.d.ts +40 -40
- package/definitions/game/ui/screen/screens/game/Dialogs.d.ts +54 -54
- package/definitions/game/ui/screen/screens/game/IGameScreenApi.d.ts +42 -42
- package/definitions/game/ui/screen/screens/game/IMessages.d.ts +24 -24
- package/definitions/game/ui/screen/screens/game/InspectionHandlers.d.ts +16 -16
- package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +40 -40
- package/definitions/game/ui/screen/screens/game/ReferenceTooltipHandler.d.ts +32 -32
- package/definitions/game/ui/screen/screens/game/WorldTooltipHandler.d.ts +19 -19
- package/definitions/game/ui/screen/screens/game/component/CanvasDialog.d.ts +114 -114
- package/definitions/game/ui/screen/screens/game/component/Dialog.d.ts +304 -304
- package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +49 -49
- package/definitions/game/ui/screen/screens/game/component/IQuadrantComponent.d.ts +27 -27
- package/definitions/game/ui/screen/screens/game/component/InspectionsList.d.ts +48 -48
- package/definitions/game/ui/screen/screens/game/component/Item.d.ts +16 -16
- package/definitions/game/ui/screen/screens/game/component/PrerenderedCanvasDialog.d.ts +18 -18
- package/definitions/game/ui/screen/screens/game/component/QuadrantComponent.d.ts +77 -77
- package/definitions/game/ui/screen/screens/game/component/QuadrantComponentContextMenuAction.d.ts +10 -10
- package/definitions/game/ui/screen/screens/game/component/StaticComponent.d.ts +14 -14
- package/definitions/game/ui/screen/screens/game/component/TabDialog.d.ts +62 -62
- package/definitions/game/ui/screen/screens/game/component/TabDialogPanel.d.ts +24 -24
- package/definitions/game/ui/screen/screens/game/component/TileInspectionsList.d.ts +23 -23
- package/definitions/game/ui/screen/screens/game/dialog/BookDialog.d.ts +26 -26
- package/definitions/game/ui/screen/screens/game/dialog/CraftingDialog.d.ts +28 -28
- package/definitions/game/ui/screen/screens/game/dialog/InspectDialog.d.ts +33 -33
- package/definitions/game/ui/screen/screens/game/dialog/IslandsDialog.d.ts +65 -65
- package/definitions/game/ui/screen/screens/game/dialog/MapDialog.d.ts +53 -53
- package/definitions/game/ui/screen/screens/game/dialog/MessagesDialog.d.ts +18 -18
- package/definitions/game/ui/screen/screens/game/dialog/MessagesEditFiltersDialog.d.ts +34 -34
- package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +22 -22
- package/definitions/game/ui/screen/screens/game/dialog/NotesDialog.d.ts +38 -38
- package/definitions/game/ui/screen/screens/game/dialog/QuestDialog.d.ts +35 -35
- package/definitions/game/ui/screen/screens/game/dialog/QuickSettingsDialog.d.ts +18 -18
- package/definitions/game/ui/screen/screens/game/dialog/SkillsDialog.d.ts +26 -26
- package/definitions/game/ui/screen/screens/game/dialog/crafting/RecipeButton.d.ts +21 -21
- package/definitions/game/ui/screen/screens/game/dialog/crafting/RecipeCache.d.ts +32 -32
- package/definitions/game/ui/screen/screens/game/dialog/islands/IIslandsDialog.d.ts +23 -23
- package/definitions/game/ui/screen/screens/game/static/MenuBar.d.ts +42 -42
- package/definitions/game/ui/screen/screens/game/static/Messages.d.ts +133 -133
- package/definitions/game/ui/screen/screens/game/static/Placeholder.d.ts +20 -20
- package/definitions/game/ui/screen/screens/game/static/Quickslots.d.ts +20 -20
- package/definitions/game/ui/screen/screens/game/static/Stats.d.ts +42 -42
- package/definitions/game/ui/screen/screens/game/static/menubar/IMenuBarButton.d.ts +83 -83
- package/definitions/game/ui/screen/screens/game/static/menubar/MenuBarButton.d.ts +22 -22
- package/definitions/game/ui/screen/screens/game/static/menubar/MenuBarButtonDescriptions.d.ts +14 -14
- package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/IslandsButtonDescription.d.ts +30 -30
- package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/NotesButtonDescription.d.ts +26 -26
- package/definitions/game/ui/screen/screens/game/static/menubar/descriptions/QuestsButtonDescription.d.ts +10 -10
- package/definitions/game/ui/screen/screens/game/static/stats/Attack.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/static/stats/Defense.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/static/stats/IStatDisplayDescription.d.ts +53 -53
- package/definitions/game/ui/screen/screens/game/static/stats/Reputation.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/static/stats/StatDisplayDescriptions.d.ts +38 -38
- package/definitions/game/ui/screen/screens/game/static/stats/component/Stat.d.ts +98 -98
- package/definitions/game/ui/screen/screens/game/static/stats/component/StatusEffects.d.ts +27 -27
- package/definitions/game/ui/screen/screens/game/util/item/ItemStylesheet.d.ts +27 -27
- package/definitions/game/ui/screen/screens/game/util/item/SpriteGlow.d.ts +31 -31
- package/definitions/game/ui/screen/screens/game/util/movement/MovementHandler.d.ts +58 -58
- package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayArrows.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayFootPrints.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/util/movement/PathOverlayWalkDots.d.ts +13 -13
- package/definitions/game/ui/screen/screens/game/util/movement/WalkToTileHandler.d.ts +78 -78
- package/definitions/game/ui/screen/screens/menu/MenuManager.d.ts +53 -53
- package/definitions/game/ui/screen/screens/menu/MenuMap.d.ts +49 -49
- package/definitions/game/ui/screen/screens/menu/component/ChoiceListTurnModes.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/component/HighscoreRow.d.ts +35 -35
- package/definitions/game/ui/screen/screens/menu/component/IMenu.d.ts +35 -35
- package/definitions/game/ui/screen/screens/menu/component/Menu.d.ts +102 -102
- package/definitions/game/ui/screen/screens/menu/component/MilestoneModifierCheckButton.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/component/MilestoneModifiers.d.ts +28 -28
- package/definitions/game/ui/screen/screens/menu/component/MilestonesNotUnlockableWarning.d.ts +19 -19
- package/definitions/game/ui/screen/screens/menu/component/SelectionHandler.d.ts +43 -43
- package/definitions/game/ui/screen/screens/menu/component/Spacer.d.ts +14 -14
- package/definitions/game/ui/screen/screens/menu/menus/CharacterSelectionMenu.d.ts +25 -25
- package/definitions/game/ui/screen/screens/menu/menus/GameEndMenu.d.ts +32 -32
- package/definitions/game/ui/screen/screens/menu/menus/HelpArticle.d.ts +16 -16
- package/definitions/game/ui/screen/screens/menu/menus/HelpMenu.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/HighscoresMenu.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/InterruptMenu.d.ts +51 -51
- package/definitions/game/ui/screen/screens/menu/menus/JoinServerChooseModifiersMenu.d.ts +21 -21
- package/definitions/game/ui/screen/screens/menu/menus/JoinServerMenu.d.ts +24 -24
- package/definitions/game/ui/screen/screens/menu/menus/LoadGameMenu.d.ts +39 -39
- package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +43 -43
- package/definitions/game/ui/screen/screens/menu/menus/MilestoneModifiersMenu.d.ts +32 -32
- package/definitions/game/ui/screen/screens/menu/menus/ModsMenu.d.ts +54 -54
- package/definitions/game/ui/screen/screens/menu/menus/MultiplayerMenu.d.ts +28 -28
- package/definitions/game/ui/screen/screens/menu/menus/NewGameMenu.d.ts +44 -44
- package/definitions/game/ui/screen/screens/menu/menus/OptionsMenu.d.ts +17 -17
- package/definitions/game/ui/screen/screens/menu/menus/PauseMenu.d.ts +45 -45
- package/definitions/game/ui/screen/screens/menu/menus/character/Character.d.ts +20 -20
- package/definitions/game/ui/screen/screens/menu/menus/character/CharacterButton.d.ts +25 -25
- package/definitions/game/ui/screen/screens/menu/menus/character/CharacterCreationMenu.d.ts +37 -37
- package/definitions/game/ui/screen/screens/menu/menus/character/CharacterPreview.d.ts +43 -43
- package/definitions/game/ui/screen/screens/menu/menus/character/HairstyleChoice.d.ts +33 -33
- package/definitions/game/ui/screen/screens/menu/menus/character/Swatch.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/help/HelpArticleDescriptions.d.ts +55 -55
- package/definitions/game/ui/screen/screens/menu/menus/highscores/IHighscoresMenu.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/loadgame/SaveSlot.d.ts +82 -82
- package/definitions/game/ui/screen/screens/menu/menus/main/AboutMenu.d.ts +14 -14
- package/definitions/game/ui/screen/screens/menu/menus/main/ChangelogMenu.d.ts +32 -32
- package/definitions/game/ui/screen/screens/menu/menus/main/IAbout.d.ts +39 -39
- package/definitions/game/ui/screen/screens/menu/menus/main/NewsMenu.d.ts +32 -32
- package/definitions/game/ui/screen/screens/menu/menus/main/component/IWebsite.d.ts +21 -21
- package/definitions/game/ui/screen/screens/menu/menus/main/component/SocialRow.d.ts +14 -14
- package/definitions/game/ui/screen/screens/menu/menus/mods/EditInternalModsMenu.d.ts +17 -17
- package/definitions/game/ui/screen/screens/menu/menus/mods/IModsMenu.d.ts +17 -17
- package/definitions/game/ui/screen/screens/menu/menus/mods/ModButtonInserter.d.ts +28 -28
- package/definitions/game/ui/screen/screens/menu/menus/mods/ModInfoMenu.d.ts +26 -26
- package/definitions/game/ui/screen/screens/menu/menus/mods/ModMetadataInserter.d.ts +21 -21
- package/definitions/game/ui/screen/screens/menu/menus/mods/ModRow.d.ts +33 -33
- package/definitions/game/ui/screen/screens/menu/menus/multiplayer/ServerRow.d.ts +39 -39
- package/definitions/game/ui/screen/screens/menu/menus/newgame/CustomGameOptionsMenu.d.ts +25 -25
- package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +43 -43
- package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameplayModifiers.d.ts +26 -26
- package/definitions/game/ui/screen/screens/menu/menus/newgame/TabMultiplayer.d.ts +32 -32
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/CustomGameOptionsTab.d.ts +28 -28
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/Multiplier.d.ts +12 -12
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabCreatures.d.ts +24 -24
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabGeneral.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabInventory.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabIsland.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabReputation.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabSkills.d.ts +23 -23
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStats.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStatusEffects.d.ts +15 -15
- package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTime.d.ts +28 -28
- package/definitions/game/ui/screen/screens/menu/menus/options/BindRow.d.ts +48 -48
- package/definitions/game/ui/screen/screens/menu/menus/options/BindingsMenu.d.ts +23 -23
- package/definitions/game/ui/screen/screens/menu/menus/options/IOptionsTabs.d.ts +23 -23
- package/definitions/game/ui/screen/screens/menu/menus/options/TabAudio.d.ts +23 -23
- package/definitions/game/ui/screen/screens/menu/menus/options/TabControls.d.ts +18 -18
- package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +39 -39
- package/definitions/game/ui/screen/screens/menu/menus/options/TabGameplay.d.ts +20 -20
- package/definitions/game/ui/screen/screens/menu/menus/options/TabLanguage.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/options/TabMods.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/options/TabOther.d.ts +18 -18
- package/definitions/game/ui/screen/screens/menu/menus/options/TabPerformance.d.ts +22 -22
- package/definitions/game/ui/screen/screens/menu/menus/options/TabSaveData.d.ts +34 -34
- package/definitions/game/ui/screen/screens/menu/menus/options/TabTooltips.d.ts +19 -19
- package/definitions/game/ui/screen/screens/menu/menus/options/TabVideo.d.ts +25 -25
- package/definitions/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons.d.ts +40 -40
- package/definitions/game/ui/screen/screens/menu/menus/pause/ModesMenu.d.ts +21 -21
- package/definitions/game/ui/screen/screens/menu/menus/pause/MultiplayerOptionsMenu.d.ts +42 -42
- package/definitions/game/ui/tooltip/Tooltip.d.ts +49 -49
- package/definitions/game/ui/tooltip/TooltipManager.d.ts +41 -41
- package/definitions/game/ui/util/ComponentManipulator.d.ts +106 -106
- package/definitions/game/ui/util/Draggable.d.ts +35 -35
- package/definitions/game/ui/util/HighlightManager.d.ts +39 -39
- package/definitions/game/ui/util/IInterrupt.d.ts +36 -36
- package/definitions/game/ui/util/ImagePath.d.ts +30 -30
- package/definitions/game/ui/util/InterruptFactory.d.ts +42 -42
- package/definitions/game/ui/util/Misc.d.ts +20 -20
- package/definitions/game/ui/util/ScaleManager.d.ts +38 -38
- package/definitions/game/ui/util/ScrollableHandler.d.ts +20 -20
- package/definitions/game/ui/util/Sortable.d.ts +37 -37
- package/definitions/game/utilities/Clipboard.d.ts +14 -14
- package/definitions/game/utilities/Color.d.ts +42 -42
- package/definitions/game/utilities/CommandLine.d.ts +15 -15
- package/definitions/game/utilities/Decorators.d.ts +34 -34
- package/definitions/game/utilities/Encoding.d.ts +15 -15
- package/definitions/game/utilities/Errors.d.ts +18 -18
- package/definitions/game/utilities/Files.d.ts +40 -40
- package/definitions/game/utilities/Log.d.ts +199 -199
- package/definitions/game/utilities/Registrar.d.ts +25 -25
- package/definitions/game/utilities/SearchParams.d.ts +15 -0
- package/definitions/game/utilities/StackTrace.d.ts +11 -11
- package/definitions/game/utilities/Time.d.ts +25 -25
- package/definitions/game/utilities/Timer.d.ts +25 -25
- package/definitions/game/utilities/UUID.d.ts +16 -16
- package/definitions/game/utilities/Uint1Array.d.ts +20 -20
- package/definitions/game/utilities/Version.d.ts +37 -37
- package/definitions/game/utilities/WebAssemblyHelpers.d.ts +35 -35
- package/definitions/game/utilities/WebWorkerHelpers.d.ts +26 -26
- package/definitions/game/utilities/class/Classes.d.ts +15 -15
- package/definitions/game/utilities/class/Inject.d.ts +82 -82
- package/definitions/game/utilities/collection/Arrays.d.ts +94 -94
- package/definitions/game/utilities/collection/Graceful.d.ts +21 -21
- package/definitions/game/utilities/collection/Iterables.d.ts +17 -17
- package/definitions/game/utilities/collection/map/DefaultMap.d.ts +20 -20
- package/definitions/game/utilities/collection/map/HashMap.d.ts +49 -49
- package/definitions/game/utilities/collection/map/PriorityMap.d.ts +45 -45
- package/definitions/game/utilities/collection/map/StackMap.d.ts +15 -15
- package/definitions/game/utilities/collection/queue/PriorityQueue.d.ts +25 -25
- package/definitions/game/utilities/collection/queue/Queue.d.ts +20 -20
- package/definitions/game/utilities/collection/set/HashSet.d.ts +45 -45
- package/definitions/game/utilities/collection/sort/Sorter.d.ts +43 -43
- package/definitions/game/utilities/dependency/DependencyManager.d.ts +21 -21
- package/definitions/game/utilities/dev/Performance2.d.ts +18 -18
- package/definitions/game/utilities/dev/Reflection.d.ts +57 -57
- package/definitions/game/utilities/enum/EnumCursor.d.ts +103 -103
- package/definitions/game/utilities/enum/EnumInfo.d.ts +20 -20
- package/definitions/game/utilities/enum/EnumManager.d.ts +21 -21
- package/definitions/game/utilities/enum/Enums.d.ts +89 -89
- package/definitions/game/utilities/enum/IEnum.d.ts +76 -76
- package/definitions/game/utilities/game/TileHelpers.d.ts +122 -122
- package/definitions/game/utilities/game/TilePosition.d.ts +12 -12
- package/definitions/game/utilities/generic/GenericManager.d.ts +25 -25
- package/definitions/game/utilities/generic/IGenericManager.d.ts +19 -19
- package/definitions/game/utilities/math/Bound3.d.ts +24 -24
- package/definitions/game/utilities/math/Direction.d.ts +66 -66
- package/definitions/game/utilities/math/IVector.d.ts +24 -24
- package/definitions/game/utilities/math/Math2.d.ts +82 -82
- package/definitions/game/utilities/math/Range.d.ts +33 -33
- package/definitions/game/utilities/math/Rectangle.d.ts +30 -30
- package/definitions/game/utilities/math/Sampler.d.ts +23 -23
- package/definitions/game/utilities/math/Vector2.d.ts +111 -111
- package/definitions/game/utilities/math/Vector3.d.ts +78 -78
- package/definitions/game/utilities/math/Vector4.d.ts +20 -0
- package/definitions/game/utilities/memory/GarbageCollection.d.ts +15 -15
- package/definitions/game/utilities/memory/ILifetime.d.ts +20 -20
- package/definitions/game/utilities/memory/IMemoryLeakDetector.d.ts +14 -14
- package/definitions/game/utilities/memory/MemoryLeakDetector.d.ts +29 -29
- package/definitions/game/utilities/object/Descriptions.d.ts +18 -18
- package/definitions/game/utilities/object/FancyJsonSerializer.d.ts +32 -32
- package/definitions/game/utilities/object/Instantiate.d.ts +19 -19
- package/definitions/game/utilities/object/JsonC.d.ts +22 -22
- package/definitions/game/utilities/object/JsonHelper.d.ts +25 -25
- package/definitions/game/utilities/object/Merge.d.ts +53 -53
- package/definitions/game/utilities/object/Objects.d.ts +49 -49
- package/definitions/game/utilities/object/PrettyJsonStringify.d.ts +11 -11
- package/definitions/game/utilities/promise/Async.d.ts +19 -19
- package/definitions/game/utilities/promise/ResolvablePromise.d.ts +19 -19
- package/definitions/game/utilities/prototype/Apply.d.ts +11 -11
- package/definitions/game/utilities/prototype/Array.d.ts +27 -27
- package/definitions/game/utilities/prototype/Define.d.ts +22 -22
- package/definitions/game/utilities/prototype/Node.d.ts +13 -13
- package/definitions/game/utilities/prototype/Promise.d.ts +16 -16
- package/definitions/game/utilities/prototype/RegExp.d.ts +16 -16
- package/definitions/game/utilities/random/Random.d.ts +137 -137
- package/definitions/game/utilities/random/RandomValueGenerator.d.ts +22 -22
- package/definitions/game/utilities/random/generators/RandomItem.d.ts +26 -26
- package/definitions/game/utilities/random/generators/RandomRange.d.ts +26 -26
- package/definitions/game/utilities/string/Interpolator.d.ts +89 -89
- package/definitions/game/utilities/string/Strings.d.ts +43 -43
- package/definitions/game/utilities/trello/ITrello.d.ts +63 -63
- package/definitions/game/utilities/trello/Trello.d.ts +22 -22
- package/definitions/game/utilities/types/Recursive.d.ts +21 -21
- package/definitions/game/utilities/typesglobal/Class.d.ts +23 -23
- package/definitions/game/utilities/typesglobal/Descriptions.d.ts +30 -30
- package/definitions/game/utilities/typesglobal/Function.d.ts +32 -32
- package/definitions/game/utilities/typesglobal/Iterables.d.ts +24 -24
- package/definitions/game/utilities/typesglobal/Misc.d.ts +27 -27
- package/definitions/game/utilities/typesglobal/Objects.d.ts +49 -49
- package/definitions/game/utilities/typesglobal/Types.d.ts +24 -24
- package/definitions/hosts/browser/browserLoader.d.ts +24 -24
- package/definitions/hosts/browser/index.d.ts +13 -13
- package/definitions/hosts/electron/main/cmd/mod.d.ts +11 -11
- package/definitions/hosts/electron/main/index.d.ts +11 -11
- package/definitions/hosts/electron/main/interfaces.d.ts +19 -19
- package/definitions/hosts/electron/main/ipc/handlers/electron/electron.d.ts +31 -31
- package/definitions/hosts/electron/main/ipc/handlers/fileSystem/fileSystem.d.ts +16 -16
- package/definitions/hosts/electron/main/ipc/handlers/os/os.d.ts +18 -18
- package/definitions/hosts/electron/main/ipc/interfaces.d.ts +16 -16
- package/definitions/hosts/electron/main/ipc/ipc.d.ts +12 -12
- package/definitions/hosts/electron/main/launchOptions.d.ts +45 -45
- package/definitions/hosts/electron/main/util/file.d.ts +33 -33
- package/definitions/hosts/electron/main/util/game.d.ts +11 -11
- package/definitions/hosts/electron/main/util/objects.d.ts +18 -18
- package/definitions/hosts/electron/preload/greenworks.d.ts +11 -11
- package/definitions/hosts/electron/preload/index.d.ts +11 -11
- package/definitions/hosts/electron/preload/ipc.d.ts +13 -13
- package/definitions/hosts/electron/preload/wayward-napi.d.ts +11 -11
- package/definitions/hosts/node/index.d.ts +11 -11
- package/definitions/hosts/node/nodeLoader.d.ts +24 -24
- package/definitions/hosts/shared/args.d.ts +21 -21
- package/definitions/hosts/shared/baseLoader.d.ts +19 -19
- package/definitions/hosts/shared/globalTypes.d.ts +30 -30
- package/definitions/hosts/shared/globals.d.ts +13 -13
- package/definitions/hosts/shared/interfaces.d.ts +259 -259
- package/definitions/hosts/shared/ipc/electron.d.ts +25 -25
- package/definitions/hosts/shared/ipc/fileSystem.d.ts +47 -47
- package/definitions/hosts/shared/ipc/handlers/fileSystem/fileSystem.d.ts +51 -51
- package/definitions/hosts/shared/ipc/handlers/fileSystem/logFile.d.ts +22 -22
- package/definitions/hosts/shared/ipc/handlers/os/os.d.ts +21 -21
- package/definitions/hosts/shared/ipc/os.d.ts +22 -22
- package/definitions/hosts/shared/ipc.d.ts +14 -14
- package/definitions/matchmakingserver/dedicatedServer.d.ts +27 -27
- package/definitions/matchmakingserver/directoryConnection.d.ts +31 -31
- package/definitions/matchmakingserver/globalMatchmaking.d.ts +24 -24
- package/definitions/matchmakingserver/globalServerDirectory.d.ts +35 -35
- package/definitions/matchmakingserver/index.d.ts +13 -13
- package/definitions/matchmakingserver/server.d.ts +36 -36
- package/definitions/matchmakingserver/shared.d.ts +148 -148
- package/definitions/matchmakingserver/vps.d.ts +11 -11
- package/definitions/test/core/application.d.ts +69 -69
- package/definitions/test/core/applicationDom.d.ts +30 -30
- package/definitions/test/core/applicationInteractions.d.ts +95 -95
- package/definitions/test/core/applicationLogger.d.ts +20 -20
- package/definitions/test/core/applicationManager.d.ts +86 -86
- package/definitions/test/core/chromeDriver.d.ts +21 -21
- package/definitions/test/index.d.ts +17 -17
- package/definitions/test/interfaces.d.ts +46 -46
- package/definitions/test/suite/functionalTests/multiplayer/Multiplayer.spec.d.ts +13 -13
- package/definitions/test/suite/functionalTests/singleplayer/SaveImport.spec.d.ts +13 -13
- package/definitions/test/suite/functionalTests/singleplayer/Singleplayer.spec.d.ts +13 -13
- package/definitions/test/suite/unitTests/game/Island.spec.d.ts +13 -13
- package/definitions/test/suite/unitTests/utilities/MagicalPropertyManager.spec.d.ts +13 -13
- package/definitions/test/util/logs.d.ts +11 -11
- package/definitions/test/util/mochaNUnitReporter.d.ts +38 -38
- package/definitions/test/util/random.d.ts +13 -13
- package/package.json +24 -24
- package/tsconfig.json +7 -7
- package/tsconfig.mod.base.json +44 -47
|
@@ -1,377 +1,377 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright 2011-2021 Unlok
|
|
3
|
-
* https://www.unlok.ca
|
|
4
|
-
*
|
|
5
|
-
* Credits & Thanks:
|
|
6
|
-
* https://www.unlok.ca/credits-thanks/
|
|
7
|
-
*
|
|
8
|
-
* Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
|
|
9
|
-
* https://github.com/WaywardGame/types/wiki
|
|
10
|
-
*/
|
|
11
|
-
import { Command } from "command/ICommand";
|
|
12
|
-
import { BiomeType } from "game/biome/IBiome";
|
|
13
|
-
import { DoodadType, DoodadTypeGroup, GrowingStage } from "game/doodad/IDoodad";
|
|
14
|
-
import { MapQuality } from "game/entity/action/actions/map/MapQuality";
|
|
15
|
-
import { ActionType } from "game/entity/action/IAction";
|
|
16
|
-
import { CreatureType } from "game/entity/creature/ICreature";
|
|
17
|
-
import { DamageType, StatusType } from "game/entity/IEntity";
|
|
18
|
-
import { EquipType, SkillType } from "game/entity/IHuman";
|
|
19
|
-
import { Stat } from "game/entity/IStats";
|
|
20
|
-
import { NPCType } from "game/entity/npc/INPCs";
|
|
21
|
-
import { Source } from "game/entity/player/IMessageManager";
|
|
22
|
-
import { WeightStatus } from "game/entity/player/IPlayer";
|
|
23
|
-
import { QuestType } from "game/entity/player/quest/quest/IQuest";
|
|
24
|
-
import { QuestRequirementType } from "game/entity/player/quest/requirement/IRequirement";
|
|
25
|
-
import { BadTemperatureLevel } from "game/entity/status/handler/IBadTemperature";
|
|
26
|
-
import { ExhaustionLevel } from "game/entity/status/handler/IExhausted";
|
|
27
|
-
import { InfoDisplayLevel } from "game/inspection/IInfoProvider";
|
|
28
|
-
import { InspectType } from "game/inspection/IInspection";
|
|
29
|
-
import { DurabilityLevel } from "game/inspection/infoProviders/doodad/IDurability";
|
|
30
|
-
import { Level } from "game/inspection/infoProviders/ILevel";
|
|
31
|
-
import { Quality } from "game/IObject";
|
|
32
|
-
import { BookType, EquipEffect, ItemType, ItemTypeGroup, RecipeLevel } from "game/item/IItem";
|
|
33
|
-
import { CraftEfficacy } from "game/item/recipe/Crafter";
|
|
34
|
-
import { MagicalPropertyType } from "game/magic/MagicalPropertyType";
|
|
35
|
-
import { DrawnMapTheme } from "game/mapping/IMapRender";
|
|
36
|
-
import { AutoSaveMode } from "game/meta/IAutoSave";
|
|
37
|
-
import { Load } from "game/meta/Loading";
|
|
38
|
-
import { Prompt } from "game/meta/prompt/IPrompt";
|
|
39
|
-
import { Milestone } from "game/milestones/IMilestone";
|
|
40
|
-
import { GameMode, UnlockedRecipesStrategy } from "game/options/IGameOptions";
|
|
41
|
-
import { Challenge } from "game/options/modifiers/challenge/IChallenge";
|
|
42
|
-
import { IslandModifierType } from "game/options/modifiers/island/IslandModifier";
|
|
43
|
-
import { MilestoneModifierGroup } from "game/options/modifiers/milestone/MilestoneModifier";
|
|
44
|
-
import Riddle from "game/riddle/Riddle";
|
|
45
|
-
import { TempType } from "game/temperature/ITemperature";
|
|
46
|
-
import { FireStage } from "game/tile/events/IFire";
|
|
47
|
-
import { TerrainType } from "game/tile/ITerrain";
|
|
48
|
-
import { TileEventType } from "game/tile/ITileEvent";
|
|
49
|
-
import { PartOfDay } from "game/time/ITimeManager";
|
|
50
|
-
import { WorldZ } from "game/WorldZ";
|
|
51
|
-
import Dictionary from "language/Dictionary";
|
|
52
|
-
import { GameEndMessage } from "language/dictionary/GameEndMessage";
|
|
53
|
-
import HumanName from "language/dictionary/HumanName";
|
|
54
|
-
import InterruptChoice from "language/dictionary/InterruptChoice";
|
|
55
|
-
import Message from "language/dictionary/Message";
|
|
56
|
-
import { MiscTranslation } from "language/dictionary/Misc";
|
|
57
|
-
import { MultiplayerCompatibility } from "language/dictionary/MultiplayerCompatibility";
|
|
58
|
-
import Note from "language/dictionary/Note";
|
|
59
|
-
import UiTranslation from "language/dictionary/UiTranslation";
|
|
60
|
-
import { IslandName } from "language/english/game/islandName/IslandName";
|
|
61
|
-
import { ModProvide, ModType } from "mod/IModInfo";
|
|
62
|
-
import { CanLoadState, ModLoadFailureReason } from "mod/IModManager";
|
|
63
|
-
import { DisconnectReason, JoinServerRetryReason, UnableToJoinReason } from "multiplayer/IMultiplayer";
|
|
64
|
-
import { MusicPlaylist, PowerMode } from "save/data/ISaveDataGlobal";
|
|
65
|
-
import { SaveImportErrorReason, SaveSort } from "save/ISaveManager";
|
|
66
|
-
import Bindable, { BindableType } from "ui/input/Bindable";
|
|
67
|
-
import { Quadrant, QuadrantComponentContextMenuAction } from "ui/screen/screens/game/component/IQuadrantComponent";
|
|
68
|
-
import { DialogId } from "ui/screen/screens/game/Dialogs";
|
|
69
|
-
import { MessageTimestamp, QuadrantComponentId } from "ui/screen/screens/game/IGameScreenApi";
|
|
70
|
-
import { MessageFilterDefault } from "ui/screen/screens/game/IMessages";
|
|
71
|
-
import { MenuBarButtonType } from "ui/screen/screens/game/static/menubar/IMenuBarButton";
|
|
72
|
-
import { CharacterSort } from "ui/screen/screens/menu/menus/character/Character";
|
|
73
|
-
import { HelpArticle } from "ui/screen/screens/menu/menus/help/HelpArticleDescriptions";
|
|
74
|
-
import { HighscoreSort } from "ui/screen/screens/menu/menus/highscores/IHighscoresMenu";
|
|
75
|
-
import { Website } from "ui/screen/screens/menu/menus/main/component/IWebsite";
|
|
76
|
-
import { Responsibility } from "ui/screen/screens/menu/menus/main/IAbout";
|
|
77
|
-
import { ModSort } from "ui/screen/screens/menu/menus/mods/IModsMenu";
|
|
78
|
-
import { Direction } from "utilities/math/Direction";
|
|
79
|
-
import { ChangelogSection } from "utilities/trello/ITrello";
|
|
80
|
-
export declare type Enum = Record<string, number> & Record<number, string>;
|
|
81
|
-
export declare const SYMBOL_ANY_DICTIONARY: unique symbol;
|
|
82
|
-
declare const dictionaryMap: {
|
|
83
|
-
0: typeof ActionType;
|
|
84
|
-
1: typeof AutoSaveMode;
|
|
85
|
-
2: typeof BadTemperatureLevel;
|
|
86
|
-
3: typeof Bindable;
|
|
87
|
-
4: typeof BindableType;
|
|
88
|
-
5: typeof BiomeType;
|
|
89
|
-
6: typeof BookType;
|
|
90
|
-
7: typeof Challenge;
|
|
91
|
-
8: typeof ChangelogSection;
|
|
92
|
-
9: typeof CharacterSort;
|
|
93
|
-
10: typeof Command;
|
|
94
|
-
11: typeof CreatureType;
|
|
95
|
-
12: typeof CraftEfficacy;
|
|
96
|
-
13: typeof CreatureType;
|
|
97
|
-
14: typeof DamageType;
|
|
98
|
-
15: typeof DialogId;
|
|
99
|
-
16: typeof Direction;
|
|
100
|
-
17: typeof InfoDisplayLevel;
|
|
101
|
-
18: typeof DoodadType;
|
|
102
|
-
19: typeof DoodadTypeGroup;
|
|
103
|
-
20: typeof DrawnMapTheme;
|
|
104
|
-
21: typeof DurabilityLevel;
|
|
105
|
-
22: typeof EquipEffect;
|
|
106
|
-
23: typeof EquipType;
|
|
107
|
-
24: typeof ExhaustionLevel;
|
|
108
|
-
25: typeof FireStage;
|
|
109
|
-
26: typeof GameEndMessage;
|
|
110
|
-
27: typeof GameMode;
|
|
111
|
-
28: typeof GrowingStage;
|
|
112
|
-
29: typeof GrowingStage;
|
|
113
|
-
30: typeof HelpArticle;
|
|
114
|
-
31: typeof HighscoreSort;
|
|
115
|
-
32: typeof HumanName;
|
|
116
|
-
33: symbol;
|
|
117
|
-
34: typeof InspectType;
|
|
118
|
-
35: typeof InterruptChoice;
|
|
119
|
-
36: typeof IslandModifierType;
|
|
120
|
-
37: typeof IslandName;
|
|
121
|
-
38: typeof BiomeType;
|
|
122
|
-
39: typeof IslandModifierType;
|
|
123
|
-
40: typeof CreatureType;
|
|
124
|
-
41: typeof ItemType;
|
|
125
|
-
42: typeof ItemTypeGroup;
|
|
126
|
-
43: typeof JoinServerRetryReason;
|
|
127
|
-
44: typeof Level;
|
|
128
|
-
45: typeof Load;
|
|
129
|
-
46: symbol;
|
|
130
|
-
47: typeof MagicalPropertyType;
|
|
131
|
-
48: typeof MapQuality;
|
|
132
|
-
49: typeof MenuBarButtonType;
|
|
133
|
-
50: typeof Message;
|
|
134
|
-
51: typeof MessageFilterDefault;
|
|
135
|
-
52: typeof MessageTimestamp;
|
|
136
|
-
53: typeof Milestone;
|
|
137
|
-
54: typeof MilestoneModifierGroup;
|
|
138
|
-
55: typeof MiscTranslation;
|
|
139
|
-
56: typeof CanLoadState;
|
|
140
|
-
57: typeof ModLoadFailureReason;
|
|
141
|
-
58: typeof ModProvide;
|
|
142
|
-
59: typeof ModSort;
|
|
143
|
-
60: typeof ModType;
|
|
144
|
-
61: typeof MultiplayerCompatibility;
|
|
145
|
-
62: typeof DisconnectReason;
|
|
146
|
-
63: typeof MusicPlaylist;
|
|
147
|
-
64: typeof Note;
|
|
148
|
-
65: typeof NPCType;
|
|
149
|
-
66: symbol;
|
|
150
|
-
67: typeof PartOfDay;
|
|
151
|
-
68: typeof PowerMode;
|
|
152
|
-
69: typeof Prompt;
|
|
153
|
-
70: typeof QuadrantComponentId;
|
|
154
|
-
71: typeof QuadrantComponentContextMenuAction;
|
|
155
|
-
72: typeof Quality;
|
|
156
|
-
73: typeof QuestType;
|
|
157
|
-
74: typeof QuestRequirementType;
|
|
158
|
-
75: typeof RecipeLevel;
|
|
159
|
-
76: typeof Riddle;
|
|
160
|
-
77: typeof SaveImportErrorReason;
|
|
161
|
-
78: typeof SaveSort;
|
|
162
|
-
79: typeof SkillType;
|
|
163
|
-
80: typeof Source;
|
|
164
|
-
81: typeof Stat;
|
|
165
|
-
82: typeof StatusType;
|
|
166
|
-
83: typeof Responsibility;
|
|
167
|
-
84: typeof TempType;
|
|
168
|
-
85: typeof TerrainType;
|
|
169
|
-
86: typeof TileEventType;
|
|
170
|
-
87: typeof UiTranslation;
|
|
171
|
-
88: typeof Quadrant;
|
|
172
|
-
89: typeof UnableToJoinReason;
|
|
173
|
-
90: typeof UnlockedRecipesStrategy;
|
|
174
|
-
91: typeof Website;
|
|
175
|
-
92: typeof WeightStatus;
|
|
176
|
-
93: typeof WorldZ;
|
|
177
|
-
};
|
|
178
|
-
export declare const strictDictionaries: {
|
|
179
|
-
0: typeof ActionType;
|
|
180
|
-
1: typeof AutoSaveMode;
|
|
181
|
-
2: typeof BadTemperatureLevel;
|
|
182
|
-
3: typeof Bindable;
|
|
183
|
-
4: typeof BindableType;
|
|
184
|
-
5: typeof BiomeType;
|
|
185
|
-
6: typeof BookType;
|
|
186
|
-
7: typeof Challenge;
|
|
187
|
-
8: typeof ChangelogSection;
|
|
188
|
-
9: typeof CharacterSort;
|
|
189
|
-
10: typeof Command;
|
|
190
|
-
11: typeof CreatureType;
|
|
191
|
-
12: typeof CraftEfficacy;
|
|
192
|
-
13: typeof CreatureType;
|
|
193
|
-
14: typeof DamageType;
|
|
194
|
-
15: typeof DialogId;
|
|
195
|
-
16: typeof Direction;
|
|
196
|
-
17: typeof InfoDisplayLevel;
|
|
197
|
-
18: typeof DoodadType;
|
|
198
|
-
19: typeof DoodadTypeGroup;
|
|
199
|
-
20: typeof DrawnMapTheme;
|
|
200
|
-
21: typeof DurabilityLevel;
|
|
201
|
-
22: typeof EquipEffect;
|
|
202
|
-
23: typeof EquipType;
|
|
203
|
-
24: typeof ExhaustionLevel;
|
|
204
|
-
25: typeof FireStage;
|
|
205
|
-
26: typeof GameEndMessage;
|
|
206
|
-
27: typeof GameMode;
|
|
207
|
-
28: typeof GrowingStage;
|
|
208
|
-
29: typeof GrowingStage;
|
|
209
|
-
30: typeof HelpArticle;
|
|
210
|
-
31: typeof HighscoreSort;
|
|
211
|
-
32: typeof HumanName;
|
|
212
|
-
33: symbol;
|
|
213
|
-
34: typeof InspectType;
|
|
214
|
-
35: typeof InterruptChoice;
|
|
215
|
-
36: typeof IslandModifierType;
|
|
216
|
-
37: typeof IslandName;
|
|
217
|
-
38: typeof BiomeType;
|
|
218
|
-
39: typeof IslandModifierType;
|
|
219
|
-
40: typeof CreatureType;
|
|
220
|
-
41: typeof ItemType;
|
|
221
|
-
42: typeof ItemTypeGroup;
|
|
222
|
-
43: typeof JoinServerRetryReason;
|
|
223
|
-
44: typeof Level;
|
|
224
|
-
45: typeof Load;
|
|
225
|
-
46: symbol;
|
|
226
|
-
47: typeof MagicalPropertyType;
|
|
227
|
-
48: typeof MapQuality;
|
|
228
|
-
49: typeof MenuBarButtonType;
|
|
229
|
-
50: typeof Message;
|
|
230
|
-
51: typeof MessageFilterDefault;
|
|
231
|
-
52: typeof MessageTimestamp;
|
|
232
|
-
53: typeof Milestone;
|
|
233
|
-
54: typeof MilestoneModifierGroup;
|
|
234
|
-
55: typeof MiscTranslation;
|
|
235
|
-
56: typeof CanLoadState;
|
|
236
|
-
57: typeof ModLoadFailureReason;
|
|
237
|
-
58: typeof ModProvide;
|
|
238
|
-
59: typeof ModSort;
|
|
239
|
-
60: typeof ModType;
|
|
240
|
-
61: typeof MultiplayerCompatibility;
|
|
241
|
-
62: typeof DisconnectReason;
|
|
242
|
-
63: typeof MusicPlaylist;
|
|
243
|
-
64: typeof Note;
|
|
244
|
-
65: typeof NPCType;
|
|
245
|
-
66: symbol;
|
|
246
|
-
67: typeof PartOfDay;
|
|
247
|
-
68: typeof PowerMode;
|
|
248
|
-
69: typeof Prompt;
|
|
249
|
-
70: typeof QuadrantComponentId;
|
|
250
|
-
71: typeof QuadrantComponentContextMenuAction;
|
|
251
|
-
72: typeof Quality;
|
|
252
|
-
73: typeof QuestType;
|
|
253
|
-
74: typeof QuestRequirementType;
|
|
254
|
-
75: typeof RecipeLevel;
|
|
255
|
-
76: typeof Riddle;
|
|
256
|
-
77: typeof SaveImportErrorReason;
|
|
257
|
-
78: typeof SaveSort;
|
|
258
|
-
79: typeof SkillType;
|
|
259
|
-
80: typeof Source;
|
|
260
|
-
81: typeof Stat;
|
|
261
|
-
82: typeof StatusType;
|
|
262
|
-
83: typeof Responsibility;
|
|
263
|
-
84: typeof TempType;
|
|
264
|
-
85: typeof TerrainType;
|
|
265
|
-
86: typeof TileEventType;
|
|
266
|
-
87: typeof UiTranslation;
|
|
267
|
-
88: typeof Quadrant;
|
|
268
|
-
89: typeof UnableToJoinReason;
|
|
269
|
-
90: typeof UnlockedRecipesStrategy;
|
|
270
|
-
91: typeof Website;
|
|
271
|
-
92: typeof WeightStatus;
|
|
272
|
-
93: typeof WorldZ;
|
|
273
|
-
};
|
|
274
|
-
export declare type DictionaryEnum = (typeof dictionaryMap)[Dictionary];
|
|
275
|
-
export declare type DictionaryEntryEnums = {
|
|
276
|
-
[DICTIONARY in keyof typeof dictionaryMap]: (typeof dictionaryMap)[DICTIONARY] extends infer ENTRY_ENUM ? ENTRY_ENUM[keyof ENTRY_ENUM] : never;
|
|
277
|
-
};
|
|
278
|
-
declare function getByEnum(enumObject: DictionaryEnum): Dictionary;
|
|
279
|
-
declare const dictionaries: {
|
|
280
|
-
0: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
281
|
-
1: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
282
|
-
2: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
283
|
-
3: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
284
|
-
4: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
285
|
-
5: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
286
|
-
6: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
287
|
-
7: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
288
|
-
8: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
289
|
-
9: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
290
|
-
10: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
291
|
-
11: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
292
|
-
12: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
293
|
-
13: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
294
|
-
14: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
295
|
-
15: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
296
|
-
16: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
297
|
-
17: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
298
|
-
18: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
299
|
-
19: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
300
|
-
20: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
301
|
-
21: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
302
|
-
22: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
303
|
-
23: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
304
|
-
24: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
305
|
-
25: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
306
|
-
26: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
307
|
-
27: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
308
|
-
28: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
309
|
-
29: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
310
|
-
30: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
311
|
-
31: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
312
|
-
32: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
313
|
-
33: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
314
|
-
34: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
315
|
-
35: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
316
|
-
36: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
317
|
-
37: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
318
|
-
38: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
319
|
-
39: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
320
|
-
40: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
321
|
-
41: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
322
|
-
42: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
323
|
-
43: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
324
|
-
44: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
325
|
-
45: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
326
|
-
46: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
327
|
-
47: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
328
|
-
48: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
329
|
-
49: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
330
|
-
50: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
331
|
-
51: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
332
|
-
52: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
333
|
-
53: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
334
|
-
54: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
335
|
-
55: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
336
|
-
56: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
337
|
-
57: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
338
|
-
58: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
339
|
-
59: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
340
|
-
60: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
341
|
-
61: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
342
|
-
62: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
343
|
-
63: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
344
|
-
64: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
345
|
-
65: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
346
|
-
66: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
347
|
-
67: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
348
|
-
68: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
349
|
-
69: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
350
|
-
70: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
351
|
-
71: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
352
|
-
72: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
353
|
-
73: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
354
|
-
74: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
355
|
-
75: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
356
|
-
76: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
357
|
-
77: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
358
|
-
78: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
359
|
-
79: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
360
|
-
80: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
361
|
-
81: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
362
|
-
82: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
363
|
-
83: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
364
|
-
84: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
365
|
-
85: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
366
|
-
86: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
367
|
-
87: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
368
|
-
88: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
369
|
-
89: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
370
|
-
90: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
371
|
-
91: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
372
|
-
92: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
373
|
-
93: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
374
|
-
} & Record<number, typeof SYMBOL_ANY_DICTIONARY | Enum | undefined> & {
|
|
375
|
-
getByEnum: typeof getByEnum;
|
|
376
|
-
};
|
|
377
|
-
export default dictionaries;
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2011-2021 Unlok
|
|
3
|
+
* https://www.unlok.ca
|
|
4
|
+
*
|
|
5
|
+
* Credits & Thanks:
|
|
6
|
+
* https://www.unlok.ca/credits-thanks/
|
|
7
|
+
*
|
|
8
|
+
* Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
|
|
9
|
+
* https://github.com/WaywardGame/types/wiki
|
|
10
|
+
*/
|
|
11
|
+
import { Command } from "command/ICommand";
|
|
12
|
+
import { BiomeType } from "game/biome/IBiome";
|
|
13
|
+
import { DoodadType, DoodadTypeGroup, GrowingStage } from "game/doodad/IDoodad";
|
|
14
|
+
import { MapQuality } from "game/entity/action/actions/map/MapQuality";
|
|
15
|
+
import { ActionType } from "game/entity/action/IAction";
|
|
16
|
+
import { CreatureType } from "game/entity/creature/ICreature";
|
|
17
|
+
import { DamageType, StatusType } from "game/entity/IEntity";
|
|
18
|
+
import { EquipType, SkillType } from "game/entity/IHuman";
|
|
19
|
+
import { Stat } from "game/entity/IStats";
|
|
20
|
+
import { NPCType } from "game/entity/npc/INPCs";
|
|
21
|
+
import { Source } from "game/entity/player/IMessageManager";
|
|
22
|
+
import { WeightStatus } from "game/entity/player/IPlayer";
|
|
23
|
+
import { QuestType } from "game/entity/player/quest/quest/IQuest";
|
|
24
|
+
import { QuestRequirementType } from "game/entity/player/quest/requirement/IRequirement";
|
|
25
|
+
import { BadTemperatureLevel } from "game/entity/status/handler/IBadTemperature";
|
|
26
|
+
import { ExhaustionLevel } from "game/entity/status/handler/IExhausted";
|
|
27
|
+
import { InfoDisplayLevel } from "game/inspection/IInfoProvider";
|
|
28
|
+
import { InspectType } from "game/inspection/IInspection";
|
|
29
|
+
import { DurabilityLevel } from "game/inspection/infoProviders/doodad/IDurability";
|
|
30
|
+
import { Level } from "game/inspection/infoProviders/ILevel";
|
|
31
|
+
import { Quality } from "game/IObject";
|
|
32
|
+
import { BookType, EquipEffect, ItemType, ItemTypeGroup, RecipeLevel } from "game/item/IItem";
|
|
33
|
+
import { CraftEfficacy } from "game/item/recipe/Crafter";
|
|
34
|
+
import { MagicalPropertyType } from "game/magic/MagicalPropertyType";
|
|
35
|
+
import { DrawnMapTheme } from "game/mapping/IMapRender";
|
|
36
|
+
import { AutoSaveMode } from "game/meta/IAutoSave";
|
|
37
|
+
import { Load } from "game/meta/Loading";
|
|
38
|
+
import { Prompt } from "game/meta/prompt/IPrompt";
|
|
39
|
+
import { Milestone } from "game/milestones/IMilestone";
|
|
40
|
+
import { GameMode, UnlockedRecipesStrategy } from "game/options/IGameOptions";
|
|
41
|
+
import { Challenge } from "game/options/modifiers/challenge/IChallenge";
|
|
42
|
+
import { IslandModifierType } from "game/options/modifiers/island/IslandModifier";
|
|
43
|
+
import { MilestoneModifierGroup } from "game/options/modifiers/milestone/MilestoneModifier";
|
|
44
|
+
import Riddle from "game/riddle/Riddle";
|
|
45
|
+
import { TempType } from "game/temperature/ITemperature";
|
|
46
|
+
import { FireStage } from "game/tile/events/IFire";
|
|
47
|
+
import { TerrainType } from "game/tile/ITerrain";
|
|
48
|
+
import { TileEventType } from "game/tile/ITileEvent";
|
|
49
|
+
import { PartOfDay } from "game/time/ITimeManager";
|
|
50
|
+
import { WorldZ } from "game/WorldZ";
|
|
51
|
+
import Dictionary from "language/Dictionary";
|
|
52
|
+
import { GameEndMessage } from "language/dictionary/GameEndMessage";
|
|
53
|
+
import HumanName from "language/dictionary/HumanName";
|
|
54
|
+
import InterruptChoice from "language/dictionary/InterruptChoice";
|
|
55
|
+
import Message from "language/dictionary/Message";
|
|
56
|
+
import { MiscTranslation } from "language/dictionary/Misc";
|
|
57
|
+
import { MultiplayerCompatibility } from "language/dictionary/MultiplayerCompatibility";
|
|
58
|
+
import Note from "language/dictionary/Note";
|
|
59
|
+
import UiTranslation from "language/dictionary/UiTranslation";
|
|
60
|
+
import { IslandName } from "language/english/game/islandName/IslandName";
|
|
61
|
+
import { ModProvide, ModType } from "mod/IModInfo";
|
|
62
|
+
import { CanLoadState, ModLoadFailureReason } from "mod/IModManager";
|
|
63
|
+
import { DisconnectReason, JoinServerRetryReason, UnableToJoinReason } from "multiplayer/IMultiplayer";
|
|
64
|
+
import { MusicPlaylist, PowerMode } from "save/data/ISaveDataGlobal";
|
|
65
|
+
import { SaveImportErrorReason, SaveSort } from "save/ISaveManager";
|
|
66
|
+
import Bindable, { BindableType } from "ui/input/Bindable";
|
|
67
|
+
import { Quadrant, QuadrantComponentContextMenuAction } from "ui/screen/screens/game/component/IQuadrantComponent";
|
|
68
|
+
import { DialogId } from "ui/screen/screens/game/Dialogs";
|
|
69
|
+
import { MessageTimestamp, QuadrantComponentId } from "ui/screen/screens/game/IGameScreenApi";
|
|
70
|
+
import { MessageFilterDefault } from "ui/screen/screens/game/IMessages";
|
|
71
|
+
import { MenuBarButtonType } from "ui/screen/screens/game/static/menubar/IMenuBarButton";
|
|
72
|
+
import { CharacterSort } from "ui/screen/screens/menu/menus/character/Character";
|
|
73
|
+
import { HelpArticle } from "ui/screen/screens/menu/menus/help/HelpArticleDescriptions";
|
|
74
|
+
import { HighscoreSort } from "ui/screen/screens/menu/menus/highscores/IHighscoresMenu";
|
|
75
|
+
import { Website } from "ui/screen/screens/menu/menus/main/component/IWebsite";
|
|
76
|
+
import { Responsibility } from "ui/screen/screens/menu/menus/main/IAbout";
|
|
77
|
+
import { ModSort } from "ui/screen/screens/menu/menus/mods/IModsMenu";
|
|
78
|
+
import { Direction } from "utilities/math/Direction";
|
|
79
|
+
import { ChangelogSection } from "utilities/trello/ITrello";
|
|
80
|
+
export declare type Enum = Record<string, number> & Record<number, string>;
|
|
81
|
+
export declare const SYMBOL_ANY_DICTIONARY: unique symbol;
|
|
82
|
+
declare const dictionaryMap: {
|
|
83
|
+
0: typeof ActionType;
|
|
84
|
+
1: typeof AutoSaveMode;
|
|
85
|
+
2: typeof BadTemperatureLevel;
|
|
86
|
+
3: typeof Bindable;
|
|
87
|
+
4: typeof BindableType;
|
|
88
|
+
5: typeof BiomeType;
|
|
89
|
+
6: typeof BookType;
|
|
90
|
+
7: typeof Challenge;
|
|
91
|
+
8: typeof ChangelogSection;
|
|
92
|
+
9: typeof CharacterSort;
|
|
93
|
+
10: typeof Command;
|
|
94
|
+
11: typeof CreatureType;
|
|
95
|
+
12: typeof CraftEfficacy;
|
|
96
|
+
13: typeof CreatureType;
|
|
97
|
+
14: typeof DamageType;
|
|
98
|
+
15: typeof DialogId;
|
|
99
|
+
16: typeof Direction;
|
|
100
|
+
17: typeof InfoDisplayLevel;
|
|
101
|
+
18: typeof DoodadType;
|
|
102
|
+
19: typeof DoodadTypeGroup;
|
|
103
|
+
20: typeof DrawnMapTheme;
|
|
104
|
+
21: typeof DurabilityLevel;
|
|
105
|
+
22: typeof EquipEffect;
|
|
106
|
+
23: typeof EquipType;
|
|
107
|
+
24: typeof ExhaustionLevel;
|
|
108
|
+
25: typeof FireStage;
|
|
109
|
+
26: typeof GameEndMessage;
|
|
110
|
+
27: typeof GameMode;
|
|
111
|
+
28: typeof GrowingStage;
|
|
112
|
+
29: typeof GrowingStage;
|
|
113
|
+
30: typeof HelpArticle;
|
|
114
|
+
31: typeof HighscoreSort;
|
|
115
|
+
32: typeof HumanName;
|
|
116
|
+
33: symbol;
|
|
117
|
+
34: typeof InspectType;
|
|
118
|
+
35: typeof InterruptChoice;
|
|
119
|
+
36: typeof IslandModifierType;
|
|
120
|
+
37: typeof IslandName;
|
|
121
|
+
38: typeof BiomeType;
|
|
122
|
+
39: typeof IslandModifierType;
|
|
123
|
+
40: typeof CreatureType;
|
|
124
|
+
41: typeof ItemType;
|
|
125
|
+
42: typeof ItemTypeGroup;
|
|
126
|
+
43: typeof JoinServerRetryReason;
|
|
127
|
+
44: typeof Level;
|
|
128
|
+
45: typeof Load;
|
|
129
|
+
46: symbol;
|
|
130
|
+
47: typeof MagicalPropertyType;
|
|
131
|
+
48: typeof MapQuality;
|
|
132
|
+
49: typeof MenuBarButtonType;
|
|
133
|
+
50: typeof Message;
|
|
134
|
+
51: typeof MessageFilterDefault;
|
|
135
|
+
52: typeof MessageTimestamp;
|
|
136
|
+
53: typeof Milestone;
|
|
137
|
+
54: typeof MilestoneModifierGroup;
|
|
138
|
+
55: typeof MiscTranslation;
|
|
139
|
+
56: typeof CanLoadState;
|
|
140
|
+
57: typeof ModLoadFailureReason;
|
|
141
|
+
58: typeof ModProvide;
|
|
142
|
+
59: typeof ModSort;
|
|
143
|
+
60: typeof ModType;
|
|
144
|
+
61: typeof MultiplayerCompatibility;
|
|
145
|
+
62: typeof DisconnectReason;
|
|
146
|
+
63: typeof MusicPlaylist;
|
|
147
|
+
64: typeof Note;
|
|
148
|
+
65: typeof NPCType;
|
|
149
|
+
66: symbol;
|
|
150
|
+
67: typeof PartOfDay;
|
|
151
|
+
68: typeof PowerMode;
|
|
152
|
+
69: typeof Prompt;
|
|
153
|
+
70: typeof QuadrantComponentId;
|
|
154
|
+
71: typeof QuadrantComponentContextMenuAction;
|
|
155
|
+
72: typeof Quality;
|
|
156
|
+
73: typeof QuestType;
|
|
157
|
+
74: typeof QuestRequirementType;
|
|
158
|
+
75: typeof RecipeLevel;
|
|
159
|
+
76: typeof Riddle;
|
|
160
|
+
77: typeof SaveImportErrorReason;
|
|
161
|
+
78: typeof SaveSort;
|
|
162
|
+
79: typeof SkillType;
|
|
163
|
+
80: typeof Source;
|
|
164
|
+
81: typeof Stat;
|
|
165
|
+
82: typeof StatusType;
|
|
166
|
+
83: typeof Responsibility;
|
|
167
|
+
84: typeof TempType;
|
|
168
|
+
85: typeof TerrainType;
|
|
169
|
+
86: typeof TileEventType;
|
|
170
|
+
87: typeof UiTranslation;
|
|
171
|
+
88: typeof Quadrant;
|
|
172
|
+
89: typeof UnableToJoinReason;
|
|
173
|
+
90: typeof UnlockedRecipesStrategy;
|
|
174
|
+
91: typeof Website;
|
|
175
|
+
92: typeof WeightStatus;
|
|
176
|
+
93: typeof WorldZ;
|
|
177
|
+
};
|
|
178
|
+
export declare const strictDictionaries: {
|
|
179
|
+
0: typeof ActionType;
|
|
180
|
+
1: typeof AutoSaveMode;
|
|
181
|
+
2: typeof BadTemperatureLevel;
|
|
182
|
+
3: typeof Bindable;
|
|
183
|
+
4: typeof BindableType;
|
|
184
|
+
5: typeof BiomeType;
|
|
185
|
+
6: typeof BookType;
|
|
186
|
+
7: typeof Challenge;
|
|
187
|
+
8: typeof ChangelogSection;
|
|
188
|
+
9: typeof CharacterSort;
|
|
189
|
+
10: typeof Command;
|
|
190
|
+
11: typeof CreatureType;
|
|
191
|
+
12: typeof CraftEfficacy;
|
|
192
|
+
13: typeof CreatureType;
|
|
193
|
+
14: typeof DamageType;
|
|
194
|
+
15: typeof DialogId;
|
|
195
|
+
16: typeof Direction;
|
|
196
|
+
17: typeof InfoDisplayLevel;
|
|
197
|
+
18: typeof DoodadType;
|
|
198
|
+
19: typeof DoodadTypeGroup;
|
|
199
|
+
20: typeof DrawnMapTheme;
|
|
200
|
+
21: typeof DurabilityLevel;
|
|
201
|
+
22: typeof EquipEffect;
|
|
202
|
+
23: typeof EquipType;
|
|
203
|
+
24: typeof ExhaustionLevel;
|
|
204
|
+
25: typeof FireStage;
|
|
205
|
+
26: typeof GameEndMessage;
|
|
206
|
+
27: typeof GameMode;
|
|
207
|
+
28: typeof GrowingStage;
|
|
208
|
+
29: typeof GrowingStage;
|
|
209
|
+
30: typeof HelpArticle;
|
|
210
|
+
31: typeof HighscoreSort;
|
|
211
|
+
32: typeof HumanName;
|
|
212
|
+
33: symbol;
|
|
213
|
+
34: typeof InspectType;
|
|
214
|
+
35: typeof InterruptChoice;
|
|
215
|
+
36: typeof IslandModifierType;
|
|
216
|
+
37: typeof IslandName;
|
|
217
|
+
38: typeof BiomeType;
|
|
218
|
+
39: typeof IslandModifierType;
|
|
219
|
+
40: typeof CreatureType;
|
|
220
|
+
41: typeof ItemType;
|
|
221
|
+
42: typeof ItemTypeGroup;
|
|
222
|
+
43: typeof JoinServerRetryReason;
|
|
223
|
+
44: typeof Level;
|
|
224
|
+
45: typeof Load;
|
|
225
|
+
46: symbol;
|
|
226
|
+
47: typeof MagicalPropertyType;
|
|
227
|
+
48: typeof MapQuality;
|
|
228
|
+
49: typeof MenuBarButtonType;
|
|
229
|
+
50: typeof Message;
|
|
230
|
+
51: typeof MessageFilterDefault;
|
|
231
|
+
52: typeof MessageTimestamp;
|
|
232
|
+
53: typeof Milestone;
|
|
233
|
+
54: typeof MilestoneModifierGroup;
|
|
234
|
+
55: typeof MiscTranslation;
|
|
235
|
+
56: typeof CanLoadState;
|
|
236
|
+
57: typeof ModLoadFailureReason;
|
|
237
|
+
58: typeof ModProvide;
|
|
238
|
+
59: typeof ModSort;
|
|
239
|
+
60: typeof ModType;
|
|
240
|
+
61: typeof MultiplayerCompatibility;
|
|
241
|
+
62: typeof DisconnectReason;
|
|
242
|
+
63: typeof MusicPlaylist;
|
|
243
|
+
64: typeof Note;
|
|
244
|
+
65: typeof NPCType;
|
|
245
|
+
66: symbol;
|
|
246
|
+
67: typeof PartOfDay;
|
|
247
|
+
68: typeof PowerMode;
|
|
248
|
+
69: typeof Prompt;
|
|
249
|
+
70: typeof QuadrantComponentId;
|
|
250
|
+
71: typeof QuadrantComponentContextMenuAction;
|
|
251
|
+
72: typeof Quality;
|
|
252
|
+
73: typeof QuestType;
|
|
253
|
+
74: typeof QuestRequirementType;
|
|
254
|
+
75: typeof RecipeLevel;
|
|
255
|
+
76: typeof Riddle;
|
|
256
|
+
77: typeof SaveImportErrorReason;
|
|
257
|
+
78: typeof SaveSort;
|
|
258
|
+
79: typeof SkillType;
|
|
259
|
+
80: typeof Source;
|
|
260
|
+
81: typeof Stat;
|
|
261
|
+
82: typeof StatusType;
|
|
262
|
+
83: typeof Responsibility;
|
|
263
|
+
84: typeof TempType;
|
|
264
|
+
85: typeof TerrainType;
|
|
265
|
+
86: typeof TileEventType;
|
|
266
|
+
87: typeof UiTranslation;
|
|
267
|
+
88: typeof Quadrant;
|
|
268
|
+
89: typeof UnableToJoinReason;
|
|
269
|
+
90: typeof UnlockedRecipesStrategy;
|
|
270
|
+
91: typeof Website;
|
|
271
|
+
92: typeof WeightStatus;
|
|
272
|
+
93: typeof WorldZ;
|
|
273
|
+
};
|
|
274
|
+
export declare type DictionaryEnum = (typeof dictionaryMap)[Dictionary];
|
|
275
|
+
export declare type DictionaryEntryEnums = {
|
|
276
|
+
[DICTIONARY in keyof typeof dictionaryMap]: (typeof dictionaryMap)[DICTIONARY] extends infer ENTRY_ENUM ? ENTRY_ENUM[keyof ENTRY_ENUM] : never;
|
|
277
|
+
};
|
|
278
|
+
declare function getByEnum(enumObject: DictionaryEnum): Dictionary;
|
|
279
|
+
declare const dictionaries: {
|
|
280
|
+
0: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
281
|
+
1: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
282
|
+
2: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
283
|
+
3: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
284
|
+
4: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
285
|
+
5: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
286
|
+
6: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
287
|
+
7: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
288
|
+
8: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
289
|
+
9: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
290
|
+
10: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
291
|
+
11: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
292
|
+
12: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
293
|
+
13: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
294
|
+
14: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
295
|
+
15: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
296
|
+
16: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
297
|
+
17: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
298
|
+
18: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
299
|
+
19: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
300
|
+
20: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
301
|
+
21: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
302
|
+
22: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
303
|
+
23: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
304
|
+
24: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
305
|
+
25: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
306
|
+
26: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
307
|
+
27: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
308
|
+
28: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
309
|
+
29: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
310
|
+
30: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
311
|
+
31: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
312
|
+
32: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
313
|
+
33: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
314
|
+
34: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
315
|
+
35: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
316
|
+
36: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
317
|
+
37: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
318
|
+
38: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
319
|
+
39: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
320
|
+
40: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
321
|
+
41: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
322
|
+
42: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
323
|
+
43: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
324
|
+
44: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
325
|
+
45: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
326
|
+
46: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
327
|
+
47: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
328
|
+
48: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
329
|
+
49: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
330
|
+
50: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
331
|
+
51: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
332
|
+
52: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
333
|
+
53: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
334
|
+
54: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
335
|
+
55: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
336
|
+
56: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
337
|
+
57: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
338
|
+
58: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
339
|
+
59: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
340
|
+
60: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
341
|
+
61: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
342
|
+
62: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
343
|
+
63: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
344
|
+
64: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
345
|
+
65: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
346
|
+
66: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
347
|
+
67: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
348
|
+
68: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
349
|
+
69: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
350
|
+
70: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
351
|
+
71: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
352
|
+
72: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
353
|
+
73: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
354
|
+
74: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
355
|
+
75: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
356
|
+
76: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
357
|
+
77: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
358
|
+
78: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
359
|
+
79: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
360
|
+
80: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
361
|
+
81: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
362
|
+
82: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
363
|
+
83: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
364
|
+
84: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
365
|
+
85: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
366
|
+
86: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
367
|
+
87: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
368
|
+
88: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
369
|
+
89: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
370
|
+
90: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
371
|
+
91: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
372
|
+
92: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
373
|
+
93: typeof SYMBOL_ANY_DICTIONARY | Enum;
|
|
374
|
+
} & Record<number, typeof SYMBOL_ANY_DICTIONARY | Enum | undefined> & {
|
|
375
|
+
getByEnum: typeof getByEnum;
|
|
376
|
+
};
|
|
377
|
+
export default dictionaries;
|