From 0fb4e97892f328de2da37fe920dbc631a7826e44 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Mon, 6 Sep 2021 22:59:00 +0200 Subject: [PATCH] VIP powerups last longer, to compensate for rarity. --- README.md | 6 +++--- language.version | 4 ++-- zscript/items/swwm_powerups.zsc | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 575629586..73a319326 100644 --- a/README.md +++ b/README.md @@ -411,21 +411,21 @@ On use, teleports you back to the start of the map. Basically acts exactly the s ### Mykradvo Artifact ~ May randomly replace Ghost Artifact or Invinciball ![](docimg/mykradvo.png) -When used, bursts into plasma tendrils that will seek all hostiles within 100m and fry them good. If there are no hostiles around, the artifact will simply not ignite. +When used, bursts into plasma tendrils that will seek all visible hostiles within 100m and fry them good. If there are no hostiles around, the artifact will simply not ignite. Has a chance to spawn in place of other items, but only one may spawn per map. Cannot be bought due to its rarity. ### Divine Sprite ~ May randomly replace Grilled Cheese Sandwich ![](docimg/sprite.png) -Rapidly boosts your health dramatically, for 30 seconds. Its effects will obviously fade afterwards. Your HUD can't exactly report your actual health, but it's assumed this goes way beyond the one thousand cap, somehow. +Rapidly boosts your health dramatically, for 50 seconds. Its effects will obviously fade afterwards. Your HUD can't exactly report your actual health, but it's assumed this goes way beyond the one thousand cap, somehow. Only one may spawn per map, and you can't buy these either. If you manage to fetch one, use it wisely. ### Devastation Sigil ~ May randomly replace Ragekit ![](docimg/deva.png) -20 seconds of absolute destructive potential for any damage you may deal, including to yourself (so be careful). +50 seconds of absolute destructive potential for any damage you may deal, including to yourself (so be careful). Same conditions as the other two. Make sure you find the perfect chance to unleash this beast. diff --git a/language.version b/language.version index fefd77619..e0b17c11d 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\chSWWM \czGZ\c- \cw1.1pre r5 \cu(Mon 6 Sep 22:55:58 CEST 2021)\c-"; -SWWM_SHORTVER="\cw1.1pre r5 \cu(2021-09-06 22:55:58)\c-"; +SWWM_MODVER="\chSWWM \czGZ\c- \cw1.1pre r6 \cu(Mon 6 Sep 22:59:00 CEST 2021)\c-"; +SWWM_SHORTVER="\cw1.1pre r6 \cu(2021-09-06 22:59:00)\c-"; diff --git a/zscript/items/swwm_powerups.zsc b/zscript/items/swwm_powerups.zsc index a2013b56e..9950894aa 100644 --- a/zscript/items/swwm_powerups.zsc +++ b/zscript/items/swwm_powerups.zsc @@ -3191,7 +3191,7 @@ Class AngeryPower : Powerup Default { - Powerup.Duration -20; + Powerup.Duration -50; Inventory.Icon "graphics/HUD/Icons/I_Devastation.png"; Powerup.Color "C0 00 FF", 0.2; +INVENTORY.ADDITIVETIME; @@ -3451,7 +3451,7 @@ Class DivineSpriteEffect : Inventory default { Inventory.Icon "graphics/HUD/Icons/I_Divine.png"; - DivineSpriteEffect.HealTimer 1050; + DivineSpriteEffect.HealTimer 1750; +INVENTORY.UNDROPPABLE; +INVENTORY.UNTOSSABLE; }