UNPKG

@zerospacegg/iolin

Version:

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

28 lines 1.18 kB
"use strict"; /** * 3000 Starting Resources - Game Boon * Starting with increased initial resources for faster gameplay * * This strategic advantage boon gives players significantly more hexite and flux * to work with at the start of the match, allowing for rapid expansion, * multiple production queues, and aggressive early-game strategies. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ThreeKResources = void 0; const modifier_js_1 = require("../../../engine/modifier.cjs"); /** * 3000 Starting Resources - Enhanced starting materials * All players start with 3000 hexite and 3000 flux instead of normal amounts */ class ThreeKResources extends modifier_js_1.Boon { constructor() { super(); this.name = "3000 Starting Resources"; this.description = "All players start with 3000 hexite and 3000 flux resources instead of normal starting amounts"; this.uuid = "d76bd67a-f508-4a96-b1ce-fb1e6fc9e26e"; } } exports.ThreeKResources = ThreeKResources; ThreeKResources.src = "src/zerospace/misc/boon/three-k-resources.ts"; exports.default = ThreeKResources; //# sourceMappingURL=three-k-resources.js.map