|
@@ -199,6 +199,7 @@ SHOWDOWN_REPLACEMENTS = [
|
|
|
("nidoran-m", "nidoranm"), # nidoran is a special case
|
|
|
("-f", "f"), # gender diff forms
|
|
|
(re.compile(r"-m$"), ""), # gender diff forms
|
|
|
+ (re.compile(r"^ho-oh$"), "hooh"), # Ho-oh special case
|
|
|
]
|
|
|
|
|
|
|
|
@@ -267,6 +268,7 @@ async def main(dex_file: str, image_dir: str, startIndex: int, endIndex: int, lo
|
|
|
new_downloads += 1
|
|
|
print(f"New Downloads: {new_downloads}")
|
|
|
|
|
|
+
|
|
|
if __name__ == "__main__":
|
|
|
from sys import argv
|
|
|
# TODO make this an arg parser
|