You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
397 B

if (active) {
if (global.maxsmissiles == 0) {
event_inherited();
} else {
itemtype = 1;
popup_text(get_text("Notifications", "SuperMissileTank"));
event_inherited();
}
if (global.difficulty < 2) global.maxsmissiles += 2;
if (global.difficulty == 2) global.maxsmissiles += 1;
global.smissiles = global.maxsmissiles;
global.stanks += 1;
}