Index: Arrapago_Reef/mobs/Medusa.lua =================================================================== --- Arrapago_Reef/mobs/Medusa.lua (revision 2097) +++ Arrapago_Reef/mobs/Medusa.lua (working copy) @@ -26,6 +26,23 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + SpawnMob(16998863,180):updateEnmity(target); + SpawnMob(16998864,180):updateEnmity(target); + SpawnMob(16998865,180):updateEnmity(target); + SpawnMob(16998866,180):updateEnmity(target); + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: Attohwa_Chasm/mobs/Tiamat.lua =================================================================== --- Attohwa_Chasm/mobs/Tiamat.lua (revision 2097) +++ Attohwa_Chasm/mobs/Tiamat.lua (working copy) @@ -28,6 +28,11 @@ end end + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + end; ----------------------------------- Index: Balgas_Dais/mobs/Wyrm.lua =================================================================== --- Balgas_Dais/mobs/Wyrm.lua (revision 2097) +++ Balgas_Dais/mobs/Wyrm.lua (working copy) @@ -12,6 +12,18 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + +end; +----------------------------------- -- onMobDeath Action ----------------------------------- Index: Behemoths_Dominion/mobs/Behemoth.lua =================================================================== --- Behemoths_Dominion/mobs/Behemoth.lua (revision 2097) +++ Behemoths_Dominion/mobs/Behemoth.lua (working copy) @@ -11,7 +11,19 @@ function OnMobSpawn(mob) end; +----------------------------------- +-- onMobFight Action +----------------------------------- +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + +end; + ----------------------------------- -- onMobDeath ----------------------------------- Index: Behemoths_Dominion/mobs/King_Behemoth.lua =================================================================== --- Behemoths_Dominion/mobs/King_Behemoth.lua (revision 2097) +++ Behemoths_Dominion/mobs/King_Behemoth.lua (working copy) @@ -13,6 +13,18 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + +end; +----------------------------------- -- onMobDeath ----------------------------------- Index: Caedarva_Mire/mobs/Khimaira.lua =================================================================== --- Caedarva_Mire/mobs/Khimaira.lua (revision 2097) +++ Caedarva_Mire/mobs/Khimaira.lua (working copy) @@ -13,6 +13,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: Dragons_Aery/mobs/Fafnir.lua =================================================================== --- Dragons_Aery/mobs/Fafnir.lua (revision 2097) +++ Dragons_Aery/mobs/Fafnir.lua (working copy) @@ -20,12 +20,12 @@ function onMobFight(mob,target) - if(mob:getBattleTime() == 3600) then + if(mob:getBattleTime() == 60) then mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); end end; - ----------------------------------- -- onMobDeath ----------------------------------- Index: Dragons_Aery/mobs/Nidhogg.lua =================================================================== --- Dragons_Aery/mobs/Nidhogg.lua (revision 2097) +++ Dragons_Aery/mobs/Nidhogg.lua (working copy) @@ -18,8 +18,9 @@ function onMobFight(mob,target) - if(mob:getBattleTime() == 3600) then + if(mob:getBattleTime() == 60) then mob:rageMode(); + mob:addStatusEffectEx(EFFECT_REGEN,200,3); end end; Index: King_Ranperres_Tomb/mobs/Vrtra.lua =================================================================== --- King_Ranperres_Tomb/mobs/Vrtra.lua (revision 2097) +++ King_Ranperres_Tomb/mobs/Vrtra.lua (working copy) @@ -15,6 +15,18 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; +----------------------------------- -- onMobDeath ----------------------------------- Index: Mamook/mobs/Gulool_Ja_Ja.lua =================================================================== --- Mamook/mobs/Gulool_Ja_Ja.lua (revision 2097) +++ Mamook/mobs/Gulool_Ja_Ja.lua (working copy) @@ -24,7 +24,24 @@ SpawnMob(17043879,180):updateEnmity(target); end; +----------------------------------- +-- onMobFight Action +----------------------------------- +function onMobFight(mob,target) + + SpawnMob(17043876,180):updateEnmity(target); + SpawnMob(17043877,180):updateEnmity(target); + SpawnMob(17043878,180):updateEnmity(target); + SpawnMob(17043879,180):updateEnmity(target); + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + ----------------------------------- -- onMobDeath ----------------------------------- Index: Mount_Zhayolm/mobs/Cerberus.lua =================================================================== --- Mount_Zhayolm/mobs/Cerberus.lua (revision 2097) +++ Mount_Zhayolm/mobs/Cerberus.lua (working copy) @@ -13,6 +13,18 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; +----------------------------------- -- onMobDeath ----------------------------------- Index: RuAun_Gardens/mobs/Byakko.lua =================================================================== --- RuAun_Gardens/mobs/Byakko.lua (revision 2097) +++ RuAun_Gardens/mobs/Byakko.lua (working copy) @@ -14,6 +14,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: RuAun_Gardens/mobs/Genbu.lua =================================================================== --- RuAun_Gardens/mobs/Genbu.lua (revision 2097) +++ RuAun_Gardens/mobs/Genbu.lua (working copy) @@ -14,6 +14,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: RuAun_Gardens/mobs/Seiryu.lua =================================================================== --- RuAun_Gardens/mobs/Seiryu.lua (revision 2097) +++ RuAun_Gardens/mobs/Seiryu.lua (working copy) @@ -14,6 +14,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: RuAun_Gardens/mobs/Suzaku.lua =================================================================== --- RuAun_Gardens/mobs/Suzaku.lua (revision 2097) +++ RuAun_Gardens/mobs/Suzaku.lua (working copy) @@ -14,6 +14,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: The_Shrine_of_RuAvitau/mobs/Kirin.lua =================================================================== --- The_Shrine_of_RuAvitau/mobs/Kirin.lua (revision 2097) +++ The_Shrine_of_RuAvitau/mobs/Kirin.lua (working copy) @@ -16,6 +16,20 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: Uleguerand_Range/mobs/Jormungand.lua =================================================================== --- Uleguerand_Range/mobs/Jormungand.lua (revision 2097) +++ Uleguerand_Range/mobs/Jormungand.lua (working copy) @@ -13,6 +13,18 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; +----------------------------------- -- onMobDeath ----------------------------------- Index: Valley_of_Sorrows/mobs/Adamantoise.lua =================================================================== --- Valley_of_Sorrows/mobs/Adamantoise.lua (revision 2097) +++ Valley_of_Sorrows/mobs/Adamantoise.lua (working copy) @@ -13,6 +13,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: Valley_of_Sorrows/mobs/Aspidochelone.lua =================================================================== --- Valley_of_Sorrows/mobs/Aspidochelone.lua (revision 2097) +++ Valley_of_Sorrows/mobs/Aspidochelone.lua (working copy) @@ -13,6 +13,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath ----------------------------------- Index: Wajaom_Woodlands/mobs/Hydra.lua =================================================================== --- Wajaom_Woodlands/mobs/Hydra.lua (revision 2097) +++ Wajaom_Woodlands/mobs/Hydra.lua (working copy) @@ -13,6 +13,19 @@ end; ----------------------------------- +-- onMobFight Action +----------------------------------- + +function onMobFight(mob,target) + + if(mob:getBattleTime() == 60) then + mob:rageMode(); + + end + +end; + +----------------------------------- -- onMobDeath -----------------------------------