- 53
- Posts
- 5
- Years
- Seen Feb 6, 2025
In Pokebattle_Move, under Fluffy; Paste this:
If you don't have an OHKO animation for your game:
Spoiler:
Code:
if attacker.hasWorkingAbility(:SOULTRACER) && pbIsDamaging? && @battle.pbRandom(10)<3
opponent.pbReduceHP((opponent.totalhp).floor)
if opponent.isFainted?
@battle.pbCommonAnimation("OHKO",opponent,nil)
end
end
If you don't have an OHKO animation for your game:
Spoiler:
Code:
if attacker.hasWorkingAbility(:SOULTRACER) && pbIsDamaging? && @battle.pbRandom(10)<3
opponent.pbReduceHP((opponent.totalhp).floor)
if opponent.isFainted?
@battle.pbDisplay(_INTL("Soul Tracer made the move a One-Hit KO!"))
end
end