File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export enum LootKindId {
4646 THUNFISCHSHAKE = 33 ,
4747 KAFFEEMUEHLE = 34 ,
4848 AWS_RECHNUNG = 35 ,
49+ BIBER = 36 ,
4950}
5051
5152export 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/*
Original file line number Diff line number Diff 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 ( {
You can’t perform that action at this time.
0 commit comments