├── .gitignore ├── LICENSE ├── README.md ├── automation.js ├── data ├── cosmo.jpg └── cosmo.json ├── package.json ├── phantomJS-scirpt.js ├── samples └── biaozhunbao2.png ├── skills.json └── templates ├── Mondrian ├── template.css └── template.html ├── Mondrian_other ├── template.css └── template.html └── assets ├── blood.png ├── fonts ├── NotoSansHans-DemiLight.otf ├── gaoduanhei.ttf └── xintangren.ttf ├── jinnang.png ├── logo.png └── profile.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/README.md -------------------------------------------------------------------------------- /automation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/automation.js -------------------------------------------------------------------------------- /data/cosmo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/data/cosmo.jpg -------------------------------------------------------------------------------- /data/cosmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/data/cosmo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/package.json -------------------------------------------------------------------------------- /phantomJS-scirpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/phantomJS-scirpt.js -------------------------------------------------------------------------------- /samples/biaozhunbao2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/samples/biaozhunbao2.png -------------------------------------------------------------------------------- /skills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/skills.json -------------------------------------------------------------------------------- /templates/Mondrian/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/Mondrian/template.css -------------------------------------------------------------------------------- /templates/Mondrian/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/Mondrian/template.html -------------------------------------------------------------------------------- /templates/Mondrian_other/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/Mondrian_other/template.css -------------------------------------------------------------------------------- /templates/Mondrian_other/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/Mondrian_other/template.html -------------------------------------------------------------------------------- /templates/assets/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/blood.png -------------------------------------------------------------------------------- /templates/assets/fonts/NotoSansHans-DemiLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/fonts/NotoSansHans-DemiLight.otf -------------------------------------------------------------------------------- /templates/assets/fonts/gaoduanhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/fonts/gaoduanhei.ttf -------------------------------------------------------------------------------- /templates/assets/fonts/xintangren.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/fonts/xintangren.ttf -------------------------------------------------------------------------------- /templates/assets/jinnang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/jinnang.png -------------------------------------------------------------------------------- /templates/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/logo.png -------------------------------------------------------------------------------- /templates/assets/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackjutsu/HeroCards/HEAD/templates/assets/profile.jpg --------------------------------------------------------------------------------