Skip to content

Commit c863737

Browse files
committed
feat(gw2-ui): Additional ascended food descriptions
1 parent db9d7d3 commit c863737

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

gw2-ui/src/components/Item/Item.stories.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,9 @@ export function AscendedFood() {
5151
<br />
5252
<Item id={91805} />
5353
<br />
54+
<Item id={97200} />
5455
<br />
55-
This one does not have overrides:
56-
<br />
57-
<Item id={97826} />
56+
<Item id={99785} />
5857
<br />
5958
</>
6059
);

gw2-ui/src/gw2api/overrides/data/descriptions.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const clove = '-20% Incoming Condition Duration\n';
33
const mint = '+10% Outgoing Healing\n';
44
const peppercorn = '-10% Incoming Damage\n';
55
const sesame = 'Gain Health Every Second\n';
6+
const fish = '+150 Fishing Power\n'
67

78
const sousVideSteak = '+100 Power\n+70 Ferocity';
89
const curedMeatFlatbread = '+100 Condition Damage\n+70 Expertise';
@@ -21,6 +22,8 @@ const truffleRavioli = '+100 Vitality\n+70 Toughness';
2122
const ascended =
2223
'\n+10% Karma\n+5% All Experience Gained\n+20% Magic Find\n+20% Gold Find\n+10% WXP Gained';
2324

25+
const wvwOnly = 'Stats only apply in WvW:\n'
26+
2427
export const food: Record<number, string> = {
2528
91805: `${cilantro}${sousVideSteak}${ascended}`,
2629
91878: `${cilantro}${curedMeatFlatbread}${ascended}`,
@@ -82,6 +85,16 @@ export const food: Record<number, string> = {
8285
91723: `${clove}${truffleRavioli}${ascended}`,
8386
91841: `${clove}${fruitSalad}${ascended}`,
8487
91766: `${clove}${cremeBrulee}${ascended}`,
88+
89+
97200: `${fish}${oysterSoup}${ascended}`,
90+
97282: `${fish}${sousVideSteak}${ascended}`,
91+
97472: `${fish}${fruitSalad}${ascended}`,
92+
97592: `${fish}${curedMeatFlatbread}${ascended}`,
93+
97826: `${fish}${truffleRavioli}${ascended}`,
94+
95+
99785: `${wvwOnly}${peppercorn}${sousVideSteak}${ascended}`,
96+
99794: `${wvwOnly}${peppercorn}${oysterSoup}${ascended}`,
97+
99804: `${wvwOnly}${mint}${fruitSalad}${ascended}`,
8598
};
8699

87100
export const traits: Record<number, string> = {

0 commit comments

Comments
 (0)