- 19
- Posts
- 5
- Years
- Seen Oct 27, 2023
This Ability may freeze the foe if it got attacked by a Physical move:
Paste this in PokeBattle_Battler under Poisonpoint:
This was my first more or less more harder ability to make since where I made this I haven´t even done my second gym lol.
Paste this in PokeBattle_Battler under Poisonpoint:
Code:
#Absolute Cold
if target.hasWorkingAbility(:ABSOLUTECOLD,true) &&
@battle.pbRandom(10)<2 && user.pbCanFreeze?(false)
PBDebug.log("[#{target.pbThis}'s Absolute Cold triggered]")
user.pbFreeze
@battle.pbDisplay(_INTL("{1}'s {2} froze {3}!",target.pbThis,
PBAbilities.getName(target.ability),user.pbThis(true)))
end
This was my first more or less more harder ability to make since where I made this I haven´t even done my second gym lol.
Last edited by a moderator: