├── .gitignore ├── LICENSE ├── README.md ├── config.ini ├── gameInformation.py ├── gui.py ├── libogg.dll ├── libvorbis.dll ├── main.py ├── phira.py ├── requirements.txt ├── resource.py ├── split.py ├── split.sh ├── taptap.py ├── typetree.json └── untitled.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/config.ini -------------------------------------------------------------------------------- /gameInformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/gameInformation.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/gui.py -------------------------------------------------------------------------------- /libogg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/libogg.dll -------------------------------------------------------------------------------- /libvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/libvorbis.dll -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/main.py -------------------------------------------------------------------------------- /phira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/phira.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | UnityPy==1.10.18 2 | fsb5 3 | -------------------------------------------------------------------------------- /resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/resource.py -------------------------------------------------------------------------------- /split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/split.py -------------------------------------------------------------------------------- /split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/split.sh -------------------------------------------------------------------------------- /taptap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/taptap.py -------------------------------------------------------------------------------- /typetree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/typetree.json -------------------------------------------------------------------------------- /untitled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/Phigros_Resource/HEAD/untitled.py --------------------------------------------------------------------------------