@wayward/types 2.14.0-beta.dev.20241119.1 → 2.14.0-beta.dev.20241121.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.
@@ -77,6 +77,7 @@ export interface IWorldLayerCPP {
77
77
  export interface IDijkstraMap {
78
78
  getNode(x: number, y: number): INavigationNode;
79
79
  updateNode(x: number, y: number, penalty: number, disabled: boolean): void;
80
+ connectNodes(x1: number, y1: number, x2: number, y2: number, direction: number): void;
80
81
  updateOrigin(origin: INavigationNode): void;
81
82
  findPath(end: INavigationNode): {
82
83
  success: boolean;
@@ -17,6 +17,7 @@ export declare const actionDescriptionsSlow: {
17
17
  51: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemNearby, import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemInventory], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/actions/AddFuel").IAddFuelCanUse, [import("../../item/Item").default, import("../../item/Item").default]>;
18
18
  95: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemInventory, [arg1: import("@wayward/game/game/entity/action/IAction").ActionArgument.Undefined, import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemInventory]], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/actions/Alter").IAlterCanUse, [import("../../item/Item").default, (import("../../item/Item").default | undefined)?]>;
19
19
  75: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemNearby], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("./actions/ConsumeItem").IConsumeItemCanUse, [import("../../item/Item").default]>;
20
+ 139: import("./Action").Action<[], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, []>;
20
21
  78: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemNearby], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/actions/AttachContainer").IAttachContainerCanUse, [import("../../item/Item").default]>;
21
22
  3: import("./Action").Action<[[arg1: import("@wayward/game/game/entity/action/IAction").ActionArgument.Undefined, import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemInventory], [import("@wayward/game/game/entity/action/IAction").ActionArgument.Undefined, import("./argument/ActionArgumentEnum").default<import("../IEntity").AttackType, "MeleeWeapon" | "HandToHand" | "RangedWeapon" | "ThrowItem">], [arg1: import("@wayward/game/game/entity/action/IAction").ActionArgument.Undefined, import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemInventory]], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/actions/Attack").IAttackCanUse, [(import("../../item/Item").default | undefined)?, (import("../IEntity").AttackType | undefined)?, (import("../../item/Item").default | undefined)?]>;
22
23
  28: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.ItemNearby, [arg1: import("@wayward/game/game/entity/action/IAction").ActionArgument.Undefined, import("@wayward/game/game/entity/action/IAction").ActionArgument.Tile]], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/actions/Build").IBuildCanUse, [import("../../item/Item").default, (import("../../tile/Tile").default | undefined)?]>;
@@ -180,5 +181,4 @@ export declare const actionDescriptionsSlow: {
180
181
  138: import("./Action").Action<[import("@wayward/game/game/entity/action/IAction").ActionArgument.Tile], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, {
181
182
  usable: true;
182
183
  }, [import("../../tile/Tile").default]>;
183
- 139: import("./Action").Action<[], import("../Human").default<unknown, number, import("../../reference/IReferenceManager").ReferenceType.NPC | import("../../reference/IReferenceManager").ReferenceType.Player>, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, []>;
184
184
  };
