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";
/**
* Brine Rat
* Wiki reference: https://oldschool.runescape.wiki/w/Brine_rat
*
* A salty rat found in the Brine Rat Cavern with moderate combat level.
*/
export const brineRat = new Npc({
id: 1299,
name: "Brine rat",
examine: "A salty rat.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Brine_rat",
combatLevel: 47,
stats: {
hitpoints: 25,
attack: 40,
strength: 30,
defence: 35,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: 5,
strengthBonus: 8,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -5, slash: -5, crush: -5 },
magic: { bonus: -20, elementalWeakness: undefined },
ranged: { light: -5, standard: -5, heavy: -5 },
},
combat: {
maxHit: 10,
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: ["Brine Rat Cavern"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found exclusively in Brine Rat Cavern",
"Named for its salty environment",
"Popular with mid-level slayers",
],
});
export default brineRat;