├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── README.md ├── package.json └── src ├── img ├── android-icon-144x144.png ├── android-icon-192x192.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 ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── guardianlogo.png ├── gw2logo.png ├── loading.gif ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png └── ms-icon-70x70.png ├── manifest.less ├── origin-index.html ├── program ├── bank.js ├── convert_to_boolean.js ├── cost_item.html ├── cost_item.js ├── disciplines_table.html ├── disciplines_table.js ├── item_table.html ├── item_table.js ├── jquery.closestchild.js ├── main.js ├── main_error_dialog.html ├── price.html ├── price.js ├── program.js ├── recipe_companion.js ├── recursive_recipe_computer.js ├── site_links.html ├── site_links.js └── wallet.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/package.json -------------------------------------------------------------------------------- /src/img/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-144x144.png -------------------------------------------------------------------------------- /src/img/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-192x192.png -------------------------------------------------------------------------------- /src/img/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-36x36.png -------------------------------------------------------------------------------- /src/img/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-48x48.png -------------------------------------------------------------------------------- /src/img/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-72x72.png -------------------------------------------------------------------------------- /src/img/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/android-icon-96x96.png -------------------------------------------------------------------------------- /src/img/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/img/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/img/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/img/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-152x152.png -------------------------------------------------------------------------------- /src/img/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-180x180.png -------------------------------------------------------------------------------- /src/img/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/img/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/img/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/img/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/img/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon-precomposed.png -------------------------------------------------------------------------------- /src/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/apple-icon.png -------------------------------------------------------------------------------- /src/img/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/browserconfig.xml -------------------------------------------------------------------------------- /src/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/favicon-16x16.png -------------------------------------------------------------------------------- /src/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/favicon-32x32.png -------------------------------------------------------------------------------- /src/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/favicon-96x96.png -------------------------------------------------------------------------------- /src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/favicon.ico -------------------------------------------------------------------------------- /src/img/guardianlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/guardianlogo.png -------------------------------------------------------------------------------- /src/img/gw2logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/gw2logo.png -------------------------------------------------------------------------------- /src/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/loading.gif -------------------------------------------------------------------------------- /src/img/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/manifest.json -------------------------------------------------------------------------------- /src/img/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/img/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/img/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/img/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/img/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/manifest.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/manifest.less -------------------------------------------------------------------------------- /src/origin-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/origin-index.html -------------------------------------------------------------------------------- /src/program/bank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/bank.js -------------------------------------------------------------------------------- /src/program/convert_to_boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/convert_to_boolean.js -------------------------------------------------------------------------------- /src/program/cost_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/cost_item.html -------------------------------------------------------------------------------- /src/program/cost_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/cost_item.js -------------------------------------------------------------------------------- /src/program/disciplines_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/disciplines_table.html -------------------------------------------------------------------------------- /src/program/disciplines_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/disciplines_table.js -------------------------------------------------------------------------------- /src/program/item_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/item_table.html -------------------------------------------------------------------------------- /src/program/item_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/item_table.js -------------------------------------------------------------------------------- /src/program/jquery.closestchild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/jquery.closestchild.js -------------------------------------------------------------------------------- /src/program/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/main.js -------------------------------------------------------------------------------- /src/program/main_error_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/main_error_dialog.html -------------------------------------------------------------------------------- /src/program/price.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/price.html -------------------------------------------------------------------------------- /src/program/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/price.js -------------------------------------------------------------------------------- /src/program/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/program.js -------------------------------------------------------------------------------- /src/program/recipe_companion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/recipe_companion.js -------------------------------------------------------------------------------- /src/program/recursive_recipe_computer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/recursive_recipe_computer.js -------------------------------------------------------------------------------- /src/program/site_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/site_links.html -------------------------------------------------------------------------------- /src/program/site_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/site_links.js -------------------------------------------------------------------------------- /src/program/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/program/wallet.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedGlow/TheLegendaryQuest/HEAD/src/style.css --------------------------------------------------------------------------------