@@ -17,173 +17,173 @@ declare enum Message {
17
17
  ActionAlterAltered = 5,
18
18
  ActionAlterFailed = 6,
19
19
  ActionAlterNotPossible = 7,
20
- ActionAttachAlreadyHasItem = 8,
21
- ActionAttachAttachedItem = 9,
22
- ActionAttachAttachingItem = 10,
23
- ActionAttachCannotAttach = 11,
24
- ActionAttachNothingToAttachItemTo = 12,
25
- ActionBuildTooDeep = 13,
26
- ActionButcherReleasesLava = 14,
27
- ActionCageCreatureCannotBeCaged = 15,
28
- ActionCageCreatureNoCreature = 16,
29
- ActionCastAreaOverfished = 17,
30
- ActionConsumeItemTypeStats = 18,
31
- ActionContextAllowedFireToSpread = 19,
32
- ActionContextDamagedCreatureWith = 20,
33
- ActionContextDamagedHuman = 21,
34
- ActionContextDamagedHumanWith = 22,
35
- ActionContextDamagedPet = 23,
36
- ActionContextGainedSkill = 24,
37
- ActionContextKilledCreature = 25,
38
- ActionContextKilledPlayer = 26,
39
- ActionContextKilledPlayerWithPet = 27,
40
- ActionContextRested = 28,
41
- ActionContextSlept = 29,
42
- ActionContextTamedCreature = 30,
43
- ActionContextTrampledFire = 31,
44
- ActionCraftEfficacy = 32,
45
- ActionCraftEfficacyHigh = 33,
46
- ActionCraftEfficacyHighest = 34,
47
- ActionCraftEfficacyLow = 35,
48
- ActionCraftEfficacyLowest = 36,
49
- ActionCraftEfficacyMed = 37,
50
- ActionCraftEfficacyPercent = 38,
51
- ActionCraftYouLackTheRequirements = 39,
52
- ActionDetachContainerDetachContainer = 40,
53
- ActionDetachContainerNoDetach = 41,
54
- ActionDigTooDeep = 42,
55
- ActionDigWaterFilledHole = 43,
56
- ActionDisassembleNoItemsSalvaged = 44,
57
- ActionDisassembleSalvaged = 45,
58
- ActionDismantleSeparated = 46,
59
- ActionDisplayItemDisplayed = 47,
60
- ActionDisplayItemEmptyContainerBeforehand = 48,
61
- ActionDisplayItemReturned = 49,
62
- ActionDrinkInFrontNoDrink = 50,
63
- ActionDropCannotUseBlocked = 51,
64
- ActionDropCannotUseItemEquipped = 52,
65
- ActionDropCannotUseItemProtected = 53,
66
- ActionDropCannotUseItemProtectedDangerous = 54,
67
- ActionDropCannotUseNoItems = 55,
68
- ActionDropCannotUseNoRoomMultipleItems = 56,
69
- ActionDumpItemsCannotUseBlocked = 57,
70
- ActionDumpItemsCannotUseNothingToDumpOut = 58,
71
- ActionDumpItemsDumpedItems = 59,
72
- ActionEnhanceEnhanced = 60,
73
- ActionEnhanceFailed = 61,
74
- ActionEnhanceNotPossible = 62,
75
- ActionEquipWillBreakOnDamage = 63,
76
- ActionFishingNothingBiting = 64,
77
- ActionFishingSlipped = 65,
78
- ActionFishingTooShallow = 66,
79
- ActionInvoke = 67,
80
- ActionInvokeCannotUseSilence = 68,
81
- ActionInvokeChaosNoEffect = 69,
82
- ActionInvokeEvilCreaturesAttracted = 70,
83
- ActionInvokeEvilCreaturesNoneSummoned = 71,
84
- ActionInvokeGoodCreaturesPacified = 72,
85
- ActionInvokeGoodCreaturesPacifiedAttacked = 73,
86
- ActionInvokeGoodCreaturesPacifiedNone = 74,
87
- ActionJumpCannotJump = 75,
88
- ActionMeleeNothingToAttack = 76,
89
- ActionMoveItemCannotUseContainerTooFarAway = 77,
90
- ActionMoveItemCannotUseEquipped = 78,
91
- ActionMoveItemCannotUseFromInvalidContainer = 79,
92
- ActionMoveItemCannotUseInvalidContainer = 80,
93
- ActionMoveItemCannotUseItemFilteredOut = 81,
94
- ActionMoveItemCannotUseItemQualityOrTypeIncorrect = 82,
95
- ActionMoveItemCannotUseItemTooFarAway = 83,
96
- ActionMoveItemCannotUseMovingFromMultipleContainers = 84,
97
- ActionMoveItemCannotUseNoContainerToMoveTo = 85,
98
- ActionMoveItemCannotUseNoItems = 86,
99
- ActionMoveItemCannotUseNoRoom = 87,
100
- ActionMoveItemCannotUseProtected = 88,
101
- ActionMoveToSwimOffEdgeCannotCombatTides = 89,
102
- ActionNavigateMoon = 90,
103
- ActionNavigateNotOverworld = 91,
104
- ActionNavigateSun = 92,
105
- ActionNavigateUseSextant = 93,
106
- ActionPetCreatureRefused = 94,
107
- ActionPetNoTamedCreature = 95,
108
- ActionPickUpAllItemsNoItems = 96,
109
- ActionPickUpDoodadCannotUseContainsItems = 97,
110
- ActionPickUpExcrementNoExcrement = 98,
111
- ActionPickUpItemNoItem = 99,
112
- ActionPickUpNoPickUp = 100,
113
- ActionPourNoEffect = 101,
114
- ActionRefineNoDurability = 102,
115
- ActionReleaseNoTamedCreature = 103,
116
- ActionRenameIsland = 104,
117
- ActionRepairMaxDurabilityTooLow = 105,
118
- ActionReshapeFailed = 106,
119
- ActionReshapeNotPossibleBonus = 107,
120
- ActionReshapeReshaped = 108,
121
- ActionSacrificeNoRunes = 109,
122
- ActionSacrificeRunesSacrificed = 110,
123
- ActionSacrificeRunesSacrificedNothingUpgraded = 111,
124
- ActionSacrificeRunesSacrificedUpgradedChaos = 112,
125
- ActionSacrificeRunesSacrificedUpgradedEvil = 113,
126
- ActionSacrificeRunesSacrificedUpgradedGood = 114,
127
- ActionSailToCivilizationNotInsideBoat = 115,
128
- ActionSailToIsland = 116,
129
- ActionSailToIslandArrived = 117,
130
- ActionSailToIslandCannotUseCannotReachEdge = 118,
131
- ActionSailToIslandCannotUseCannotReachPort = 119,
132
- ActionSailToIslandCannotUseGhost = 120,
133
- ActionSailToIslandCannotUseInvalidDestination = 121,
134
- ActionSailToIslandCannotUseNoDestination = 122,
135
- ActionSailToIslandCannotUseNotEnoughStamina = 123,
136
- ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 124,
137
- ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 125,
138
- ActionSailToIslandPlayerArriving = 126,
139
- ActionSailToIslandPlayerDeparting = 127,
140
- ActionSetCreatureAiAlreadyCommanded = 128,
141
- ActionSetCreatureAiCannotCommand = 129,
142
- ActionSetCreatureAiNotEnoughSkill = 130,
143
- ActionSetCreatureAiNotEnoughTames = 131,
144
- ActionSetDownNotEnoughRoom = 132,
145
- ActionShipToIslandNoDestination = 133,
146
- ActionSwapEquipmentCannotUseNoEquipmentToSwap = 134,
147
- ActionTameCreatureTamed = 135,
148
- ActionTameNoCreature = 136,
149
- ActionTestDepthNothingToTest = 137,
150
- ActionTestDepthWell = 138,
151
- ActionToggleContainerCannotUseAlreadyClosed = 139,
152
- ActionToggleContainerCannotUseNoContainer = 140,
153
- ActionToggleContainerCannotUseNoContainerToClose = 141,
154
- ActionToggleContainerCannotUseNoContainerToOpen = 142,
155
- ActionToggleContainerCannotUseNotAccessible = 143,
156
- ActionToggleContainerCannotUseUnknownContainer = 144,
157
- ActionToggleDoorNoDoor = 145,
158
- ActionToggleHitchAlreadyHitched = 146,
159
- ActionToggleHitchAlreadyUnhitched = 147,
160
- ActionToggleHitchNoCreature = 148,
161
- ActionToggleHitchNoHitch = 149,
162
- ActionToggleTilledAlreadyPacked = 150,
163
- ActionToggleTilledAlreadyTilled = 151,
164
- ActionToggleTilledDug = 152,
165
- ActionTradeCannotUseExceedsCarryWeight = 153,
166
- ActionTradeCannotUseNotEnoughCredit = 154,
167
- ActionTradeCannotUseNothingToTrade = 155,
168
- ActionTradeCannotUseTradedTooMuch = 156,
169
- ActionTradeCreditChange = 157,
170
- ActionTradeCreditChangeDecrease = 158,
171
- ActionTradeCreditChangeIncrease = 159,
172
- ActionTradeDialogue1 = 160,
173
- ActionTradeDialogue2 = 161,
174
- ActionTradeDialogue3 = 162,
175
- ActionTradeDialogue4 = 163,
176
- ActionTradeIndicateUntradable = 164,
177
- ActionTradeMerchantItems = 165,
178
- ActionTradeYourItems = 166,
179
- ActionUncageCannotUncageHere = 167,
180
- ActionUpgradeFailed = 168,
181
- ActionUpgradeNotMagical = 169,
182
- ActionUpgradeNotPossible = 170,
183
- ActionUpgradeUpgraded = 171,
184
- ActionUseItemWeaponNeeded = 172,
185
- ActionViewItemsCannotUseBlocked = 173,
186
- ActionAscendDescendNotCaveEntrance = 174,
20
+ ActionAscendDescendNotCaveEntrance = 8,
21
+ ActionAttachAlreadyHasItem = 9,
22
+ ActionAttachAttachedItem = 10,
23
+ ActionAttachAttachingItem = 11,
24
+ ActionAttachCannotAttach = 12,
25
+ ActionAttachNothingToAttachItemTo = 13,
26
+ ActionBuildTooDeep = 14,
27
+ ActionButcherReleasesLava = 15,
28
+ ActionCageCreatureCannotBeCaged = 16,
29
+ ActionCageCreatureNoCreature = 17,
30
+ ActionCastAreaOverfished = 18,
31
+ ActionConsumeItemTypeStats = 19,
32
+ ActionContextAllowedFireToSpread = 20,
33
+ ActionContextDamagedCreatureWith = 21,
34
+ ActionContextDamagedHuman = 22,
35
+ ActionContextDamagedHumanWith = 23,
36
+ ActionContextDamagedPet = 24,
37
+ ActionContextGainedSkill = 25,
38
+ ActionContextKilledCreature = 26,
39
+ ActionContextKilledPlayer = 27,
40
+ ActionContextKilledPlayerWithPet = 28,
41
+ ActionContextRested = 29,
42
+ ActionContextSlept = 30,
43
+ ActionContextTamedCreature = 31,
44
+ ActionContextTrampledFire = 32,
45
+ ActionCraftEfficacy = 33,
46
+ ActionCraftEfficacyHigh = 34,
47
+ ActionCraftEfficacyHighest = 35,
48
+ ActionCraftEfficacyLow = 36,
49
+ ActionCraftEfficacyLowest = 37,
50
+ ActionCraftEfficacyMed = 38,
51
+ ActionCraftEfficacyPercent = 39,
52
+ ActionCraftYouLackTheRequirements = 40,
53
+ ActionDetachContainerDetachContainer = 41,
54
+ ActionDetachContainerNoDetach = 42,
55
+ ActionDigTooDeep = 43,
56
+ ActionDigWaterFilledHole = 44,
57
+ ActionDisassembleNoItemsSalvaged = 45,
58
+ ActionDisassembleSalvaged = 46,
59
+ ActionDismantleSeparated = 47,
60
+ ActionDisplayItemDisplayed = 48,
61
+ ActionDisplayItemEmptyContainerBeforehand = 49,
62
+ ActionDisplayItemReturned = 50,
63
+ ActionDrinkInFrontNoDrink = 51,
64
+ ActionDropCannotUseBlocked = 52,
65
+ ActionDropCannotUseItemEquipped = 53,
66
+ ActionDropCannotUseItemProtected = 54,
67
+ ActionDropCannotUseItemProtectedDangerous = 55,
68
+ ActionDropCannotUseNoItems = 56,
69
+ ActionDropCannotUseNoRoomMultipleItems = 57,
70
+ ActionDumpItemsCannotUseBlocked = 58,
71
+ ActionDumpItemsCannotUseNothingToDumpOut = 59,
72
+ ActionDumpItemsDumpedItems = 60,
73
+ ActionEnhanceEnhanced = 61,
74
+ ActionEnhanceFailed = 62,
75
+ ActionEnhanceNotPossible = 63,
76
+ ActionEquipWillBreakOnDamage = 64,
77
+ ActionFishingNothingBiting = 65,
78
+ ActionFishingSlipped = 66,
79
+ ActionFishingTooShallow = 67,
80
+ ActionInvoke = 68,
81
+ ActionInvokeCannotUseSilence = 69,
82
+ ActionInvokeChaosNoEffect = 70,
83
+ ActionInvokeEvilCreaturesAttracted = 71,
84
+ ActionInvokeEvilCreaturesNoneSummoned = 72,
85
+ ActionInvokeGoodCreaturesPacified = 73,
86
+ ActionInvokeGoodCreaturesPacifiedAttacked = 74,
87
+ ActionInvokeGoodCreaturesPacifiedNone = 75,
88
+ ActionJumpCannotJump = 76,
89
+ ActionMeleeNothingToAttack = 77,
90
+ ActionMoveItemCannotUseContainerTooFarAway = 78,
91
+ ActionMoveItemCannotUseEquipped = 79,
92
+ ActionMoveItemCannotUseFromInvalidContainer = 80,
93
+ ActionMoveItemCannotUseInvalidContainer = 81,
94
+ ActionMoveItemCannotUseItemFilteredOut = 82,
95
+ ActionMoveItemCannotUseItemQualityOrTypeIncorrect = 83,
96
+ ActionMoveItemCannotUseItemTooFarAway = 84,
97
+ ActionMoveItemCannotUseMovingFromMultipleContainers = 85,
98
+ ActionMoveItemCannotUseNoContainerToMoveTo = 86,
99
+ ActionMoveItemCannotUseNoItems = 87,
100
+ ActionMoveItemCannotUseNoRoom = 88,
101
+ ActionMoveItemCannotUseProtected = 89,
102
+ ActionMoveToSwimOffEdgeCannotCombatTides = 90,
103
+ ActionNavigateMoon = 91,
104
+ ActionNavigateNotOverworld = 92,
105
+ ActionNavigateSun = 93,
106
+ ActionNavigateUseSextant = 94,
107
+ ActionPetCreatureRefused = 95,
108
+ ActionPetNoTamedCreature = 96,
109
+ ActionPickUpAllItemsNoItems = 97,
110
+ ActionPickUpDoodadCannotUseContainsItems = 98,
111
+ ActionPickUpExcrementNoExcrement = 99,
112
+ ActionPickUpItemNoItem = 100,
113
+ ActionPickUpNoPickUp = 101,
114
+ ActionPourNoEffect = 102,
115
+ ActionRefineNoDurability = 103,
116
+ ActionReleaseNoTamedCreature = 104,
117
+ ActionRenameIsland = 105,
118
+ ActionRepairMaxDurabilityTooLow = 106,
119
+ ActionReshapeFailed = 107,
120
+ ActionReshapeNotPossibleBonus = 108,
121
+ ActionReshapeReshaped = 109,
122
+ ActionSacrificeNoRunes = 110,
123
+ ActionSacrificeRunesSacrificed = 111,
124
+ ActionSacrificeRunesSacrificedNothingUpgraded = 112,
125
+ ActionSacrificeRunesSacrificedUpgradedChaos = 113,
126
+ ActionSacrificeRunesSacrificedUpgradedEvil = 114,
127
+ ActionSacrificeRunesSacrificedUpgradedGood = 115,
128
+ ActionSailToCivilizationNotInsideBoat = 116,
129
+ ActionSailToIsland = 117,
130
+ ActionSailToIslandArrived = 118,
131
+ ActionSailToIslandCannotUseCannotReachEdge = 119,
132
+ ActionSailToIslandCannotUseCannotReachPort = 120,
133
+ ActionSailToIslandCannotUseGhost = 121,
134
+ ActionSailToIslandCannotUseInvalidDestination = 122,
135
+ ActionSailToIslandCannotUseNoDestination = 123,
136
+ ActionSailToIslandCannotUseNotEnoughStamina = 124,
137
+ ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 125,
138
+ ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 126,
139
+ ActionSailToIslandPlayerArriving = 127,
140
+ ActionSailToIslandPlayerDeparting = 128,
141
+ ActionSetCreatureAiAlreadyCommanded = 129,
142
+ ActionSetCreatureAiCannotCommand = 130,
143
+ ActionSetCreatureAiNotEnoughSkill = 131,
144
+ ActionSetCreatureAiNotEnoughTames = 132,
145
+ ActionSetDownNotEnoughRoom = 133,
146
+ ActionShipToIslandNoDestination = 134,
147
+ ActionSwapEquipmentCannotUseNoEquipmentToSwap = 135,
148
+ ActionTameCreatureTamed = 136,
149
+ ActionTameNoCreature = 137,
150
+ ActionTestDepthNothingToTest = 138,
151
+ ActionTestDepthWell = 139,
152
+ ActionToggleContainerCannotUseAlreadyClosed = 140,
153
+ ActionToggleContainerCannotUseNoContainer = 141,
154
+ ActionToggleContainerCannotUseNoContainerToClose = 142,
155
+ ActionToggleContainerCannotUseNoContainerToOpen = 143,
156
+ ActionToggleContainerCannotUseNotAccessible = 144,
157
+ ActionToggleContainerCannotUseUnknownContainer = 145,
158
+ ActionToggleDoorNoDoor = 146,
159
+ ActionToggleHitchAlreadyHitched = 147,
160
+ ActionToggleHitchAlreadyUnhitched = 148,
161
+ ActionToggleHitchNoCreature = 149,
162
+ ActionToggleHitchNoHitch = 150,
163
+ ActionToggleTilledAlreadyPacked = 151,
164
+ ActionToggleTilledAlreadyTilled = 152,
165
+ ActionToggleTilledDug = 153,
166
+ ActionTradeCannotUseExceedsCarryWeight = 154,
167
+ ActionTradeCannotUseNotEnoughCredit = 155,
168
+ ActionTradeCannotUseNothingToTrade = 156,
169
+ ActionTradeCannotUseTradedTooMuch = 157,
170
+ ActionTradeCreditChange = 158,
171
+ ActionTradeCreditChangeDecrease = 159,
172
+ ActionTradeCreditChangeIncrease = 160,
173
+ ActionTradeDialogue1 = 161,
174
+ ActionTradeDialogue2 = 162,
175
+ ActionTradeDialogue3 = 163,
176
+ ActionTradeDialogue4 = 164,
177
+ ActionTradeIndicateUntradable = 165,
178
+ ActionTradeMerchantItems = 166,
179
+ ActionTradeYourItems = 167,
180
+ ActionUncageCannotUncageHere = 168,
181
+ ActionUpgradeFailed = 169,
182
+ ActionUpgradeNotMagical = 170,
183
+ ActionUpgradeNotPossible = 171,
184
+ ActionUpgradeUpgraded = 172,
185
+ ActionUseItemWeaponNeeded = 173,
186
+ ActionViewItemsCannotUseBlocked = 174,
187
187
  AddedFuelToFire = 175,
188
188
  AddedFuelToTorch = 176,
189
189
  AllEquipmentUnEquipped = 177,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wayward/types",
3
3
  "description": "TypeScript declarations for Wayward, used for modding.",
4
- "version": "2.14.0-beta.dev.20241119.1",
4
+ "version": "2.14.0-beta.dev.20241121.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",