├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── account.json ├── create_img.py ├── fonts ├── SourceHanSansCN-Medium.otf ├── pcrcnfont.ttf └── pcrtwfont.ttf ├── img ├── frame │ ├── blue.png │ ├── color.png │ ├── copper.png │ ├── gold.png │ ├── green.png │ ├── orange.png │ ├── purple.png │ ├── red.png │ ├── silver.png │ └── white.png ├── support.png ├── template.png └── yuansu.png ├── jjchistory.py ├── pcrclient.py ├── playerpref.py ├── requirements.txt └── safeservice.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.xml 3 | __pycache__/* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/__init__.py -------------------------------------------------------------------------------- /account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/account.json -------------------------------------------------------------------------------- /create_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/create_img.py -------------------------------------------------------------------------------- /fonts/SourceHanSansCN-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/fonts/SourceHanSansCN-Medium.otf -------------------------------------------------------------------------------- /fonts/pcrcnfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/fonts/pcrcnfont.ttf -------------------------------------------------------------------------------- /fonts/pcrtwfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/fonts/pcrtwfont.ttf -------------------------------------------------------------------------------- /img/frame/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/blue.png -------------------------------------------------------------------------------- /img/frame/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/color.png -------------------------------------------------------------------------------- /img/frame/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/copper.png -------------------------------------------------------------------------------- /img/frame/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/gold.png -------------------------------------------------------------------------------- /img/frame/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/green.png -------------------------------------------------------------------------------- /img/frame/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/orange.png -------------------------------------------------------------------------------- /img/frame/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/purple.png -------------------------------------------------------------------------------- /img/frame/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/red.png -------------------------------------------------------------------------------- /img/frame/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/silver.png -------------------------------------------------------------------------------- /img/frame/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/frame/white.png -------------------------------------------------------------------------------- /img/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/support.png -------------------------------------------------------------------------------- /img/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/template.png -------------------------------------------------------------------------------- /img/yuansu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/img/yuansu.png -------------------------------------------------------------------------------- /jjchistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/jjchistory.py -------------------------------------------------------------------------------- /pcrclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/pcrclient.py -------------------------------------------------------------------------------- /playerpref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/playerpref.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/requirements.txt -------------------------------------------------------------------------------- /safeservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiao/pcrjjc3-tw/HEAD/safeservice.py --------------------------------------------------------------------------------