@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,12 +1,12 @@
|
|
|
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
|
-
declare const inputs: Record<string, string>;
|
|
12
|
-
export default inputs;
|
|
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
|
+
declare const inputs: Record<string, string>;
|
|
12
|
+
export default inputs;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { Level } from "game/inspection/infoProviders/ILevel";
|
|
12
|
-
declare const levels: Record<Level, string>;
|
|
13
|
-
export default levels;
|
|
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 { Level } from "game/inspection/infoProviders/ILevel";
|
|
12
|
+
declare const levels: Record<Level, string>;
|
|
13
|
+
export default levels;
|
|
@@ -1,12 +1,12 @@
|
|
|
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
|
-
declare const macros: Record<string, string>;
|
|
12
|
-
export default macros;
|
|
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
|
+
declare const macros: Record<string, string>;
|
|
12
|
+
export default macros;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MenuBarButtonType } from "ui/screen/screens/game/static/menubar/IMenuBarButton";
|
|
12
|
-
declare const menuBarButtons: Record<MenuBarButtonType, string>;
|
|
13
|
-
export default menuBarButtons;
|
|
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 { MenuBarButtonType } from "ui/screen/screens/game/static/menubar/IMenuBarButton";
|
|
12
|
+
declare const menuBarButtons: Record<MenuBarButtonType, string>;
|
|
13
|
+
export default menuBarButtons;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MessageFilterDefault } from "ui/screen/screens/game/IMessages";
|
|
12
|
-
declare const messagesDefaultFilters: Descriptions<MessageFilterDefault, string>;
|
|
13
|
-
export default messagesDefaultFilters;
|
|
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 { MessageFilterDefault } from "ui/screen/screens/game/IMessages";
|
|
12
|
+
declare const messagesDefaultFilters: Descriptions<MessageFilterDefault, string>;
|
|
13
|
+
export default messagesDefaultFilters;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MessageTimestamp } from "ui/screen/screens/game/IGameScreenApi";
|
|
12
|
-
declare const messagesTimestampModes: Descriptions<MessageTimestamp, string>;
|
|
13
|
-
export default messagesTimestampModes;
|
|
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 { MessageTimestamp } from "ui/screen/screens/game/IGameScreenApi";
|
|
12
|
+
declare const messagesTimestampModes: Descriptions<MessageTimestamp, string>;
|
|
13
|
+
export default messagesTimestampModes;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MilestoneModifierGroup } from "game/options/modifiers/milestone/MilestoneModifier";
|
|
12
|
-
declare const milestoneModifierGroups: Descriptions<MilestoneModifierGroup, string>;
|
|
13
|
-
export default milestoneModifierGroups;
|
|
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 { MilestoneModifierGroup } from "game/options/modifiers/milestone/MilestoneModifier";
|
|
12
|
+
declare const milestoneModifierGroups: Descriptions<MilestoneModifierGroup, string>;
|
|
13
|
+
export default milestoneModifierGroups;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { CanLoadState } from "mod/IModManager";
|
|
12
|
-
declare const modLoadErrors: OptionalDescriptions<CanLoadState, string>;
|
|
13
|
-
export default modLoadErrors;
|
|
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 { CanLoadState } from "mod/IModManager";
|
|
12
|
+
declare const modLoadErrors: OptionalDescriptions<CanLoadState, string>;
|
|
13
|
+
export default modLoadErrors;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MultiplayerCompatibility } from "language/dictionary/MultiplayerCompatibility";
|
|
12
|
-
declare const multiplayerCompatibilities: Record<MultiplayerCompatibility, string>;
|
|
13
|
-
export default multiplayerCompatibilities;
|
|
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 { MultiplayerCompatibility } from "language/dictionary/MultiplayerCompatibility";
|
|
12
|
+
declare const multiplayerCompatibilities: Record<MultiplayerCompatibility, string>;
|
|
13
|
+
export default multiplayerCompatibilities;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { MusicPlaylist } from "save/data/ISaveDataGlobal";
|
|
12
|
-
declare const musicPlaylists: Descriptions<MusicPlaylist, [string, string]>;
|
|
13
|
-
export default musicPlaylists;
|
|
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 { MusicPlaylist } from "save/data/ISaveDataGlobal";
|
|
12
|
+
declare const musicPlaylists: Descriptions<MusicPlaylist, [string, string]>;
|
|
13
|
+
export default musicPlaylists;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { PowerMode } from "save/data/ISaveDataGlobal";
|
|
12
|
-
declare const powerModes: Descriptions<PowerMode, string>;
|
|
13
|
-
export default powerModes;
|
|
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 { PowerMode } from "save/data/ISaveDataGlobal";
|
|
12
|
+
declare const powerModes: Descriptions<PowerMode, string>;
|
|
13
|
+
export default powerModes;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { Responsibility } from "ui/screen/screens/menu/menus/main/IAbout";
|
|
12
|
-
declare const teamMemberResponsibilities: Descriptions<Responsibility, string>;
|
|
13
|
-
export default teamMemberResponsibilities;
|
|
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 { Responsibility } from "ui/screen/screens/menu/menus/main/IAbout";
|
|
12
|
+
declare const teamMemberResponsibilities: Descriptions<Responsibility, string>;
|
|
13
|
+
export default teamMemberResponsibilities;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 Ui from "language/dictionary/UiTranslation";
|
|
12
|
-
declare const uiTranslations: Descriptions<Ui, string>;
|
|
13
|
-
export default uiTranslations;
|
|
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 Ui from "language/dictionary/UiTranslation";
|
|
12
|
+
declare const uiTranslations: Descriptions<Ui, string>;
|
|
13
|
+
export default uiTranslations;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { UnlockedRecipesStrategy } from "game/options/IGameOptions";
|
|
12
|
-
declare const unlockedRecipesStrategies: Descriptions<UnlockedRecipesStrategy, string>;
|
|
13
|
-
export default unlockedRecipesStrategies;
|
|
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 { UnlockedRecipesStrategy } from "game/options/IGameOptions";
|
|
12
|
+
declare const unlockedRecipesStrategies: Descriptions<UnlockedRecipesStrategy, string>;
|
|
13
|
+
export default unlockedRecipesStrategies;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { Website } from "ui/screen/screens/menu/menus/main/component/IWebsite";
|
|
12
|
-
declare const websites: Record<Website, string>;
|
|
13
|
-
export default websites;
|
|
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 { Website } from "ui/screen/screens/menu/menus/main/component/IWebsite";
|
|
12
|
+
declare const websites: Record<Website, string>;
|
|
13
|
+
export default websites;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 Choice from "language/dictionary/InterruptChoice";
|
|
12
|
-
declare const interruptChoices: Descriptions<Choice, string>;
|
|
13
|
-
export default interruptChoices;
|
|
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 Choice from "language/dictionary/InterruptChoice";
|
|
12
|
+
declare const interruptChoices: Descriptions<Choice, string>;
|
|
13
|
+
export default interruptChoices;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { Load } from "game/meta/Loading";
|
|
12
|
-
declare const loading: Record<Load, string | string[]>;
|
|
13
|
-
export default loading;
|
|
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 { Load } from "game/meta/Loading";
|
|
12
|
+
declare const loading: Record<Load, string | string[]>;
|
|
13
|
+
export default loading;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { ModLoadFailureReason } from "mod/IModManager";
|
|
12
|
-
declare const modLoadFailureReasons: Descriptions<ModLoadFailureReason, string>;
|
|
13
|
-
export default modLoadFailureReasons;
|
|
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 { ModLoadFailureReason } from "mod/IModManager";
|
|
12
|
+
declare const modLoadFailureReasons: Descriptions<ModLoadFailureReason, string>;
|
|
13
|
+
export default modLoadFailureReasons;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { DisconnectReason } from "multiplayer/IMultiplayer";
|
|
12
|
-
declare const disconnectReasons: Descriptions<DisconnectReason, string>;
|
|
13
|
-
export default disconnectReasons;
|
|
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 { DisconnectReason } from "multiplayer/IMultiplayer";
|
|
12
|
+
declare const disconnectReasons: Descriptions<DisconnectReason, string>;
|
|
13
|
+
export default disconnectReasons;
|
package/definitions/game/language/english/ui/interrupt/MultiplayerJoinServerRetryReason.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
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 { JoinServerRetryReason } from "multiplayer/IMultiplayer";
|
|
12
|
-
declare const joinServerRetryReasons: Descriptions<JoinServerRetryReason, string>;
|
|
13
|
-
export default joinServerRetryReasons;
|
|
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 { JoinServerRetryReason } from "multiplayer/IMultiplayer";
|
|
12
|
+
declare const joinServerRetryReasons: Descriptions<JoinServerRetryReason, string>;
|
|
13
|
+
export default joinServerRetryReasons;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { UnableToJoinReason } from "multiplayer/IMultiplayer";
|
|
12
|
-
declare const unableToJoinReasons: Descriptions<UnableToJoinReason, string>;
|
|
13
|
-
export default unableToJoinReasons;
|
|
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 { UnableToJoinReason } from "multiplayer/IMultiplayer";
|
|
12
|
+
declare const unableToJoinReasons: Descriptions<UnableToJoinReason, string>;
|
|
13
|
+
export default unableToJoinReasons;
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { Prompt } from "game/meta/prompt/IPrompt";
|
|
12
|
-
declare const prompts: Descriptions<Prompt, string | string[]>;
|
|
13
|
-
export default prompts;
|
|
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 { Prompt } from "game/meta/prompt/IPrompt";
|
|
12
|
+
declare const prompts: Descriptions<Prompt, string | string[]>;
|
|
13
|
+
export default prompts;
|