mirror of
https://github.com/pret/pokestadium.git
synced 2026-04-24 23:37:22 -05:00
19 lines
386 B
Python
Executable File
19 lines
386 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import re
|
|
import os
|
|
from pathlib import Path
|
|
import crunch64
|
|
|
|
# This will only decompress an asset that has a single Yay0!
|
|
# usage: decompress_yay0.py [in file] [out file]
|
|
|
|
filepath = Path(sys.argv[1])
|
|
filebytes = filepath.read_bytes()
|
|
|
|
decompressed = crunch64.yay0.decompress(filebytes)
|
|
|
|
fileout = Path(sys.argv[2])
|
|
fileout.write_bytes(decompressed)
|