Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrupted Gauntlet #274

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions src/data/monsters_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -12769,6 +12769,47 @@
"slayerXP": 0,
"assignableSlayerMasters": []
},
"9035": {
"members": true,
"releaseDate": "2019-07-25",
"combatLevel": 894,
"hitpoints": 1000,
"maxHit": 68,
"attackType": ["ranged", "magic"],
"attackSpeed": 5,
"aggressive": true,
"poisonous": false,
"immuneToPoison": false,
"immuneToVenom": false,
"attributes": [],
"category": [],
"examineText": "A deadly predator formed from crystal.",
"wikiName": "Corrupted Hunllef",
"wikiURL": "https://oldschool.runescape.wiki/w/Corrupted_Hunllef",
"attackLevel": 240,
"strengthLevel": 240,
"defenceLevel": 240,
"magicLevel": 240,
"rangedLevel": 240,
"attackStab": 0,
"attackSlash": 0,
"attackCrush": 0,
"attackMagic": 90,
"attackRanged": 90,
"defenceStab": 20,
"defenceSlash": 20,
"defenceCrush": 20,
"defenceMagic": 20,
"defenceRanged": 20,
"attackAccuracy": 0,
"meleeStrength": 0,
"rangedStrength": 0,
"magicDamage": 0,
"isSlayerMonster": false,
"slayerLevelRequired": 0,
"slayerXP": 0,
"assignableSlayerMasters": []
},
"9118": {
"members": true,
"releaseDate": "2019-07-25",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import LootTable from '../../../../structures/LootTable';

const StandardTable = new LootTable()
/* Armour and weaponry */
.add('Rune full helm', [3, 5])
.add('Rune chainbody', [2, 3])
.add('Rune platebody', 2)
.add('Rune platelegs', [2, 3])
.add('Rune plateskirt', [2, 3])
.add('Rune halberd', [2, 3])
.add('Rune pickaxe', [2, 3])
/* Ammunition and runes */
.add('Cosmic rune', [175, 250])
.add('Nature rune', [125, 150])
.add('Law rune', [100, 150])
.add('Chaos rune', [250, 350])
.add('Death rune', [125, 175])
.add('Blood rune', [100, 150])
.add('Mithril arrow', [1000, 1500])
.add('Adamant arrow', [500, 750])
.add('Rune arrow', [250, 450])
.add('Dragon arrow', [50, 100])
/* Gems */
.add('Uncut sapphire', [25, 65])
.add('Uncut emerald', [15, 60])
.add('Uncut ruby', [10, 40])
.add('Uncut diamond', [5, 15])
/* Other*/
.add('Battlestaff', [8, 12]);

export const CorruptedGauntletTable = new LootTable()
.every('Crystal shard', [5, 9])
.every('Gauntlet cape')
.add(StandardTable, 1, 3)
.add('Dragon halberd', [1, 2], 1.5)
.add('Coins', [75000, 150000])
.tertiary(20, 'Clue scroll (elite)')
.tertiary(50, 'Crystal weapon seed')
.tertiary(50, 'Crystal armour seed')
.tertiary(400, 'Enhanced crystal weapon seed')
.tertiary(800, 'Youngllef');
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { CorruptedGauntletTable } from './CorruptedGauntlet.table';
import SimpleMonster from '../../../../structures/SimpleMonster';

export default new SimpleMonster({
id: 9035,
name: 'Corrupted Hunllef',
table: CorruptedGauntletTable,
aliases: ['corrupted gauntlet', 'cg', 'cgaunt']
});
3 changes: 2 additions & 1 deletion src/simulation/monsters/special/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ import Barrows from './Barrows';
import Hespori from './Hespori';
import { TzKalZuk } from './TzKalZuk';
import TzTokJad from './TzTokJad';
import CorruptedGauntlet from './TheGauntlet/CorruptedGauntlet';

export const specialBosses = { Barrows, TzTokJad, Hespori, TzKalZuk };
export const specialBosses = { Barrows, TzTokJad, Hespori, TzKalZuk, CorruptedGauntlet };