@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 1 kB
JavaScript
/**
* 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.
*/
import { Boon } from "../../../engine/modifier.js";
/**
* 3000 Starting Resources - Enhanced starting materials
* All players start with 3000 hexite and 3000 flux instead of normal amounts
*/
export class ThreeKResources extends 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";
}
}
ThreeKResources.src = "src/zerospace/misc/boon/three-k-resources.ts";
export default ThreeKResources;
//# sourceMappingURL=three-k-resources.js.map