Skip to content
andrikos edited this page Dec 16, 2016 · 3 revisions

Nickname

  • %NAME% : Shows pokemon full name.
    %NAME% -> Snorlax
  • %NAME.#% : Trims pokemon name by #.
    %NAME.3% -> Sno
  • %NICK% : Shows pokemon nickname if present, or pokemon name.
    %NICK% -> Rainer
    %NICK% (no nickname) -> Vaporeon
  • %NICK.#% : Trims pokemon nickname if present, or pokemon name.
    %NICK.3% -> Rai
    %NICK.3% (no nickname) -> Vap

##Level

  • %LVL% : Shows pokemon level with one decimal.
    %LVL% -> 10.0
  • %LVL.#% : Round up and trims pokemon level by # decimals.
    %LVL.0% -> 3
    %LVL.10% -> 2.50
  • %LVLP% : Same as %LVL% but add leading zeros.
    %LVLP% -> 02.5
  • %LVLP.#% : Same as %LVL.#% but add leading zeros.
    %LVLP.0% -> 03
    %LVLP.2% -> 02.50

##IV

  • %IV% : Shows pokemon IV with one decimal.
    %IV% -> 6.7
  • %IV.#% : Round up and trims pokemon IV by # decimals.
    %IV.0% -> 7
    %IV.2% -> 6.67
  • %IVP% : Same as %IV% but add leading zeros.
    %IVP% -> 006.7
  • %IVP.#% : Same as %IV.#% but add leading zeros.
    %IVP.0% -> 007
    %IVP.2% -> 006.67

##Attack

  • %ATT% : Shows pokemon attack.
    %ATT% -> 1
  • %ATTP% : Shows pokemon attack with leading zero.
    %ATTP% -> 01
  • %ATTH% : Shows pokemon attack with hexadecimal format.
    %ATTH% (15) -> F

##Defense

  • %DEF% : Shows pokemon defense.
    %DEF% -> 1
  • %DEFP% : Shows pokemon defense with leading zero.
    %DEFP% -> 01
  • %DEFH% : Shows pokemon defense with hexadecimal format.
    %DEFH% (15) -> F

##Stamina

  • %STA% : Shows pokemon stamina.
    %STA% -> 1
  • %STAP% : Shows pokemon stamina with leading zero.
    %STAP% -> 01
  • %STAH% : Shows pokemon stamina with hexadecimal format.
    %STAH% (15) -> F

##CP

  • %CP% : Shows pokemon CP.
    %CP% -> 1750
  • %CPL% : Shows pokemon CP if evolved to the last stage. Return '?' if multiple evolutions are possible.
    %CPL% -> (Weedle) -> 2300
    %CPL% -> (Kakuna) -> 2300
    %CPL% -> (Beedrill) -> -
    %CPL% -> (Eevee) -> ?

##Move

  • %MV1% : Shows pokemon fast attack.
    %MV1% -> Zen Headbutt
  • %MV2% : Shows pokemon charge attack.
    %MV2% -> Seed bomb
  • %MV1.#% : Trims pokemon fast attack by #.
    %MV1.3% -> Zen
  • %MV2.#% : Trims pokemon charge attack by #.
    %MV2.3% -> See

##Move type

  • %MVT1% : Shows pokemon fast attack type.
    %MVT1% -> Psychic
  • %MVT2% : Shows pokemon charge attack type.
    %MVT2% -> Grass
  • %MVT1.#% : Trims pokemon fast attack type by #.
    %MVT1.3% -> Psy
  • %MVT2.#% : Trims pokemon charge attack type by #.
    %MVT2.3% -> Gra

##Move power

  • %MVP1% : Shows pokemon fast attack power.
    %MVP1% -> 12
  • %MVP2% : Shows pokemon charge attack power.
    %MVP2% -> 40
  • %MVP1P% : Shows pokemon fast attack power with leading zero.
    %MVP1P% -> 012
  • %MVP2P% : Shows pokemon charge attack power with leading zero.
    %MVP2P% -> 040

##Pokemon type

  • %TYP1% : Shows pokemon first type.
    %TYP1% -> Normal
  • %TYP2% : Shows pokemon second type.
    %TYP2% -> Electric
  • %TYP1.#% : Trims pokemon first type by #.
    %TYP1.3% -> Nor
  • %TYP2.#% : Trims pokemon second type by #.
    %TYP2.3% -> Ele

Note: Snorlax won't format other that the above commands. This means that you could add a '%' next to the IV like this: %IV%% -> 6.7%

Clone this wiki locally