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
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Dungeon Rat
* Wiki reference: https://oldschool.runescape.wiki/w/Dungeon_rat
*
* A rat found in various dungeon locations around Gielinor.
*/
export const dungeonRat = new Npc({
id: 1298,
name: "Dungeon rat",
examine: "A rat in a dungeon.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Dungeon_rat",
combatLevel: 17,
stats: {
hitpoints: 10,
attack: 14,
strength: 12,
defence: 10,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -25,
strengthBonus: -18,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -30, slash: -30, crush: -30 },
magic: { bonus: -30, elementalWeakness: undefined },
ranged: { light: -30, standard: -30, heavy: -30 },
},
combat: {
maxHit: 4,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Edgeville Dungeon"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found in Edgeville Dungeon",
"Low-level slayer creature",
"Common in many dungeon locations",
],
});
export default dungeonRat;