Skip to content

Commit

Permalink
version(items@0.2.0): Add Pest Items
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWendelborn committed Dec 19, 2024
1 parent bdb76e0 commit 4207ea4
Show file tree
Hide file tree
Showing 2 changed files with 158 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/items/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"sideEffects": false,
"type": "commonjs",
"types": "dist/index.d.ts",
"version": "0.1.2"
"version": "0.2.0"
}
157 changes: 157 additions & 0 deletions packages/items/source/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1192,8 +1192,165 @@ export const northStarItems = new Map<string, ItemMetadata>([
],
])

export const pestItems = new Map<string, ItemMetadata>([
[
'PESTHUNTER_BADGE',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PESTHUNTER_BADGE' },
links: {},
},
],
[
'PESTHUNTER_RING',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PESTHUNTER_RING' },
links: {},
},
],
[
'PESTHUNTER_ARTIFACT',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PESTHUNTER_ARTIFACT' },
links: {},
},
],
[
'MUSHROOM_HELMET',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'MUSHROOM_HELMET' },
links: {},
},
],
[
'BIOHAZARD_HELMET',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'BIOHAZARD_HELMET' },
links: {},
},
],
[
'MUSHROOM_CHESTPLATE',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'MUSHROOM_CHESTPLATE' },
links: {},
},
],
[
'BIOHAZARD_SUIT',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'BIOHAZARD_SUIT' },
links: {},
},
],
[
'MUSHROOM_LEGGINGS',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'MUSHROOM_LEGGINGS' },
links: {},
},
],
[
'BIOHAZARD_LEGGINGS',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'BIOHAZARD_LEGGINGS' },
links: {},
},
],
[
'MUSHROOM_BOOTS',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'MUSHROOM_BOOTS' },
links: {},
},
],
[
'BIOHAZARD_BOOTS',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'BIOHAZARD_BOOTS' },
links: {},
},
],
[
'PESTHUNTERS_GLOVES',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PESTHUNTERS_GLOVES' },
links: {},
},
],
[
'PEST_TRAP',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PEST_TRAP' },
links: {},
},
],
[
'MOUSE_PEST_TRAP',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'MOUSE_PEST_TRAP' },
links: {},
},
],
[
'PESTHUNTING_GUIDE',
{
tradesOn: BZ,
type: 'basic',
ids: { skyblock: 'PESTHUNTING_GUIDE' },
links: {},
},
],
[
'PESTHUNTERS_LAIR_BARN_SKIN',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PESTHUNTERS_LAIR_BARN_SKIN' },
links: {},
},
],
[
'SF:PET_HEDGEHOG',
{
tradesOn: AH,
type: 'basic',
ids: { skyblock: 'PET', cofl: 'PET_HEDGEHOG' },
links: {},
},
],
])

export const allItems = new Map<string, ItemMetadata>([
...bitsItems.entries(),
...crimsonIsleItems.entries(),
...northStarItems.entries(),
...pestItems.entries(),
])

0 comments on commit 4207ea4

Please sign in to comment.