osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
25 lines • 965 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Hans = exports.hansLocations = exports.hansDrops = void 0;
const Npc_1 = require("../Npc");
exports.hansDrops = [
// Hans does not drop anything when killed (not attackable in OSRS)
];
exports.hansLocations = ['Lumbridge Castle'];
exports.Hans = new Npc_1.Npc(2, // id (arbitrary, unique within your system)
'Hans', 'The loyal servant of Duke Horacio, found walking around Lumbridge Castle.', false, // members
1, // combat level (not attackable, but shown as 1 in some sources)
'https://oldschool.runescape.wiki/w/Hans', 1, // hitpoints (not attackable, but set to 1 for completeness)
false, // aggressive
false, // attackable
false, // canPoison
false, // poisonous
false, // canCannon
false, // canThrall
false, // canVenom
['none'], // attackStyle
0, // maxHit
0, // attackSpeed
0, // respawnTime
exports.hansLocations, exports.hansDrops, []);
//# sourceMappingURL=Hans.js.map