@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 725 B
JavaScript
/**
* Goldrush - Game Boon
* 3x faster mining
*
* This economic powerhouse dramatically accelerates resource collection,
* allowing commanders to rapidly build up their economies and deploy
* larger armies faster than ever before.
*/
import { Boon } from "../../../engine/modifier.js";
/**
* Goldrush - Accelerated resource mining
* Triples the speed of all mining operations
*/
export class Goldrush extends Boon {
constructor() {
super();
this.name = "Goldrush";
this.description = "3x faster mining";
this.uuid = "ab741e51-bcd3-46af-b8bf-0c27d23885cf";
}
}
Goldrush.src = "src/zerospace/misc/boon/goldrush.ts";
export default Goldrush;
//# sourceMappingURL=goldrush.js.map