Skip to content

Commit

Permalink
Update clue-giving pickpockets (#6241)
Browse files Browse the repository at this point in the history
  • Loading branch information
DayV-git authored Nov 27, 2024
1 parent 1e2119c commit 1c7fa43
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const GnomeTable = new LootTable({ limit: 128 })
.add('Gold ore', 1, 8)
.add('Earth rune', 1, 5)
.add('Fire orb', 1, 2)
.tertiary(150, 'Clue scroll (medium)')
.tertiary(108_718, 'Rocky');

export default new SimpleMonster({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const HeroTable = new LootTable({ limit: 128 })
.add('Fire orb', 1, 2)
.add('Diamond', 1, 1)
.add('Gold ore', 1, 1)
.tertiary(1_400, 'Clue scroll (elite)')
.tertiary(99_175, 'Rocky');

export default new SimpleMonster({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import LootTable from '../../../../structures/LootTable';
import SimpleMonster from '../../../../structures/SimpleMonster';

const PaladinTable = new LootTable().every('Coins', 80).every('Chaos rune', 2).tertiary(127_056, 'Rocky');
const PaladinTable = new LootTable()
.every('Coins', 80)
.every('Chaos rune', 2)
.tertiary(1_000, 'Clue scroll (hard)')
.tertiary(127_056, 'Rocky');

export default new SimpleMonster({
id: 1144,
Expand Down
20 changes: 10 additions & 10 deletions src/lib/skilling/skills/thieving/stealables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -624,39 +624,39 @@ const pickpocketables: Stealable[] = [
name: 'Paladin',
type: 'pickpockable',
level: 70,
xp: 151.7,
xp: 131.8,
table: Paladin.pickpocketTable!,
id: Paladin.id,
stunTime: 5,
stunDamage: 3,
slope: 0.404_29,
intercept: 18.955_29,
slope: 0.512_07,
intercept: 16.105_17,
petChance: 127_056
},
{
name: 'Gnome',
type: 'pickpockable',
level: 75,
xp: 198.5,
xp: 133.3,
table: Gnome.pickpocketTable!,
id: Gnome.id,
stunTime: 5,
stunDamage: 1,
slope: 0.475_65,
intercept: 0.180_65,
slope: 0.520_83,
intercept: 17.187_5,
petChance: 108_718
},
{
name: 'Hero',
type: 'pickpockable',
level: 80,
xp: 275,
xp: 163.3,
table: Hero.pickpocketTable!,
id: Hero.id,
stunTime: 6,
stunDamage: 4,
slope: 0.390_56,
intercept: 0.784_56,
stunDamage: 3,
slope: 0.472_63,
intercept: 16.099_47,
petChance: 99_175
},
{
Expand Down

0 comments on commit 1c7fa43

Please sign in to comment.