• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

v21.1 User's Speed is used instead of user's Attack for this move's calculations. (Aerial Ace) 1.69

This resource pertains to version 21.1 of Pokémon Essentials.
Pokémon Essentials Version
v21.1 ✅
This is a move to help fast-moving weak-hitting Pokemon compete! Use this, and the user's Speed is used instead of the user's Attack for this move's calculations. I recommend editing an existing move tons of Pokemon already learn (perhaps Aerial Ace or Quick Attack?) to have this effect.

The following code goes in MoveEffects_MoveAttributes between the code for Foul Play and Secret Sword.

#===============================================================================
# User's Speed is used instead of user's Attack for this move's calculations.
# (Aerial Ace)
#===============================================================================
class Battle::Move::MySpeedIsMyAttack < Battle::Move
def pbGetAttackStats(user, target)
return user.speed, target.stages[:SPEED] + Battle::Battler::STAT_STAGE_MAXIMUM
end
end
Credits
Jason Godwyn
  • Like
Reactions: FsT/110
Author
SuperSpyroDragon64
Views
707
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from SuperSpyroDragon64

Back
Top