UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

24 lines 936 B
/** * 1000 Supply Cap - Game Boon * Starting with increased supply limit for larger armies * * This tactical advantage boon allows players to build much larger * armies and support more units, enabling steamroll strategies * and overwhelming force compositions throughout the entire match. */ import { Boon } from "../../../engine/modifier.js"; /** * 1000 Supply Cap - Increased supply maximum * All players have their supply limit increased to 1000 instead of normal caps */ export class ThousandSupply extends Boon { constructor() { super(); this.name = "1000 Supply Cap"; this.description = "All players have their supply limit increased to 1000 instead of normal maximum supply caps"; this.uuid = "36e01206-4d52-4a43-b284-5e868956d4f4"; } } ThousandSupply.src = "src/zerospace/misc/boon/thousand-supply.ts"; export default ThousandSupply; //# sourceMappingURL=thousand-supply.js.map