-
Notifications
You must be signed in to change notification settings - Fork 33
/
ridiculously-complex-config.yaml
222 lines (197 loc) · 4.62 KB
/
ridiculously-complex-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
## This shows the complexity level that you can achieve with the renamer.
## It's actually my true config.yaml
actions:
# Failed scans get renamed for later verification
- conditions:
success: false
actions:
rename: "! Failed"
# Renames Unowns with prefix
- conditions:
name__in:
- Unown
actions:
rename: "∅ The {iv_avg}"
# Renames babies
- conditions:
name__in:
- Riolu
- Pichu
- Togepi
- Igglybuff
- Cleffa
- Elekid
- Smoochum
- Magby
- Budew
- Wynaut
- Tyrogue
- Meltan
- Azurill
- Munchlax
- Shinx
actions:
appraise:
rename: "♥ {name}{iv_avg}"
# Renames Myth/Quest/Rare/Exclusive/Cool
- conditions:
name__in:
- Spiritomb
- Spinda
- Shedinja
- Celebi
- Mew
- Castform
actions:
rename: "♦ {name}"
# High IV Legendary/ExRaid/Mythical/Meta-Relevant
- 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
iv_max__gt: 90
actions:
rename: "×{calcy}"
# Bad Legendary/ExRaid/Mythical/Meta-Relevant
- 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}"
# Potential IV100 get appraised or renamed for later verification
- conditions:
iv_max__eq: 100
appraised: false
actions:
appraise:
# rename: "! Verify"
# Renames hundos before everything else
- conditions:
iv__eq: 100
actions:
rename: "{calcy}"
# Renames luckyegg evo pokemons (except hundos)
# - conditions:
# name__in:
# - Pidgey
# - Weedle
# - Whishmur
# - Wurmple
# - Caterpie
# actions:
# rename-prefix: "‰ "
# Renames everything between (max) IV95 and 100 with a prefix,
# for easily transfering shitty IV95-100 common pokemons afterwards
- conditions:
iv_max__ge: 95
actions:
rename: "∞ {calcy}"
# For trading (only if CP is low, high CP ones are renamed on next step)
- conditions:
cp__lt: 2000
name__in:
- Larvitar
- Pupitar
- Tyranitar
- Dratini
- Dragonair
- Dragonite
- Chansey
- Blissey
- Bagon
- Shelgon
- Salamence
- Beldum
- Metang
- Metagross
- Ralts
- Kirlia
- Gardevoir
- Machop
- Machoke
- Machamp
- Slakoth
- Feebas
- Snorlax
- Pineco
- Lickitung
- Gastly
actions:
rename: "Ω {calcy}"
# For trading (high cp + low IV + not meta-relevant)
- conditions:
cp__ge: 2000
iv_max__lt: 90
name__not_in:
- Tyranitar
- Dragonite
- Blissey
- Salamence
- Metagross
- Gardevoir
- Machamp
- Slaking
- Snorlax
actions:
rename: "Ω {calcy}"
# Skips everything else below IV95
- conditions:
iv_max__lt: 95
# 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}"
iv_regexes:
- ^.+ +(?P<iv>\d+)$
- ^.+ +(?P<iv_min>\d+)\-(?P<iv_max>\d+)$