Skip to content

Commit

Permalink
Add armoured zombie (#6140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Felris authored Oct 27, 2024
1 parent 5f88977 commit d72d687
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/lib/data/CollectionsExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1929,7 +1929,8 @@ export const miscellaneousCL = resolveItems([
'Uncut onyx',
'Merfolk trident',
'Orange egg sac',
'Blue egg sac'
'Blue egg sac',
'Broken zombie axe'
]);

export const diariesCL = [
Expand Down
8 changes: 8 additions & 0 deletions src/lib/data/createables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2519,6 +2519,14 @@ const Createables: Createable[] = [
outputItems: new Bank().add('Amulet of rancour').freeze(),
noCl: true
},
{
name: 'Zombie axe',
inputItems: new Bank().add('broken zombie axe').freeze(),
outputItems: new Bank().add('Zombie axe').freeze(),
requiredSkills: {
smithing: 70
}
},
...Reverteables,
...crystalTools,
...ornamentKits,
Expand Down
16 changes: 16 additions & 0 deletions src/lib/minions/data/killableMonsters/turaelMonsters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1243,5 +1243,21 @@ export const turaelMonsters: KillableMonster[] = [
healAmountNeeded: 6,
attackStyleToUse: GearStat.AttackSlash,
attackStylesUsed: [GearStat.AttackCrush]
},
{
id: Monsters.ArmouredZombie.id,
name: Monsters.ArmouredZombie.name,
aliases: Monsters.ArmouredZombie.aliases,
timeToFinish: Time.Second * 23,
table: Monsters.ArmouredZombie,
wildy: false,

difficultyRating: 2,
qpRequired: 20,
canBarrage: true,
canChinning: true,
healAmountNeeded: 20,
attackStyleToUse: GearStat.AttackSlash,
attackStylesUsed: [GearStat.AttackCrush]
}
];
3 changes: 2 additions & 1 deletion src/lib/slayer/tasks/mazchnaTasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ export const mazchnaTasks: AssignableSlayerTask[] = [
Monsters.UndeadOne.id,
Monsters.ZombieRat.id,
Monsters.Zogre.id,
Monsters.Vorkath.id
Monsters.Vorkath.id,
Monsters.ArmouredZombie.id
],
combatLevel: 10,
unlocked: true
Expand Down
3 changes: 2 additions & 1 deletion src/lib/slayer/tasks/turaelTasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ export const turaelTasks: AssignableSlayerTask[] = [
Monsters.UndeadOne.id,
Monsters.ZombieRat.id,
Monsters.Zogre.id,
Monsters.Vorkath.id
Monsters.Vorkath.id,
Monsters.ArmouredZombie.id
],
combatLevel: 10,
unlocked: true
Expand Down
13 changes: 13 additions & 0 deletions tests/unit/snapshots/banksnapshots.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6113,6 +6113,19 @@ exports[`OSB Creatables 1`] = `
"29801": 1,
},
},
{
"cantHaveItems": undefined,
"inputItems": {
"28813": 1,
},
"name": "Zombie axe",
"outputItems": {
"28810": 1,
},
"requiredSkills": {
"smithing": 70,
},
},
{
"cantHaveItems": undefined,
"inputItems": {
Expand Down
Binary file modified tests/unit/snapshots/cl.OSB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion tests/unit/snapshots/clsnapshots.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Mahogany Homes (8)
Master Treasure Trail Rewards (Rare) (45)
Master Treasure Trails (49)
Medium Treasure Trails (115)
Miscellaneous (50)
Miscellaneous (51)
Monkey Backpacks (6)
Motherlode Mine (6)
My Notes (26)
Expand Down Expand Up @@ -497,6 +497,7 @@ Brimhaven graceful top
Brimhaven voucher
Brine sabre
Broken dragon hasta
Broken zombie axe
Bronze boots
Bronze defender
Bronze dragon mask
Expand Down

0 comments on commit d72d687

Please sign in to comment.