From f3de3888d59961ba8705626e4b2de04fb859d4c0 Mon Sep 17 00:00:00 2001 From: Nicole O'Connor Date: Fri, 16 Feb 2024 18:06:34 -0800 Subject: [PATCH] initial tuning attempt on the blast boots --- zscript/actor/blast_boots.zs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zscript/actor/blast_boots.zs b/zscript/actor/blast_boots.zs index 37b5e47..75eff7d 100644 --- a/zscript/actor/blast_boots.zs +++ b/zscript/actor/blast_boots.zs @@ -40,7 +40,7 @@ class PowerBlastJump : Powerup { override void Tick() { Super.Tick(); if (blasting) { - ply.AddZ(8); + ply.AddZ(12); } } @@ -57,7 +57,7 @@ class InvBlastBoots : PowerupGiver { +COUNTITEM Tag "$TAG_BLASTBOOTS"; Powerup.Type "PowerBlastJump"; - Powerup.Duration 10; // ten tics should be enough for the engine to go "oh yeah powerup" while still being an instant-effect + Powerup.Duration 35; Inventory.Icon "NULLA0"; Inventory.AltHUDIcon "NULLA0";