Skip to content

Commit 3a7cb08

Browse files
committed
Süßer Biber als Loot item hinzugefügt
1 parent 38b3b45 commit 3a7cb08

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

assets/loot/36-biber.jpg

1 MB
Loading

src/service/lootData.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export enum LootKindId {
4646
THUNFISCHSHAKE = 33,
4747
KAFFEEMUEHLE = 34,
4848
AWS_RECHNUNG = 35,
49+
BIBER = 36,
4950
}
5051

5152
export enum LootAttributeClassId {
@@ -475,6 +476,15 @@ export const lootTemplates: LootTemplate[] = [
475476
emote: ":package:",
476477
asset: "assets/loot/35-aws-rechnung.png",
477478
},
479+
{
480+
id: LootKindId.BIBER,
481+
weight: 2,
482+
displayName: "Süßer Biber",
483+
titleText: "Bóbr",
484+
dropDescription: "Bóbr kurwa! Ja pierdolę! Jakie bydlę!",
485+
emote: ":beaver:",
486+
asset: "assets/loot/36-biber.jpg",
487+
},
478488
] as const;
479489

480490
/*

src/storage/migrations/10-loot-attributes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export async function up(db: Kysely<any>) {
4747
.returningAll()
4848
.executeTakeFirstOrThrow();
4949

50-
if (lootKindId === 1 /* LootKindId.KADSE */) {
50+
if (lootKindId === 1 /* LootKindId.KADSE */ || lootKindId === 36 /* LootKindId.BIBER */) {
5151
await db
5252
.insertInto("lootAttribute")
5353
.values({

0 commit comments

Comments
 (0)