From 20adf48d1467dca0326f1be7c3b49873c1e07cd4 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Tue, 28 Apr 2020 13:35:24 +0200 Subject: [PATCH] Revert Deep Impact to need a full charge for altfire. It is more balanced this way. --- language.def_lore | 2 +- language.es_lore | 2 +- zscript/swwm_deepdarkimpact.zsc | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/language.def_lore b/language.def_lore index da84654dd..a192c9851 100644 --- a/language.def_lore +++ b/language.def_lore @@ -193,7 +193,7 @@ SWWM_LORETXT_DEEPIMPACT = "\n" "Primary Fire: Quick puffs of compressed air. Pushes away enemies and projectiles, while also dealing some damage.\n" "\n" -"Secondary Fire: Compresses all the air into a single highly destructive shot. This \"air bullet\" is capable of penetrating multiple targets, digging a hole staight through their bodies. The potential damage depends on how much air there was in the tank.\n" +"Secondary Fire: Compresses all the air into a single highly destructive shot. This \"air bullet\" is capable of penetrating multiple targets, digging a hole staight through their bodies. Requires a full air tank.\n" "\n" "Reloading: The lever on the side must be pulled several times in order to refill the internal air tank. Once at full capacity, a smart mechanism will lock the lever to avoid accidental overfilling.\n" "\n" diff --git a/language.es_lore b/language.es_lore index f0eacad97..6c7a88f49 100644 --- a/language.es_lore +++ b/language.es_lore @@ -159,7 +159,7 @@ SWWM_LORETXT_DEEPIMPACT = "\n" "Fuego Primario: Rápidos soplos de aire comprimido. Empujan enemigos y proyectiles, al mismo tiempo que causan algo de daño.\n" "\n" -"Fuego Secundario: Comprime todo el aire en un único disparo áltamente destructivo. Esta \"bala de aire\" es capaz de atravesar múltiples objetivos, abriendo una brecha directamente a través de sus cuerpos. El potencial de daño depende de la cantidad de aire que había en el tanque.\n" +"Fuego Secundario: Comprime todo el aire en un único disparo áltamente destructivo. Esta \"bala de aire\" es capaz de atravesar múltiples objetivos, abriendo una brecha directamente a través de sus cuerpos. Requiere un tanque de aire completamente lleno.\n" "\n" "Recarga: Se debe tirar de la palanca en el lateral para rellenar el tanque de aire interno. Ya en su capacidad máxima, un mecanismo inteligente bloqueará la palanca para evitar la sobrecarga accidental.\n" "\n" diff --git a/zscript/swwm_deepdarkimpact.zsc b/zscript/swwm_deepdarkimpact.zsc index 929b571eb..0e44e4084 100644 --- a/zscript/swwm_deepdarkimpact.zsc +++ b/zscript/swwm_deepdarkimpact.zsc @@ -427,8 +427,7 @@ Class DeepImpact : SWWMWeapon XZW2 STUA 3; Goto Ready; AltFire: - XZW2 A 0 A_JumpIf(invoker.ClipCount<=0,"DryFire"); - XZW2 A 0 A_JumpIf(invoker.ClipCount<=3,"Fire"); + XZW2 A 0 A_JumpIf(invoker.ClipCount<100,"Reload"); XZW2 A 0 A_BeginCharge(); XZW2 A 1 A_ChargeUp(); Wait;