Bomb Toss

Post Reply
Anged_Obscurite
Posts: 14
Joined: Wed Sep 05, 2012 10:12 pm

Bomb Toss

Post by Anged_Obscurite » Fri Sep 14, 2012 2:39 am

Bomb Toss damage is (Monster's Level + 2) * 3, mitigated by resist/shell/etc. TP is also not effecting the damage.

Thus,

Code: Select all

info = MobMagicalMove(mob,target,skill,mob:getWeaponDmg()*5,accmod,dmgmod,TP_MAB_BONUS,1);
needs to be:

Code: Select all

info = MobMagicalMove(mob,target,skill,(mob:getLevel()+2)*3,accmod,dmgmod,TP_NO_EFFECT,1);
Attachments
Bomb Toss.Patch
(645 Bytes) Downloaded 165 times

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: Bomb Toss

Post by kjLotus » Fri Sep 14, 2012 3:03 pm

Anged_Obscurite wrote:mitigated by resist/shell/etc.
Think it's NYI, maybe I'll get around to it after summoner stuff ;)

Post Reply