Skip to content

Commit

Permalink
Add Deathly collector (i) (#6174)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Nov 25, 2024
1 parent 0716f57 commit fc0783b
Show file tree
Hide file tree
Showing 9 changed files with 410 additions and 342 deletions.
2 changes: 2 additions & 0 deletions data/bso_items.json
Original file line number Diff line number Diff line change
Expand Up @@ -1617,6 +1617,7 @@
"73222": "Offhand dice plushie",
"73223": "Tidal collector (i)",
"73224": "Pernix components",
"73225": "Deathly collector (i)",
"73250": "Sinister crate (s7)",
"73251": "Sinister crate key (s7)",
"73252": "Mumpkin",
Expand Down Expand Up @@ -1646,6 +1647,7 @@
"73277": "Demonic hween mask",
"73278": "Zombie hween mask",
"73279": "Heirloom pumpkin",
"73280": "Mortimer cape",
"73301": "Spookling token",
"73302": "Miniature pumpkin head",
"88888": "Bucket of dung",
Expand Down
33 changes: 33 additions & 0 deletions src/lib/customItems/customItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12831,6 +12831,39 @@ setCustomItem(
100_000
);

setCustomItem(
73_225,
'Deathly collector (i)',
'Tidal collector',
{
customItemData: {
cantDropFromMysteryBoxes: true,
isSuperUntradeable: true
},
equipment: {
attack_stab: 0,
attack_slash: 0,
attack_crush: 0,
attack_magic: 0,
attack_ranged: 25,
defence_stab: 1,
defence_slash: 1,
defence_crush: 1,
defence_magic: 8,
defence_ranged: 2,
melee_strength: 0,
ranged_strength: 6,
magic_damage: 0,
prayer: 0,
slot: EquipmentSlot.Cape,
requirements: {
ranged: 120
}
}
},
100_000
);

setCustomItem(
73_301,
'Spookling token',
Expand Down
11 changes: 11 additions & 0 deletions src/lib/data/creatables/bsoItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,17 @@ export const BsoCreateables: Createable[] = [
.add('Armadylean components', 10)
.add('Pernix components', 3),
outputItems: new Bank().add('Tidal collector (i)')
},
{
name: 'Deathly collector (i)',
inputItems: new Bank()
.add('Masori components', 4)
.add("Blessed dizana's quiver", 5)
.add('Deathly collector')
.add('Armadylean components', 10)
.add('Pernix components', 3),
outputItems: new Bank().add('Deathly collector (i)'),
noCreatablesCl: true
}
];

Expand Down
1 change: 1 addition & 0 deletions src/lib/data/creatablesTable.txt
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,7 @@
| Lumina (Materials) | 30x Elder rune | 1x Lumina | 0 |
| Clue scroll (elder) | 3x Elder scroll piece | 1x Clue scroll (elder) | 0 |
| Tidal collector (i) | 10x Armadylean components, 5x Blessed dizana's quiver, 4x Masori components, 3x Pernix components, 1x Tidal collector | 1x Tidal collector (i) | 0 |
| Deathly collector (i) | 10x Armadylean components, 5x Blessed dizana's quiver, 1x Deathly collector, 4x Masori components, 3x Pernix components | 1x Deathly collector (i) | 0 |
| Lumina (Elder logs) | 5x Elder logs, 30x Elder rune | 1x Lumina | 0 |
| Lumina (Redwood logs) | 30x Elder rune, 10x Redwood logs | 1x Lumina | 0 |
| Lumina (Magic logs) | 30x Elder rune, 30x Magic logs | 1x Lumina | 0 |
Expand Down
11 changes: 8 additions & 3 deletions src/lib/data/similarItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,11 @@ const source: [string, (string | number)[]][] = [
['Fire cape', ['Fire max cape', 'Fire max cape (l)']],
['Infernal cape', ['Infernal max cape', 'Infernal max cape (l)', 'TzKal cape']],
['Ardougne cloak 4', ['Ardougne max cape']],
['Tidal collector', ['Tidal collector (i)']],
["Ava's accumulator", ['Accumulator max cape', 'Tidal collector', 'Tidal collector (i)']],
['Tidal collector', ['Tidal collector (i)', 'Deathly collector', 'Deathly collector (i)']],
[
"Ava's accumulator",
['Accumulator max cape', 'Tidal collector', 'Tidal collector (i)', 'Deathly collector', 'Deathly collector (i)']
],
[
"Ava's assembler",
[
Expand All @@ -215,7 +218,9 @@ const source: [string, (string | number)[]][] = [
"Blessed dizana's quiver",
"Dizana's max cape",
'Tidal collector',
'Tidal collector (i)'
'Tidal collector (i)',
'Deathly collector',
'Deathly collector (i)'
]
],
['Mythical cape', ['Mythical max cape']],
Expand Down
Binary file added src/lib/resources/images/bso_icons/73225.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit fc0783b

Please sign in to comment.