@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
24 lines • 803 B
JavaScript
/**
* Air Supremacy - Game Boon
* Air units deal +50% damage
*
* This tactical advantage boon significantly enhances the effectiveness
* of all aerial units, making air superiority strategies more viable
* and rewarding players who invest in air force development.
*/
import { Boon } from "../../../engine/modifier.js";
/**
* Air Supremacy - Enhanced air unit damage
* Increases damage output of all air units by 50%
*/
export class AirSupremacy extends Boon {
constructor() {
super();
this.name = "Air Supremacy";
this.description = "Air units deal +50% damage";
this.uuid = "54dc3105-9e19-4e8f-9f1b-ec1a84beda83";
}
}
AirSupremacy.src = "src/zerospace/misc/boon/air-supremacy.ts";
export default AirSupremacy;
//# sourceMappingURL=air-supremacy.js.map