@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 775 B
JavaScript
/**
* 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.
*/
import { Mutator } from "../../../engine/modifier.js";
/**
* Depletion - Reduced resource mining efficiency
* Halves the speed of all mining operations
*/
export class Depletion extends Mutator {
constructor() {
super();
this.name = "Depletion";
this.description = "-50% mining rate";
this.uuid = "795eee73-1357-4b8e-be70-f92198c9d5ec";
}
}
Depletion.src = "src/zerospace/misc/mutator/depletion.ts";
export default Depletion;
//# sourceMappingURL=depletion.js.map