Skip to content

Commit 1f0989d

Browse files
committed
Add item
1 parent 39b84e0 commit 1f0989d

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

assets/loot/53-magerquark.png

527 KB
Loading

src/service/lootData.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const LootKind = Object.freeze({
6363
BABYBEL_EXODIA: 50,
6464
GIROKONTO: 51,
6565
STROMTARIF: 52,
66+
MAGERQUARK: 53,
6667
} as const);
6768
export type LootKindId = (typeof LootKind)[keyof typeof LootKind];
6869

@@ -768,6 +769,16 @@ export const lootTemplateMap: Record<LootKindId, LootTemplate> = {
768769
emote: "🔌",
769770
asset: "assets/loot/52-stromtarif.jpg",
770771
},
772+
[LootKind.MAGERQUARK]: {
773+
id: LootKind.MAGERQUARK,
774+
weight: 2,
775+
displayName: "Magerquark",
776+
titleText: "Einen Becher Magerquark",
777+
dropDescription: "Viel Protein, wenig Fett.",
778+
emote: "🍶",
779+
asset: "assets/loot/53-magerquark.png",
780+
initialAttributes: [LootAttributeKind.NUTRI_SCORE_A],
781+
},
771782
} as const;
772783

773784
export const lootTemplates: LootTemplate[] = Object.values(lootTemplateMap);

0 commit comments

Comments
 (0)