├── .gitignore ├── CHARA_NAME.json ├── CHARA_PROFILE.json ├── LICENSE ├── README.md ├── UnavailableChara.json ├── __init__.py ├── _pcr_data.py ├── config.json ├── gacha.py └── update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/.gitignore -------------------------------------------------------------------------------- /CHARA_NAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/CHARA_NAME.json -------------------------------------------------------------------------------- /CHARA_PROFILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/CHARA_PROFILE.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/README.md -------------------------------------------------------------------------------- /UnavailableChara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/UnavailableChara.json -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/__init__.py -------------------------------------------------------------------------------- /_pcr_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/_pcr_data.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/config.json -------------------------------------------------------------------------------- /gacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/gacha.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrbot/gacha/HEAD/update.py --------------------------------------------------------------------------------