@wayward/types 2.15.0-beta.dev.20251022.1 → 2.15.0-beta.dev.20251024.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/definitions/game/game/curse/Curse.d.ts +3 -2
  2. package/definitions/game/game/curse/CurseEvent.d.ts +11 -0
  3. package/definitions/game/game/curse/event/CurseEventHatedByTheWilds.d.ts +18 -0
  4. package/definitions/game/game/curse/event/CurseEventLovedByTheWilds.d.ts +18 -0
  5. package/definitions/game/game/entity/EntityMovable.d.ts +4 -0
  6. package/definitions/game/game/entity/ai/AI.d.ts +11 -7
  7. package/definitions/game/game/entity/creature/Creature.d.ts +7 -1
  8. package/definitions/game/game/entity/creature/CreatureManager.d.ts +1 -1
  9. package/definitions/game/game/entity/creature/zone/ICreatureZone.d.ts +17 -0
  10. package/definitions/game/game/entity/creature/zone/zones/arid/AridCreatureCombos.d.ts +13 -0
  11. package/definitions/game/game/entity/creature/zone/zones/coastal/CoastalCreatureCombos.d.ts +13 -0
  12. package/definitions/game/game/entity/creature/zone/zones/iceCap/IceCapCreatureCombos.d.ts +13 -0
  13. package/definitions/game/game/entity/creature/zone/zones/volcanic/VolcanicCreatureCombos.d.ts +13 -0
  14. package/definitions/game/game/entity/creature/zone/zones/wetlands/WetlandsCreatureCombos.d.ts +13 -0
  15. package/definitions/game/game/inspection/infoProviders/stat/TemperatureInfo.d.ts +18 -0
  16. package/definitions/game/game/tile/Tile.d.ts +1 -0
  17. package/definitions/game/game/tile/events/Fire.d.ts +1 -1
  18. package/definitions/game/language/Dictionary.d.ts +110 -110
  19. package/definitions/game/language/DictionaryMap.d.ts +218 -218
  20. package/definitions/game/language/Translation.d.ts +1 -1
  21. package/definitions/game/language/dictionary/UiTranslation.d.ts +632 -628
  22. package/definitions/game/renderer/notifier/INotifier.d.ts +4 -0
  23. package/definitions/game/renderer/world/WorldRenderer.d.ts +0 -1
  24. package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +7 -1
  25. package/definitions/game/utilities/Observer.d.ts +2 -0
  26. package/definitions/utilities/Errors.d.ts +1 -1
  27. package/definitions/utilities/log/ErrorReporting.d.ts +1 -0
  28. package/package.json +1 -1
