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.61 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Forgotten Soul
* Wiki reference: https://oldschool.runescape.wiki/w/Forgotten_soul
*
* A soul left behind and forgotten, found in the Catacombs.
*/
export const forgottenSoul = new Npc({
id: 1475,
name: "Forgotten Soul",
examine: "A soul left behind.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Forgotten_soul",
combatLevel: 30,
stats: {
hitpoints: 20,
attack: 20,
strength: 18,
defence: 16,
magic: 22,
ranged: 1,
},
aggressiveStats: {
attackBonus: -10,
strengthBonus: -5,
magicStrengthBonus: 8,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -20, slash: -20, crush: -20 },
magic: { bonus: -10, elementalWeakness: undefined },
ranged: { light: -20, standard: -20, heavy: -20 },
},
combat: {
maxHit: 10,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ["Magic"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Fire"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: false,
canBeThralled: true,
},
locations: ["Catacombs"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Forgotten soul creature",
"Found in Catacombs",
"Uses magic attacks",
],
});
export default forgottenSoul;