@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
12 lines • 407 B
JavaScript
import { Boon } from "../../../engine/modifier.js";
export class ExtraSupply extends Boon {
constructor() {
super();
this.name = "Extra Supply";
this.description = "+50 Max Supply";
this.uuid = "855f0511-8e36-4665-bc5c-7778e7fdbd2b";
}
}
ExtraSupply.src = "src/zerospace/misc/boon/extra-supply.ts";
export default ExtraSupply;
//# sourceMappingURL=extra-supply.js.map