• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Ability which may freeze the foe on contact

  • 19
    Posts
    4
    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:

    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:
    Back
    Top