diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-06-06 00:46:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-06-06 00:46:05 -0300 |
commit | e15b5d1c2f884804bb43dcc78426425f4d716b99 (patch) | |
tree | 84ca9078111f13383cea39f47a71c2cf50499613 /npc/functions/aurora.txt | |
parent | 1b6a3f5be19e490c16e1473d9289f08bcb80cbef (diff) | |
download | serverdata-e15b5d1c2f884804bb43dcc78426425f4d716b99.tar.gz serverdata-e15b5d1c2f884804bb43dcc78426425f4d716b99.tar.bz2 serverdata-e15b5d1c2f884804bb43dcc78426425f4d716b99.tar.xz serverdata-e15b5d1c2f884804bb43dcc78426425f4d716b99.zip |
Boss Raid: Increase their HP in 500 every 5 levels
Diffstat (limited to 'npc/functions/aurora.txt')
-rw-r--r-- | npc/functions/aurora.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index cb8b6e136..42977e2f8 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -468,7 +468,8 @@ function script FYE_Raid { } // Assign the boss stats - $FYRAID_HP[.@id]=2000+FYRAID_LV*1000; // Also declared in 001-13/main.txt + $FYRAID_HP[.@id]=2000+FYRAID_LV*1000+(FYRAID_LV/5*500); + // Also declared in 001-13/main.txt $FYRAID_LV[.@id]=FYRAID_LV; $FYRAID_TIME[.@id]=gettimetick(2)+3600; // One hour |