Created
January 12, 2019 01:31
-
-
Save esauvisky/82d28dad377511a4423d2271d4cc4d52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
actions: | |
# Uncomment this and comment everything else to NOT rename any pokemon, just scan for adding to history | |
# - conditions: | |
# success: true | |
# - conditions: | |
# success: false | |
# Failed scans get renamed for later verification | |
- conditions: | |
success: false | |
actions: | |
rename: "! Failed" | |
# Renames Unowns with prefix | |
- conditions: | |
name__in: | |
- Unown | |
actions: | |
rename: "♣ {calcy}" | |
# Renames babies | |
- conditions: | |
name__in: | |
- Pichu | |
- Togepi | |
- Igglybuff | |
- Cleffa | |
- Elekid | |
- Smoochum | |
- Magby | |
- Budew | |
- Wynaut | |
- Tyrogue | |
- Meltan | |
- Azurill | |
- Munchlax | |
actions: | |
rename: "♥ {name}" #{iv}" | |
# Renames Myth/Quest/Rare/Exclusive/Cool | |
- conditions: | |
name__in: | |
- Riolu | |
- Spiritomb | |
- Spinda | |
- Shedinja | |
- Shinx | |
- Celebi | |
- Mew | |
actions: | |
rename: "♦ {calcy}" | |
# Legendary/ExRaid/Mythical get renamed with custom prefix | |
- conditions: | |
name__in: | |
- Mewtwo | |
- Deoxys Normal | |
- Deoxys Attack | |
- Deoxys Defense | |
- Deoxys Speed | |
- Giratina Altered | |
- Articuno | |
- Zapdos | |
- Moltres | |
- Raikou | |
- Gengar | |
- Entei | |
- Suicune | |
- Ho-Oh | |
- Lugia | |
- Regirock | |
- Regice | |
- Registeel | |
- Latias | |
- Latios | |
- Kyogre | |
- Groudon | |
- Rayquaza | |
- Absol | |
- Cresselia | |
- Marowak Alolan | |
- Heltran | |
actions: | |
rename: "·{calcy}" | |
# Renames hundos before everything else | |
- conditions: | |
iv__eq: 100 | |
actions: | |
rename-calcy: | |
# Potential IV100 get appraised or renamed for later verification | |
- conditions: | |
iv_max__eq: 100 | |
appraised: false | |
actions: | |
# appraise: | |
rename: "! Verify" | |
## Renames luckyegg evo pokemons (except hundos) | |
# - conditions: | |
# name__in: | |
# - Pidgey | |
# - Weedle | |
# - Whishmur | |
# - Wurmple | |
# - Caterpie | |
# actions: | |
# rename: "∞ {calcy}" | |
# For trading (high cp + low IV) | |
# - conditions: | |
# cp__ge: 2000 | |
# iv_max__lt: 95 | |
# actions: | |
# rename: "‰ {calcy}" | |
# For trading (for candy) | |
- conditions: | |
name__in: | |
- Tyranitar | |
- Dragonite | |
- Snorlax | |
- Machamp | |
- Blissey | |
- Salamence | |
- Chansey | |
- Larvitar | |
- Pupitar | |
- Bagon | |
- Shelgon | |
- Beldum | |
- Metang | |
- Ralts | |
- Pineco | |
- Shinx | |
- Lickitung | |
- Slakoth | |
- Dratini | |
- Feebas | |
- Porygon | |
- Croagunk | |
- Skorupi | |
- Finneon | |
- Bronzor | |
- Lapras | |
actions: | |
rename: "• {calcy}" | |
# Renames everything else below iv70 | |
- conditions: | |
iv_max__lt: 70 | |
actions: | |
rename: "∞ {calcy}" | |
# Renames anything else that doesn't matches any rule above | |
# which, in theory, shouldn't happen, so it adds a prefix to fix the rules | |
- actions: | |
rename: "¿ {calcy}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment