Skip to content

Commit 21ebc0c

Browse files
committed
Updates to the Quest info and Dependencies
Updates to the Quest info and Dependencies
1 parent f0fe7bf commit 21ebc0c

File tree

7 files changed

+701
-424
lines changed

7 files changed

+701
-424
lines changed

db/interfaces/Material.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ export interface Material {
99
year: 0 | 2018 | 2019 | 2020 | 2021,
1010
} | undefined
1111
lootTable?: string
12-
quest?: string
12+
quest?: {
13+
City: string
14+
Quest: string
15+
Quest_Giver: string
16+
} | undefined
1317
workshop?: string
1418
search?: string
1519
}

db/items/quests.ts

+61-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,64 @@
11
// temporary solution until we have quest info
2+
3+
/*
24
export const quests = {
3-
spears2h_als: "Greek Revolt",
4-
bow1h_uasb: "Conquest of the 9 Realms",
5-
arrowoh_ssa: "Setredet's Sacrificial Arrows",
6-
bow1h_ffb: "The Forgotten Bow",
7-
gear_l006: "Stolen Roman Gauntlets",
8-
gear_l005: "Stolen Roman Gauntlets",
9-
gear_l004: "Stolen Roman Gauntlets",
10-
gear_bldg_l004: "Blessing of the Simurgh",
11-
armorlgt_l003: "Edicts from the Beloved Emperor: The Golden Gorget",
5+
spears2h_als: "City: Athens - <br>Quest: Greek Revolt - <br>Quest Giver: Messenger of Aristagoras",
6+
bow1h_uasb: "City: Well of Urd - <br>Quest: Conquest of the 9 Realms - <br>Quest Giver: High Priest of Urd",
7+
arrowoh_ssa: "City: Rhakotis - <br>Quest: Setredet's Sacrificial Arrows - <br>Quest Giver: Prince Sesostris",
8+
bow1h_ffb: "City: Lodi - <br>Quest: The Forgotten Bow - <br>Quest Giver: King Brennos",
9+
gear_l006: "City: Rome - <br>Quest: Stolen Roman Gauntlets - <br>Quest Giver: Scout",
10+
gear_l005: "City: Rome - <br>Quest: Stolen Roman Gauntlets - <br>Quest Giver: Scout",
11+
gear_l004: "City: Rome - <br>Quest: Stolen Roman Gauntlets - <br>Quest Giver: Scout",
12+
gear_bldg_l004: "City: Zabol - <br>Quest: Blessing of the Simurgh - <br>Quest Giver: Zabol Trader",
13+
armorlgt_l003: "City: Capital City - <br>Quest: Edicts from the Beloved Emperor: The Golden Gorget - <br>Quest Giver: Marcus Pollux",
14+
}
15+
*/
16+
17+
18+
export const quests = {
19+
spears2h_als: {
20+
City: "Athens",
21+
Quest: "Greek Revolt",
22+
Quest_Giver: "Messenger of Aristagoras"
23+
},
24+
bow1h_uasb: {
25+
City: "Well of Urd",
26+
Quest: "Conquest of the 9 Realms",
27+
Quest_Giver: "High Priest of Urd"
28+
},
29+
arrowoh_ssa: {
30+
City: "Rhakotis",
31+
Quest: "Setredet's Sacrificial Arrows",
32+
Quest_Giver: "Prince Sesostris"
33+
},
34+
bow1h_ffb: {
35+
City: "Lodi",
36+
Quest: "The Forgotten Bow",
37+
Quest_Giver: "King Brennos"
38+
},
39+
gear_l006: {
40+
City: "Rome",
41+
Quest: "Stolen Roman Gauntlets",
42+
Quest_Giver: "Scout"
43+
},
44+
gear_l005: {
45+
City: "Rome",
46+
Quest: "Stolen Roman Gauntlets",
47+
Quest_Giver: "Scout"
48+
},
49+
gear_l004: {
50+
City: "Rome",
51+
Quest: "Stolen Roman Gauntlets",
52+
Quest_Giver: "Scout"
53+
},
54+
gear_bldg_l004: {
55+
City: "Zabol",
56+
Quest: "Blessing of the Simurgh",
57+
Quest_Giver: "Zabol Trader"
58+
},
59+
armorlgt_l003: {
60+
City: "Capital City",
61+
Quest: "Edicts from the Beloved Emperor: The Golden Gorget",
62+
Quest_Giver: "Marcus Pollux"
63+
}
1264
}

0 commit comments

Comments
 (0)