• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • 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.

[Custom Feature Question] Costum Tauros ability idea

BM8

  • 5
    Posts
    6
    Years
    • Seen Aug 20, 2023
    While I was scrolling through the wiki of Pokémon Sage, I saw a Pokémon having an ability that has something to do with the color of the opponent. You can find it here: https://capx.fandom.com/wiki/Spectrum_(ability) it looks very cool.

    Now what I thought would be a cool ability for Tauros --> Color Trigger: When a red Pokémon enters the battle, Tauros' attack stat doubles (you know, because it's a bull).

    Does anyone know how to script this?
     
    In Pokemon Sage, it looks like the color determination is based on the type of the opponent, not their actual color.

    If you wanted to actually base it off of the color of the opposing pokemon, you'd have to check for every red pokemon, something like this:

    Code:
    if isConst?(opponent.species,PBSpecies,:CHARMELEON) && !opponent.isShiny? ||
       isConst?(opponent.species,PBSpecies,:MAGIKARP && !opponent.isShiny? ||
       isConst?(opponent.species,PBSpecies,:GYARADOS && opponent.isShiny? ||

    etc. Obviously this isn't all you'd have to do, hell maybe this won't even work, I could see it activating falsely in double battles, but I think this is more or less what you'd have to do to base it off of actual color.
     
    Back
    Top