UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

62 lines (61 loc) 1.62 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Cave Goblin Guards * Wiki reference: https://oldschool.runescape.wiki/w/Cave_goblin_guard * * Guards protecting the cave goblin city of Dorgesh-Kaan. */ export const caveGoblinGuards = new Npc({ id: 7079, name: "Cave goblin guards", examine: "Guards of the cave goblins.", members: true, officialWikiUrl: "https://oldschool.runescape.wiki/w/Cave_goblin_guard", combatLevel: 34, stats: { hitpoints: 30, attack: 28, strength: 26, defence: 24, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: 0, strengthBonus: 5, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: 5, slash: 5, crush: 2 }, magic: { bonus: -20, elementalWeakness: undefined }, ranged: { light: 2, standard: 2, heavy: 0 }, }, combat: { maxHit: 8, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ["Melee"], isPoisonous: false, hasWeaponVenom: false, weaknesses: ["Slash"], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: true, canBeThralled: true, }, locations: ["Dorgesh-Kaan"], drops: [new NpcDrop("Bones", 1, "Always")], trivia: [ "Guards of Dorgesh-Kaan", "Cave goblin protectors", "Aggressive NPCs", ], }); export default caveGoblinGuards;