Skip to content

Commit ee14a5f

Browse files
committed
Update after londinium
Update after londinium
1 parent 7d73314 commit ee14a5f

File tree

8 files changed

+700
-668
lines changed

8 files changed

+700
-668
lines changed

db/items/convert-effect-name.ts

+24
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,30 @@ export function convertEffectName(effect: TraitEffect): string {
7575
return "Melee-Cavalry Armor"
7676
}
7777
}
78+
if (effect.subtype === "Yield") {
79+
if (effect.action === "FishGather") {
80+
return "Food Conservation"
81+
}
82+
if (effect.action === "Gather") {
83+
if (effect.unittype === "AbstractFarm"
84+
|| effect.unittype === "AbstractFish"
85+
|| effect.unittype === "AbstractFruit"
86+
|| effect.unittype === "Fish"
87+
|| effect.unittype === "Herdable"
88+
|| effect.unittype === "Huntable") {
89+
return "Food Conservation"
90+
}
91+
if (effect.unittype === "Tree") {
92+
return "Wood Conservation"
93+
}
94+
if (effect.unittype === "Gold") {
95+
return "Gold Conservation"
96+
}
97+
if (effect.unittype === "Stone") {
98+
return "Stone Conservation"
99+
}
100+
}
101+
}
78102
if (effect.subtype === "WorkRate") {
79103
if (effect.action === "Gather") {
80104
if (effect.unittype === "AbstractFarm"

db/items/quests.ts

+6
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,11 @@ export const quests = {
8787
Quest: "Tremendous Tarsosian Treasure Troves",
8888
Quest_Giver: "Tarsos Trader",
8989
Quest_Starter: "None"
90+
},
91+
gear_vill_l003: {
92+
Region: "Londinium",
93+
Quest: "Londinium's Savior",
94+
Quest_Giver: "Wanted Board",
95+
Quest_Starter: "None"
9096
}
9197
}

db/items/source.ts

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ const questRewards = [
7272
"armorbldg_l004",
7373
"merchant2h_l002",
7474
"tool1h_l003",
75+
"gear_vill_l003",
7576
]
7677

7778
const eventHalloween2018 = [

src/assets/db/consumables.json

+1-1
Large diffs are not rendered by default.

src/assets/db/items.json

+1-1
Large diffs are not rendered by default.

src/assets/sprites/items.png

10.8 KB
Loading

src/assets/sprites/items.scss

+667-666
Large diffs are not rendered by default.

src/assets/sprites/items.webp

1.54 KB
Binary file not shown.

0 commit comments

Comments
 (0)