├── .gitignore ├── LICENSE ├── README.md ├── Screenshots ├── 1.png ├── 2.png └── 3.png ├── client.js ├── constants.js ├── d10.svg ├── index.css ├── index.html ├── index.js ├── jquery.placeholder.js ├── print.css └── sample-decklists ├── .DS_Store ├── Black-Red Hollow One by Jessica Estephan.txt ├── Humans by Ryan Lewis Jonns.txt ├── Mono-Green Tron by Lachlan Saunders.txt └── wtwlf123s_cube.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | notes.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/client.js -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/constants.js -------------------------------------------------------------------------------- /d10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/d10.svg -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/index.js -------------------------------------------------------------------------------- /jquery.placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/jquery.placeholder.js -------------------------------------------------------------------------------- /print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/print.css -------------------------------------------------------------------------------- /sample-decklists/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/sample-decklists/.DS_Store -------------------------------------------------------------------------------- /sample-decklists/Black-Red Hollow One by Jessica Estephan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/sample-decklists/Black-Red Hollow One by Jessica Estephan.txt -------------------------------------------------------------------------------- /sample-decklists/Humans by Ryan Lewis Jonns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/sample-decklists/Humans by Ryan Lewis Jonns.txt -------------------------------------------------------------------------------- /sample-decklists/Mono-Green Tron by Lachlan Saunders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/sample-decklists/Mono-Green Tron by Lachlan Saunders.txt -------------------------------------------------------------------------------- /sample-decklists/wtwlf123s_cube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philo-jh/MTG-Proxy-Generator/HEAD/sample-decklists/wtwlf123s_cube.txt --------------------------------------------------------------------------------