UNPKG

alclient

Version:

A node client for interacting with Adventure Land - The Code MMORPG. This package extends the functionality of 'alclient' by managing a mongo database.

15 lines 341 B
import { Item } from "./Item.js"; export class TradeItem extends Item { b = false; giveaway; list; price; rid; constructor(itemData, g) { super(itemData, g); // Set everything else for (const key in itemData) this[key] = itemData[key]; } } //# sourceMappingURL=TradeItem.js.map