Skip to content

Commit

Permalink
Carapace fixes (#5929)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Jul 2, 2024
1 parent c4145b3 commit 63ff511
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions src/lib/skilling/skills/crafting/craftables/carapace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,50 +5,50 @@ import { Craftable } from '../../../types';

export const carapaceCraftables: Craftable[] = [
{
name: 'Carapace gloves',
id: itemID('Carapace gloves'),
level: 11,
xp: 23.8,
inputItems: new Bank({ Carapace: 1 }),
name: 'Carapace helm',
id: itemID('Carapace helm'),
level: 33,
xp: 24,
inputItems: new Bank({ Carapace: 2 }),
tickRate: 3
},
{
name: 'Carapace boots',
id: itemID('Carapace boots'),
level: 15,
xp: 26.2,
inputItems: new Bank({ Carapace: 1 }),
name: 'Carapace torso',
id: itemID('Carapace torso'),
level: 35,
xp: 36,
inputItems: new Bank({ Carapace: 3 }),
tickRate: 3
},
{
name: 'Carapace helm',
id: itemID('Carapace helm'),
level: 22,
xp: 28.5,
inputItems: new Bank({ Carapace: 1 }),
name: 'Carapace legs',
id: itemID('Carapace legs'),
level: 34,
xp: 24,
inputItems: new Bank({ Carapace: 2 }),
tickRate: 3
},
{
name: 'Carapace gloves',
id: itemID('Carapace gloves'),
level: 32,
xp: 32,
name: 'Carapace boots',
id: itemID('Carapace boots'),
level: 31,
xp: 12,
inputItems: new Bank({ Carapace: 1 }),
tickRate: 3
},
{
name: 'Carapace torso',
id: itemID('Carapace torso'),
level: 35,
xp: 35,
inputItems: new Bank({ Carapace: 3 }),
name: 'Carapace gloves',
id: itemID('Carapace gloves'),
level: 30,
xp: 12,
inputItems: new Bank({ Carapace: 1 }),
tickRate: 3
},
{
name: 'Carapace legs',
id: itemID('Carapace legs'),
level: 44,
xp: 37,
name: 'Carapace shield',
id: itemID('Carapace shield'),
level: 36,
xp: 36,
inputItems: new Bank({ Carapace: 3 }),
tickRate: 3
}
Expand Down

0 comments on commit 63ff511

Please sign in to comment.