diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-06-05 22:27:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-06-05 22:27:33 -0300 |
commit | 8ed17dcd5d97c40f5eb000fdea1f1db89f41a467 (patch) | |
tree | 59c1f8d0cedc2c44cddd4dc6de5d150c481cfb24 /npc/034-3 | |
parent | 2c4717cbd4fe0cea7480572e9350354707b07c58 (diff) | |
download | serverdata-8ed17dcd5d97c40f5eb000fdea1f1db89f41a467.tar.gz serverdata-8ed17dcd5d97c40f5eb000fdea1f1db89f41a467.tar.bz2 serverdata-8ed17dcd5d97c40f5eb000fdea1f1db89f41a467.tar.xz serverdata-8ed17dcd5d97c40f5eb000fdea1f1db89f41a467.zip |
Hit the Power Circle in Gemini Sisters Quest with a Nerf Cannon
Diffstat (limited to 'npc/034-3')
-rw-r--r-- | npc/034-3/gemini.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/034-3/gemini.txt b/npc/034-3/gemini.txt index 5f195ba43..72c4707c3 100644 --- a/npc/034-3/gemini.txt +++ b/npc/034-3/gemini.txt @@ -84,8 +84,8 @@ OnChannel: .@magic_power = 1811 + readparam2(bInt)*2; // Channelling required power depends on the base Int of the character .@magic_power_required = 5707 - 2*readparam2(bInt); - // magic power loss depends also on Int - .@magic_power_loss = 53 - ((readparam2(bInt)+1)*2)/10; + // magic power loss depends also on Int. TMW uses 53, we use 21 + .@magic_power_loss = 21 - (((readparam2(bInt)+1)*2)/10); dispbottom l("Ok, let's stay focused now!"); areamonster getmap(), 27, 20, 77, 47, strmobinfo(1, Forain), Forain, 1; @@ -156,7 +156,7 @@ OnTimer2000: // Deplete power over time // But only if not doing solo - if (getmapusers(.mp$) > 1) + if (getmapusers(.mp$) > 1 || .mloss < 0) .power -= .mloss; // Remove stones inside the circle |