summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-11-08 23:55:40 -0300
committerJesusaves <cpntb1@ymail.com>2022-11-08 23:55:40 -0300
commit57fc77820f086210601dc626b18dfd2f7d7daa7f (patch)
tree38874a4becf696ce8412848af8ba7ae7028c01cc
parentf3da8b214f5a0171503341fd1075d2e74b7f8de7 (diff)
downloadserverdata-57fc77820f086210601dc626b18dfd2f7d7daa7f.tar.gz
serverdata-57fc77820f086210601dc626b18dfd2f7d7daa7f.tar.bz2
serverdata-57fc77820f086210601dc626b18dfd2f7d7daa7f.tar.xz
serverdata-57fc77820f086210601dc626b18dfd2f7d7daa7f.zip
Boost asorm greatly.
-rw-r--r--world/map/npc/magic/level2-barrier.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/world/map/npc/magic/level2-barrier.txt b/world/map/npc/magic/level2-barrier.txt
index 284209c0..def8856e 100644
--- a/world/map/npc/magic/level2-barrier.txt
+++ b/world/map/npc/magic/level2-barrier.txt
@@ -28,8 +28,10 @@ L_Pay:
callfunc "magic_exp";
if (BL_ID != @target_id) misceffect FX_MAGIC_BARRIER_HIT, @args$;
set .@time, (@spellpower*200)+2000;
+ set .@time, .@time+5000; // FIXME: Temporary Boost!
set @asorm_time, .@time, @target_id;
- sc_start SC_MBARRIER, .@time, max(30,(@spellpower/8))+20, @target_id;
+ // FIXME: max(30,(@spellpower/8))+20
+ sc_start SC_MBARRIER, .@time, max(30,(@spellpower/7))+22, @target_id;
message @args$, "Barrier : You are surrounded by a magical barrier.";
set @asorm_future, gettimetick(0) + @asorm_time - 100, @target_id;
addtimer @asorm_time - 100, strnpcinfo(0)+"::OnEnd", @target_id;