diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-13/main.txt | 2 | ||||
-rw-r--r-- | npc/functions/aurora.txt | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/npc/001-13/main.txt b/npc/001-13/main.txt index 9d8cace07..11c35f652 100644 --- a/npc/001-13/main.txt +++ b/npc/001-13/main.txt @@ -93,7 +93,7 @@ function script FYRaid_Select { setunitdata(.@mob, UDT_DEX, .@lv * 6); setunitdata(.@mob, UDT_LUK, .@lv * 5); setunitdata(.@mob, UDT_ADELAY, max(640, 1672-(.@lv * 24))); - setunitdata(.@mob, UDT_MAXHP, 2000+.@lv*1000); + setunitdata(.@mob, UDT_MAXHP, 2000+.@lv*1000+(FYRAID_LV/5*500)); setunitdata(.@mob, UDT_HP, $FYRAID_HP[.@i]); setunitdata(.@mob, UDT_ATKMIN, 90+.@lv*10); setunitdata(.@mob, UDT_ATKMAX, 90+.@lv*12); 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 |