├── favicon.ico ├── img ├── globe.png ├── wizkids.png ├── background.jpg ├── cursed-hoard.png └── fantasy-realms.jpg ├── sound ├── clear.mp3 ├── click.mp3 ├── magic.mp3 └── swoosh.mp3 ├── icons ├── apple-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── ms-icon-70x70.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── android-icon-144x144.png ├── android-icon-192x192.png └── apple-icon-precomposed.png ├── browserconfig.xml ├── tests.html ├── find-scores.html ├── manifest.json ├── fantasy-realms.appcache ├── doc └── blanking-and-clearing.txt ├── js ├── discard.js ├── jquery.i18n.properties.min.js ├── tests.js ├── find-scores.js ├── app.js ├── hand.js └── combinatorics.js ├── service-worker.js ├── css └── style.css ├── index.html └── i18n ├── Messages_zh.properties ├── Messages_kr.properties ├── Messages_es.properties ├── Messages_cz.properties ├── Messages.properties └── Messages_en.properties /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/img/globe.png -------------------------------------------------------------------------------- /img/wizkids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/img/wizkids.png -------------------------------------------------------------------------------- /sound/clear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/sound/clear.mp3 -------------------------------------------------------------------------------- /sound/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/sound/click.mp3 -------------------------------------------------------------------------------- /sound/magic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/sound/magic.mp3 -------------------------------------------------------------------------------- /sound/swoosh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/sound/swoosh.mp3 -------------------------------------------------------------------------------- /img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/img/background.jpg -------------------------------------------------------------------------------- /icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon.png -------------------------------------------------------------------------------- /img/cursed-hoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/img/cursed-hoard.png -------------------------------------------------------------------------------- /icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/favicon-16x16.png -------------------------------------------------------------------------------- /icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/favicon-32x32.png -------------------------------------------------------------------------------- /icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/favicon-96x96.png -------------------------------------------------------------------------------- /icons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/ms-icon-70x70.png -------------------------------------------------------------------------------- /img/fantasy-realms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/img/fantasy-realms.jpg -------------------------------------------------------------------------------- /icons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-57x57.png -------------------------------------------------------------------------------- /icons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-60x60.png -------------------------------------------------------------------------------- /icons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-72x72.png -------------------------------------------------------------------------------- /icons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-76x76.png -------------------------------------------------------------------------------- /icons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/ms-icon-144x144.png -------------------------------------------------------------------------------- /icons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/ms-icon-150x150.png -------------------------------------------------------------------------------- /icons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/ms-icon-310x310.png -------------------------------------------------------------------------------- /icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-36x36.png -------------------------------------------------------------------------------- /icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-48x48.png -------------------------------------------------------------------------------- /icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-72x72.png -------------------------------------------------------------------------------- /icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-96x96.png -------------------------------------------------------------------------------- /icons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-114x114.png -------------------------------------------------------------------------------- /icons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-120x120.png -------------------------------------------------------------------------------- /icons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-144x144.png -------------------------------------------------------------------------------- /icons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-152x152.png -------------------------------------------------------------------------------- /icons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-180x180.png -------------------------------------------------------------------------------- /icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-144x144.png -------------------------------------------------------------------------------- /icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/android-icon-192x192.png -------------------------------------------------------------------------------- /icons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasy-realms/fantasy-realms.github.io/HEAD/icons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | #ffffff 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fantasy Realms: Tests 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |