From 056696e00c65d842a2cf9f65832229772ac7ee54 Mon Sep 17 00:00:00 2001 From: bartvdbraak Date: Mon, 29 Apr 2019 13:57:28 +0200 Subject: [PATCH] - added new quest unlocks --- index.html | 30 +++++++++++++++++++----------- js/script.js | 26 +++++++++++++++++++++++++- 2 files changed, 44 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 7d6759f..0186950 100644 --- a/index.html +++ b/index.html @@ -77,10 +77,10 @@
-
Quest unlocks
+
Quest unlocks
- +
@@ -88,7 +88,7 @@

+ Dragon Slayer II Unlocks Adamant, Rune Dragons



-
+

+ Cabin Fever Unlocks Cave, Jungle Horrors
+
+
+
+

+ Regicide (started) Unlocks Elves





-
+ Skippy and the Mogres (miniquest) Unlocks Mogres
+
diff --git a/js/script.js b/js/script.js index c29d919..d609428 100644 --- a/js/script.js +++ b/js/script.js @@ -122,6 +122,7 @@ function filterTasks(data) { } break; case 'DUST DEVILS': + case 'SMOKE DEVILS': if ($("#dustdevils").prop("checked") == false) { index_list.unshift(i) } @@ -132,7 +133,8 @@ function filterTasks(data) { } break; case 'MUTATED ZYGOMITES': - if ($("#mutatedzygomites").prop("checked") == false) { + case 'OTHERWORLDLY BEINGS': + if ($("#lostcity").prop("checked") == false) { index_list.unshift(i) } break; @@ -142,6 +144,26 @@ function filterTasks(data) { index_list.unshift(i) } break; + case 'SKELETAL WYVERNS': + if ($("#skeletalwyverns").prop("checked") == false) { + index_list.unshift(i) + } + break; + case 'SEA SNAKES': + if ($("#seasnakes").prop("checked") == false) { + index_list.unshift(i) + } + break; + case 'FIRE GIANTS': + if ($("#firegiants").prop("checked") == false) { + index_list.unshift(i) + } + break; + case 'KILLERWATTS': + if ($("#killerwatts").prop("checked") == false) { + index_list.unshift(i) + } + break; case 'ELVES': if ($("#elves").prop("checked") == false) { index_list.unshift(i) @@ -162,9 +184,11 @@ function filterTasks(data) { index_list.unshift(i) } break; + case 'GREEN DRAGONS': case 'BLUE DRAGONS': case 'BLACK DRAGONS': case 'RED DRAGONS': + case 'BRONZE DRAGONS': case 'IRON DRAGONS': case 'STEEL DRAGONS': if ($("#dragonslayer").prop("checked") == false) {