diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-09-27 11:55:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-09-27 11:55:32 -0300 |
commit | 18e8529ff655079ec9854e759947127df179c829 (patch) | |
tree | cb2a7af9584942802ca24467ae3ab2d6cb8eb564 /npc/001-13 | |
parent | 19c34ece2c92f1da477a8b06c3e26f39c14ebdec (diff) | |
download | serverdata-18e8529ff655079ec9854e759947127df179c829.tar.gz serverdata-18e8529ff655079ec9854e759947127df179c829.tar.bz2 serverdata-18e8529ff655079ec9854e759947127df179c829.tar.xz serverdata-18e8529ff655079ec9854e759947127df179c829.zip |
Minor tweaks in Boss Raid (fanfare and nerf)
Diffstat (limited to 'npc/001-13')
-rw-r--r-- | npc/001-13/main.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/001-13/main.txt b/npc/001-13/main.txt index 59b57b986..8ee4fe300 100644 --- a/npc/001-13/main.txt +++ b/npc/001-13/main.txt @@ -85,7 +85,7 @@ function script FYRaid_Select { // Recreate the boss .@lv = $FYRAID_LV[.@i]; .@mob=monster(.@mp$, 47, 33, $RAIDING_BOSS$, WanderingShadow, 1, "sBossRaid::OnBossDie"); - setunitdata(.@mob, UDT_LEVEL, min(.@lv * 10, 200)); + setunitdata(.@mob, UDT_LEVEL, min(.@lv * 7, 200)); setunitdata(.@mob, UDT_STR, .@lv * 4); setunitdata(.@mob, UDT_AGI, min(.@lv * 4, 255)); setunitdata(.@mob, UDT_VIT, .@lv * 5); @@ -172,7 +172,9 @@ OnBossDie: dispbottom l("Boss defeated!"); // Clear bonus getitem EventNaftalin, $FYRAID_LV[@id]/2+1; + getexp $FYRAID_LV[@id], $FYRAID_LV[@id]/2+1; .@new = 0; + specialeffect(FX_FANFARE, SELF, getcharid(3)); goto OnClose; // Ran out of time |