@@ -111,8 +111,8 @@ declare namespace Curse {
111
111
  function reload(island: Island, isNew?: boolean): void;
112
112
  function spawnCurseEvents(island: Island, humans: Human[]): void;
113
113
  function attemptCurseEventSpawn(category: CurseCategory, human: Human, curse: number, humans: Human[], events: CurseEventInstance[]): CurseEventInstance | undefined;
114
- function attemptSpecificCurseEventSpawn(human: Human, type: CurseEventType, humans: Human[], curse?: number): CurseEventInstance | undefined;
115
- function attemptSpecificCurseEventSpawnOnPlayer(player: Human, curseType: CurseEventType): CurseEventInstance | undefined;
114
+ function attemptSpecificCurseEventSpawn(human: Human, type: CurseEventType, humans: Human[], curse?: number, force?: boolean | "full"): CurseEventInstance | undefined;
115
+ function attemptSpecificCurseEventSpawnOnPlayer(player: Human, curseType: CurseEventType, force: boolean | "full"): CurseEventInstance | undefined;
116
116
  function unload(island: Island): void;
117
117
  function cleanup(island: Island, humans?: Human[], isMorning?: boolean): void;
118
118
  function cleanupEphemerals(island: Island): void;
@@ -138,6 +138,7 @@ export interface CurseEventInstance {
138
138
  curse: number;
139
139
  point: IVector2;
140
140
  creatures?: number[];
141
+ savedData?: Record<string, any>;
141
142
  subscribers?: string[];
142
143
  scriptProcesses?: ScriptProcessState[];
143
144
  [SYMBOL_CURSE_EVENT_SUBSCRIBER_INSTANCES]?: Record<string, CurseEventSubscriber>;
@@ -81,7 +81,18 @@ export interface CurseEventContext {
81
81
  uninject(): void;
82
82
  uninject<T extends CurseEventSubscriber>(subscriber: Class<T>): void;
83
83
  toString(): string;
84
+ data<T>(def: CurseEventContextDataDefinition<T>): CurseEventContextData<T>;
84
85
  }
86
+ export interface CurseEventContextDataDefinition<T> {
87
+ readonly id: string;
88
+ initializer?(): T;
89
+ }
90
+ export interface CurseEventContextData<T> {
91
+ get(): T;
92
+ set(value: T): void;
93
+ }
94
+ export declare function CurseEventContextData<T>(id: string): CurseEventContextDataDefinition<T | undefined>;
95
+ export declare function CurseEventContextData<T>(id: string, initializer: () => T): CurseEventContextDataDefinition<T>;
85
96
  export interface CurseEventExtinguishOptions {
86
97
  /**
87
98
  * The number of flat ticks to reduce decays by
@@ -0,0 +1,18 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CurseEvent } from "@wayward/game/game/curse/CurseEvent";
12
+ import { IRange } from "@wayward/utilities/math/Range";
13
+ export declare const CURSE_EVENT_HATED_BY_WILDS_MIN_CHANCE = 0.01;
14
+ export declare const CURSE_EVENT_HATED_BY_WILDS_CURSE_MULTIPLIER: IRange<number>;
15
+ export declare const CURSE_EVENT_HATED_BY_WILDS_COOLDOWN: IRange<number>;
16
+ export declare const CURSE_EVENT_HATED_BY_WILDS_HOSTILE_PER_PROC_CAP = 5;
17
+ declare const _default: CurseEvent;
18
+ export default _default;
@@ -0,0 +1,18 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CurseEvent } from "@wayward/game/game/curse/CurseEvent";
12
+ import { IRange } from "@wayward/utilities/math/Range";
13
+ export declare const CURSE_EVENT_LOVED_BY_WILDS_MIN_CHANCE = 0.01;
14
+ export declare const CURSE_EVENT_LOVED_BY_WILDS_CURSE_MULTIPLIER: IRange<number>;
15
+ export declare const CURSE_EVENT_LOVED_BY_WILDS_RANDOM_HAPPINESS_AT_END: IRange<number>;
16
+ export declare const CURSE_EVENT_LOVED_BY_WILDS_COOLDOWN: IRange<number>;
17
+ declare const _default: CurseEvent;
18
+ export default _default;
@@ -161,6 +161,10 @@ export default abstract class EntityMovable<DescriptionType = unknown, TypeType
161
161
  * Gets movement progress and moves the state machine forward when the movement is completed
162
162
  */
163
163
  getMovementProgress(timeStamp: number): number;
164
+ /**
165
+ * Returns the Y offset when rendering this entity when it's flying
166
+ */
167
+ getFlyingOffsetY(movementProgress: number): number;
164
168
  protected onMovementCompleted(movingData: IMovingData): void;
165
169
  get isFlying(): boolean;
166
170
  get isFastMoving(): boolean;
@@ -73,7 +73,9 @@ export declare enum AiMaskType {
73
73
  RecentlyAlerted = 12,
74
74
  WrongLayerForZone = 13,
75
75
  RecentlySwappedLayers = 14,
76
- CanSwapLayersIfTamed = 15
76
+ CanSwapLayersIfTamed = 15,
77
+ NeutralDueToEvent = 16,
78
+ HostileDueToEvent = 17
77
79
  }
78
80
  export declare enum AiMaskOrder {
79
81
  Released = 0,
@@ -86,12 +88,14 @@ export declare enum AiMaskOrder {
86
88
  Hidden = 7,
87
89
  Frenzied = 8,
88
90
  Pacified = 9,
89
- WaitingForNoPlayerAdjacent = 10,
90
- Angered = 11,
91
- RecentlyAlerted = 12,
92
- WrongLayerForZone = 13,
93
- RecentlySwappedLayers = 14,
94
- CanSwapLayersIfTamed = 15
91
+ NeutralDueToEvent = 10,
92
+ HostileDueToEvent = 11,
93
+ WaitingForNoPlayerAdjacent = 12,
94
+ Angered = 13,
95
+ RecentlyAlerted = 14,
96
+ WrongLayerForZone = 15,
97
+ RecentlySwappedLayers = 16,
98
+ CanSwapLayersIfTamed = 17
95
99
  }
96
100
  export interface IAiMaskDescription {
97
101
  /**
@@ -109,7 +109,7 @@ export default class Creature extends EntityWithStats<ICreatureDescription, Crea
109
109
  load(): void;
110
110
  checkForBurn(moveType?: MoveType): boolean;
111
111
  private setOwner;
112
- tame(human: Human, bonus?: number): boolean;
112
+ tame(human: Human, bonusTime?: number): boolean;
113
113
  /**
114
114
  * Increases the creature's maximum health in the event of offering/re-taming and petting (to a lesser extent)
115
115
  */
@@ -164,6 +164,8 @@ export default class Creature extends EntityWithStats<ICreatureDescription, Crea
164
164
  getAttackOutcome(enemy: Human | Creature | undefined, force?: boolean, humans?: Human[], description?: ICreatureDescription, moveType?: MoveType): CreatureAttackOutcome;
165
165
  processAttack(description: ICreatureDescription, humans: Human[], moveType: MoveType | undefined, enemyIn: Human | Creature | undefined): boolean;
166
166
  getProducedTemperature(): number | undefined;
167
+ makeAberrant(): number | undefined;
168
+ unAberrant(restoreHealth: number): boolean;
167
169
  protected updateTileWhenMoving(fromTile: Tile, toTile: Tile): boolean;
168
170
  protected onStatChange(stat: IStat, oldValue: number, info: IStatChangeInfo): void;
169
171
  /**
@@ -219,6 +221,10 @@ export default class Creature extends EntityWithStats<ICreatureDescription, Crea
219
221
  private breakItems;
220
222
  private processAiChanges;
221
223
  private addAlertedMarker;
224
+ /**
225
+ * Used for offseting notifiers
226
+ */
227
+ getMovementOffsetY(timeStamp: number): number;
222
228
  /**
223
229
  * @returns Whether the creature has lost interest
224
230
  */
@@ -43,7 +43,7 @@ export default class CreatureManager extends EntityManager<Creature, IEntityRemo
43
43
  loadEntity(creature: Creature): void;
44
44
  static getName(creature: Creature | CreatureType, aberrant?: boolean, count?: number, article?: Article): TranslationImpl;
45
45
  getName(creature: Creature | CreatureType, aberrant?: boolean, count?: number, article?: Article): TranslationImpl;
46
- getHappinessLevel(human: Human, creature: Creature, bonus?: number): number;
46
+ calculateHappinessTameTime(human: Human, creature: Creature, bonusTime?: number): number;
47
47
  /**
48
48
  * Spawns a creature.
49
49
  * @param type The type of creature to spawn.
@@ -10,7 +10,9 @@
10
10
  */
11
11
  import type { DoodadType } from "@wayward/game/game/doodad/IDoodad";
12
12
  import type { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
13
+ import type { ItemType } from "@wayward/game/game/item/IItem";
13
14
  import type { TerrainType } from "@wayward/game/game/tile/ITerrain";
15
+ import type { TileEventType } from "@wayward/game/game/tile/ITileEvent";
14
16
  import type { PartOfDay } from "@wayward/game/game/time/ITimeManager";
15
17
  import type { IVector2, IVector3 } from "@wayward/game/utilities/math/IVector";
16
18
  import type WorldZ from "@wayward/utilities/game/WorldZ";
@@ -42,6 +44,7 @@ export interface IBiomeCreatureZones {
42
44
  guardians?: IBiomeGuardianZoneTiers;
43
45
  tileReplacements?: IBiomeTileReplacements;
44
46
  doodadReplacements?: IBiomeDoodadReplacements;
47
+ creatureCombos?: IBiomeCreatureCombos;
45
48
  }
46
49
  export type IBiomeCreatureZoneTiers = PartialRecord<`tier${number}`, IBiomeCreatureZoneTier>;
47
50
  export type IBiomeCreatureZoneTier = Map<WorldZ, IBiomeCreatureZoneSpawnGroup[]>;
@@ -68,6 +71,20 @@ export interface IBiomeDoodadReplacement {
68
71
  }
69
72
  export type IBiomeDoodadReplacements = PartialRecord<`tier${number}`, IBiomeDoodadReplacement[]>;
70
73
  export declare function doodadReplacementsTiers(replacements: IBiomeDoodadReplacements): IBiomeDoodadReplacements;
74
+ export interface IBiomeCreatureCombo {
75
+ /** The doodad to spawn when the creature is present. */
76
+ doodad?: DoodadType;
77
+ /** The tile event to spawn when the creature is present. */
78
+ tileEvent?: TileEventType;
79
+ /** The item to spawn when the creature is present. */
80
+ item?: ItemType;
81
+ /** `0` = 0% chance of spawning when the creature is present, `1` = 100%. Defaults to `1`. */
82
+ chance?: number;
83
+ /** Number of times to attempt spawning in the zone. Defaults to `1`. */
84
+ attempts?: number;
85
+ }
86
+ export type IBiomeCreatureCombos = PartialRecord<CreatureType, IBiomeCreatureCombo[]>;
87
+ export declare function creatureCombos(spawns: IBiomeCreatureCombos): IBiomeCreatureCombos;
71
88
  /**
72
89
  * The default size of a zone, on each axis. IE, a value of 60 is 60 tiles wide and 60 tiles long.
73
90
  */
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
12
+ declare const _default: Partial<Record<CreatureType, import("@wayward/game/game/entity/creature/zone/ICreatureZone").IBiomeCreatureCombo[]>>;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
12
+ declare const _default: Partial<Record<CreatureType, import("@wayward/game/game/entity/creature/zone/ICreatureZone").IBiomeCreatureCombo[]>>;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
12
+ declare const _default: Partial<Record<CreatureType, import("@wayward/game/game/entity/creature/zone/ICreatureZone").IBiomeCreatureCombo[]>>;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
12
+ declare const _default: Partial<Record<CreatureType, import("@wayward/game/game/entity/creature/zone/ICreatureZone").IBiomeCreatureCombo[]>>;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { CreatureType } from "@wayward/game/game/entity/creature/ICreature";
12
+ declare const _default: Partial<Record<CreatureType, import("@wayward/game/game/entity/creature/zone/ICreatureZone").IBiomeCreatureCombo[]>>;
13
+ export default _default;
@@ -0,0 +1,18 @@
1
+ /*!
2
+ * Copyright 2011-2025 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 { InfoProvider } from "@wayward/game/game/inspection/InfoProvider";
12
+ import { StatInfo } from "@wayward/game/game/inspection/infoProviders/stat/StatInfo";
13
+ export declare enum TemperatureInfoClasses {
14
+ }
15
+ export default class TemperatureInfo extends StatInfo {
16
+ private readonly temperatureFactors;
17
+ get(): InfoProvider[];
18
+ }
@@ -474,6 +474,7 @@ export default class Tile implements IVector4, Partial<ITileContainer>, IFieldOf
474
474
  * Array version of tilesAround
475
475
  */
476
476
  getTilesAround(includeCurrentTile?: boolean, includeCorners?: boolean): Tile[];
477
+ getFlyingOffset(): number;
477
478
  /**
478
479
  * IterableIterator version of TileHelpers.getTilesAround
479
480
  */
@@ -8,7 +8,7 @@
8
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
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
- import type { ITileEventDescription } from "@wayward/game/game/tile/ITileEvent";
11
+ import { type ITileEventDescription } from "@wayward/game/game/tile/ITileEvent";
12
12
  import type TileEvent from "@wayward/game/game/tile/TileEvent";
13
13
  interface IFireDescription extends ITileEventDescription {
14
14
  spread(tileEvent: TileEvent, ticks: number): void;
@@ -35,115 +35,115 @@ declare enum Dictionary {
35
35
  CurseComponent = 23,
36
36
  CurseEvent = 24,
37
37
  CurseEventGroup = 25,
38
- DamageType = 26,
39
- Deity = 27,
40
- DeitySymbol = 28,
41
- Dialog = 29,
42
- Direction = 30,
43
- DisplayLevel = 31,
44
- DoctorCure = 32,
45
- DoctorMethod = 33,
46
- Doodad = 34,
47
- DoodadExtra = 35,
48
- DoodadGroup = 36,
49
- DrawnMapTheme = 37,
50
- DurabilityLevel = 38,
51
- EquipEffect = 39,
52
- EquipSlot = 40,
53
- ExhaustionLevel = 41,
54
- FireStage = 42,
55
- FontStyle = 43,
56
- GameEndMessage = 44,
57
- GameMode = 45,
58
- Growth = 46,
59
- GrowthFungus = 47,
60
- Health = 48,
61
- HealthAccuracy = 49,
62
- HelpArticle = 50,
63
- HighscoreSort = 51,
64
- HumanName = 52,
65
- HungerLevel = 53,
66
- Input = 54,
67
- InspectType = 55,
68
- InterruptChoice = 56,
69
- IslandModifier = 57,
70
- IslandName = 58,
71
- IslandNameBiomeDescriptor = 59,
72
- IslandNameBiomeNoun = 60,
73
- IslandNameModifierDescriptor = 61,
74
- IslandNameOverrunWithCreatureDescriptor = 62,
75
- Item = 63,
76
- ItemAffixPostReformat = 64,
77
- ItemAffixPreReformat = 65,
78
- ItemExtra = 66,
79
- ItemGroup = 67,
80
- JoinServerRetryReason = 68,
81
- Label = 69,
82
- Level = 70,
83
- LighthouseName = 71,
84
- Loading = 72,
85
- Macro = 73,
86
- MagicalPropertyAffix = 74,
87
- MagicalPropertyType = 75,
88
- MagicalSubPropertyAffix = 76,
89
- MapQuality = 77,
90
- MenuBarButton = 78,
91
- Message = 79,
92
- MessagesDefaultFilter = 80,
93
- MessagesTimestampMode = 81,
94
- Milestone = 82,
95
- MilestoneModifierGroup = 83,
96
- MilestoneSort = 84,
97
- Misc = 85,
98
- ModLoadError = 86,
99
- ModLoadFailureReason = 87,
100
- ModProvide = 88,
101
- ModSort = 89,
102
- ModType = 90,
103
- MultiplayerCompatibility = 91,
104
- MultiplayerDisconnectReason = 92,
105
- MusicPlaylist = 93,
106
- Note = 94,
107
- Npc = 95,
108
- Number = 96,
109
- PartOfDay = 97,
110
- Prompt = 98,
111
- QuadrantComponent = 99,
112
- QuadrantComponentContextMenuAction = 100,
113
- Quality = 101,
114
- Quest = 102,
115
- QuestRequirement = 103,
116
- RecipeLevel = 104,
117
- Region = 105,
118
- Riddle = 106,
119
- RunekeeperDomain = 107,
120
- RunekeeperDomainEvent = 108,
121
- SaveImportErrorReason = 109,
122
- SaveSlotSort = 110,
123
- Skill = 111,
124
- SkillsSort = 112,
125
- Source = 113,
126
- Stat = 114,
127
- Status = 115,
128
- StatusEffect = 116,
129
- StatusThreatLevel = 117,
130
- SteamInputKeyboardPosition = 118,
131
- TeamMemberResponsibility = 119,
132
- TemperatureType = 120,
133
- Term = 121,
134
- Terrain = 122,
135
- ThirstLevel = 123,
136
- TileEvent = 124,
137
- TooltipVisibilityOption = 125,
138
- Ui = 126,
139
- UiQuadrant = 127,
140
- UnableToJoinReason = 128,
141
- UnlockedRecipesStrategy = 129,
142
- UsableActionType = 130,
143
- Website = 131,
144
- WeightStatus = 132,
145
- WorldLayer = 133,
146
- CustomModifier = 134,
147
- GameOptionsIcon = 135
38
+ CustomModifier = 26,
39
+ DamageType = 27,
40
+ Deity = 28,
41
+ DeitySymbol = 29,
42
+ Dialog = 30,
43
+ Direction = 31,
44
+ DisplayLevel = 32,
45
+ DoctorCure = 33,
46
+ DoctorMethod = 34,
47
+ Doodad = 35,
48
+ DoodadExtra = 36,
49
+ DoodadGroup = 37,
50
+ DrawnMapTheme = 38,
51
+ DurabilityLevel = 39,
52
+ EquipEffect = 40,
53
+ EquipSlot = 41,
54
+ ExhaustionLevel = 42,
55
+ FireStage = 43,
56
+ FontStyle = 44,
57
+ GameEndMessage = 45,
58
+ GameMode = 46,
59
+ GameOptionsIcon = 47,
60
+ Growth = 48,
61
+ GrowthFungus = 49,
62
+ Health = 50,
63
+ HealthAccuracy = 51,
64
+ HelpArticle = 52,
65
+ HighscoreSort = 53,
66
+ HumanName = 54,
67
+ HungerLevel = 55,
68
+ Input = 56,
69
+ InspectType = 57,
70
+ InterruptChoice = 58,
71
+ IslandModifier = 59,
72
+ IslandName = 60,
73
+ IslandNameBiomeDescriptor = 61,
74
+ IslandNameBiomeNoun = 62,
75
+ IslandNameModifierDescriptor = 63,
76
+ IslandNameOverrunWithCreatureDescriptor = 64,
77
+ Item = 65,
78
+ ItemAffixPostReformat = 66,
79
+ ItemAffixPreReformat = 67,
80
+ ItemExtra = 68,
81
+ ItemGroup = 69,
82
+ JoinServerRetryReason = 70,
83
+ Label = 71,
84
+ Level = 72,
85
+ LighthouseName = 73,
86
+ Loading = 74,
87
+ Macro = 75,
88
+ MagicalPropertyAffix = 76,
89
+ MagicalPropertyType = 77,
90
+ MagicalSubPropertyAffix = 78,
91
+ MapQuality = 79,
92
+ MenuBarButton = 80,
93
+ Message = 81,
94
+ MessagesDefaultFilter = 82,
95
+ MessagesTimestampMode = 83,
96
+ Milestone = 84,
97
+ MilestoneModifierGroup = 85,
98
+ MilestoneSort = 86,
99
+ Misc = 87,
100
+ ModLoadError = 88,
101
+ ModLoadFailureReason = 89,
102
+ ModProvide = 90,
103
+ ModSort = 91,
104
+ ModType = 92,
105
+ MultiplayerCompatibility = 93,
106
+ MultiplayerDisconnectReason = 94,
107
+ MusicPlaylist = 95,
108
+ Note = 96,
109
+ Npc = 97,
110
+ Number = 98,
111
+ PartOfDay = 99,
112
+ Prompt = 100,
113
+ QuadrantComponent = 101,
114
+ QuadrantComponentContextMenuAction = 102,
115
+ Quality = 103,
116
+ Quest = 104,
117
+ QuestRequirement = 105,
118
+ RecipeLevel = 106,
119
+ Region = 107,
120
+ Riddle = 108,
121
+ RunekeeperDomain = 109,
122
+ RunekeeperDomainEvent = 110,
123
+ SaveImportErrorReason = 111,
124
+ SaveSlotSort = 112,
125
+ Skill = 113,
126
+ SkillsSort = 114,
127
+ Source = 115,
128
+ Stat = 116,
129
+ Status = 117,
130
+ StatusEffect = 118,
131
+ StatusThreatLevel = 119,
132
+ SteamInputKeyboardPosition = 120,
133
+ TeamMemberResponsibility = 121,
134
+ TemperatureType = 122,
135
+ Term = 123,
136
+ Terrain = 124,
137
+ ThirstLevel = 125,
138
+ TileEvent = 126,
139
+ TooltipVisibilityOption = 127,
140
+ Ui = 128,
141
+ UiQuadrant = 129,
142
+ UnableToJoinReason = 130,
143
+ UnlockedRecipesStrategy = 131,
144
+ UsableActionType = 132,
145
+ Website = 133,
146
+ WeightStatus = 134,
147
+ WorldLayer = 135
148
148
  }
149
149
  export default Dictionary;