Skip to content

Commit

Permalink
Allow buying genie lamps with frog tokens (#6125)
Browse files Browse the repository at this point in the history
  • Loading branch information
00justas authored Oct 16, 2024
1 parent 3ee90ad commit 2355fdf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib/data/buyables/buyables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,15 @@ const randomEventBuyables: Buyable[] = [
outputItems: new Bank({
'Frog mask': 1
})
},
{
name: 'Genie lamp',
itemCost: new Bank({
'Frog token': 1
}),
outputItems: new Bank({
'Genie lamp': 1
})
}
];

Expand Down
9 changes: 9 additions & 0 deletions tests/unit/snapshots/banksnapshots.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2529,6 +2529,15 @@ exports[`OSB Buyables 1`] = `
"6188": 1,
},
},
{
"itemCost": {
"6183": 1,
},
"name": "Genie lamp",
"outputItems": {
"2528": 1,
},
},
{
"gpCost": 100000,
"itemCost": {},
Expand Down

0 comments on commit 2355fdf

Please sign in to comment.