@wayward/types 2.14.5-beta.dev.20250620.1 → 2.14.5-beta.dev.20250628.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.
@@ -181,7 +181,7 @@ export default abstract class NPC extends Human<INPCDescription, NPCType, Refere
|
|
181
181
|
protected changeZ(toZ: number, fromZ: number): boolean | void | undefined;
|
182
182
|
protected onAiChange(ai: AiType, type: ChangeAiType): void;
|
183
183
|
protected updateTileWhenMoving(fromTile: Tile, toTile: Tile): boolean;
|
184
|
-
canMoveToTile(moveType: MoveType, tile: Tile, ignoreHuman?: Human): 0 | -1 | -6 | -2 | -3 | -4 | -5;
|
184
|
+
canMoveToTile(moveType: MoveType, tile: Tile, ignoreHuman?: Human, skipEventCheck?: boolean): 0 | -1 | -6 | -2 | -3 | -4 | -5;
|
185
185
|
getWeightOrStaminaMovementPenalty(): number;
|
186
186
|
get asMerchant(): MerchantNPC | undefined;
|
187
187
|
get asShipper(): ShipperNPC | undefined;
|
@@ -168,6 +168,7 @@ export default class Item extends EntityMovable<IItemDescription, ItemType, Refe
|
|
168
168
|
isContainer(): this is Item & IContainer;
|
169
169
|
isWithin(container?: IContainer): boolean;
|
170
170
|
get builtDescription(): IDoodadDescription | undefined;
|
171
|
+
get placeDownDescription(): IDoodadDescription | undefined;
|
171
172
|
countTradesWith(human?: Human): number;
|
172
173
|
/**
|
173
174
|
* Gets the owner of this item.
|
package/package.json
CHANGED