@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
28 lines • 1.11 kB
JavaScript
;
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ThousandSupply = void 0;
const modifier_js_1 = require("../../../engine/modifier.cjs");
/**
* 1000 Supply Cap - Increased supply maximum
* All players have their supply limit increased to 1000 instead of normal caps
*/
class ThousandSupply extends modifier_js_1.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";
}
}
exports.ThousandSupply = ThousandSupply;
ThousandSupply.src = "src/zerospace/misc/boon/thousand-supply.ts";
exports.default = ThousandSupply;
//# sourceMappingURL=thousand-supply.js.map