-
Notifications
You must be signed in to change notification settings - Fork 21
Custom formats
Pedro Diaz edited this page Oct 12, 2016
·
6 revisions
Nickname
- %NICK% : Shows pokemon full name. %NICK% -> Snorlax
- %NICK.#% : Trims pokemon name by #. %NICK.3% -> Sno
Level
- %LVL% : Shows pokemon level with one decimal. %LVL% -> 2.5
- %LVL.#% : Round up and trims pokemon level by # decimals. %LVL.0% -> 3. %LVL.2% -> 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
Move
- %MV1% : Shows pokemon fast attack. %MV1% -> Zen Headbutt
- %MV2% : Shows pokemon charge attack. %MV2% -> Zen Headbutt
- %MV1.#% : Trims pokemon fast attack by #. %MV1.3% -> Zen
- %MV2.#% : Trims pokemon charge attack by #. %MV2.3% -> Zen
Move type
- %MVT1% : Shows pokemon fast attack type. %MVT1% -> Psychic
- %MVT2% : Shows pokemon charge attack type. %MVT2% -> Psychic
- %MVT1.#% : Trims pokemon fast attack type by #. %MVT1.3% -> Psy
- %MVT2.#% : Trims pokemon charge attack type by #. %MVT2.3% -> Psy
Move power
- %MVP1% : Shows pokemon fast attack power. %MVP1% -> 15
- %MVP2% : Shows pokemon charge attack power. %MVP2% -> 15
- %MVP1P% : Shows pokemon fast attack power with leading zero. %MVP1P% -> 015
- %MVP2P% : Shows pokemon charge attack power with leading zero. %MVP2P% -> 015
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
Snorlax wont format other that the above commands. This means that you could add a '%' next to the Iv like this: %IV%% -> 6.7%