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";
/**
* Giant Rat
* Wiki reference: https://oldschool.runescape.wiki/w/Giant_rat
*
* A very large rat found in the Sewers and other dungeon locations.
*/
export const giantRat = new Npc({
id: 1297,
name: "Giant rat",
examine: "A very large rat.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Giant_rat",
combatLevel: 27,
stats: {
hitpoints: 15,
attack: 22,
strength: 18,
defence: 14,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -10,
strengthBonus: -5,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -20, slash: -20, crush: -20 },
magic: { bonus: -25, elementalWeakness: undefined },
ranged: { light: -20, standard: -20, heavy: -20 },
},
combat: {
maxHit: 6,
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: ["Sewers"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Found in the Sewers and various dungeons",
"Very large variant of normal rat",
"Low-level slayer creature",
],
});
export default giantRat;