UNPKG

@zerospacegg/iolin

Version:

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

28 lines 929 B
"use strict"; /** * Depletion - Game Mutator * -50% mining rate * * This economic challenge mutator reduces resource gathering efficiency, * forcing commanders to be more strategic with their resource management * and extending the early game economic phase significantly. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.Depletion = void 0; const modifier_js_1 = require("../../../engine/modifier.cjs"); /** * Depletion - Reduced resource mining efficiency * Halves the speed of all mining operations */ class Depletion extends modifier_js_1.Mutator { constructor() { super(); this.name = "Depletion"; this.description = "-50% mining rate"; this.uuid = "795eee73-1357-4b8e-be70-f92198c9d5ec"; } } exports.Depletion = Depletion; Depletion.src = "src/zerospace/misc/mutator/depletion.ts"; exports.default = Depletion; //# sourceMappingURL=depletion.js.map