@wayward/types 2.14.4-beta.dev.20250429.1 → 2.14.4-beta.dev.20250430.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.
@@ -11,11 +11,11 @@
|
|
11
11
|
import MagicalPropertyType from "@wayward/game/game/magic/MagicalPropertyType";
|
12
12
|
export declare enum MagicalLootType {
|
13
13
|
All = 0,
|
14
|
-
|
14
|
+
High = 1,
|
15
15
|
Low = 2,
|
16
16
|
Medium = 3,
|
17
|
-
|
18
|
-
|
17
|
+
VeryHigh = 4,
|
18
|
+
VeryLow = 5
|
19
19
|
}
|
20
20
|
export declare const magicalLootGroup: Array<Array<[number, MagicalPropertyType | undefined]>>;
|
21
21
|
export default magicalLootGroup;
|
@@ -16,8 +16,8 @@ declare enum Message {
|
|
16
16
|
AbsorbNotPossible = 4,
|
17
17
|
ActionAlterAltered = 5,
|
18
18
|
ActionAlterFailed = 6,
|
19
|
-
|
20
|
-
|
19
|
+
ActionAlterNoEffect = 7,
|
20
|
+
ActionAlterNotPossible = 8,
|
21
21
|
ActionAscendDescendNotCaveEntrance = 9,
|
22
22
|
ActionAttachAlreadyHasItem = 10,
|
23
23
|
ActionAttachAttachedItem = 11,
|
@@ -181,9 +181,9 @@ declare enum Message {
|
|
181
181
|
ActionUncageCannotUncageHere = 169,
|
182
182
|
ActionUpgradeFailed = 170,
|
183
183
|
ActionUpgradeMagicalInert = 171,
|
184
|
-
|
185
|
-
|
186
|
-
|
184
|
+
ActionUpgradeNoEffect = 172,
|
185
|
+
ActionUpgradeNotMagical = 173,
|
186
|
+
ActionUpgradeNotPossible = 174,
|
187
187
|
ActionUpgradeUpgraded = 175,
|
188
188
|
ActionUseItemWeaponNeeded = 176,
|
189
189
|
ActionViewItemsCannotUseBlocked = 177,
|
@@ -719,8 +719,8 @@ declare enum Message {
|
|
719
719
|
TrampledIntoGround = 707,
|
720
720
|
TrampleIntoGround = 708,
|
721
721
|
Trampling = 709,
|
722
|
-
|
723
|
-
|
722
|
+
TransmogrificationNoEffect = 710,
|
723
|
+
TransmogrificationNotPossible = 711,
|
724
724
|
Transmogrified = 712,
|
725
725
|
TrapMissed = 713,
|
726
726
|
TrapStoppedYou = 714,
|
package/package.json
CHANGED