@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
12 lines • 450 B
JavaScript
import { Boon } from "../../../engine/modifier.js";
export class ExtraProtection extends Boon {
constructor() {
super();
this.name = "Extra Protection";
this.description = "+8 armor for units and structures";
this.uuid = "2a3d3c98-6ea8-44d3-b747-31c1ced269ad";
}
}
ExtraProtection.src = "src/zerospace/misc/boon/extra-protection.ts";
export default ExtraProtection;
//# sourceMappingURL=extra-protection.js.map