UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

55 lines 2.58 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Peer_the_Seer = exports.peerTheSeerProducts = exports.peerTheSeerLocations = exports.peerTheSeerDrops = void 0; const Npc_1 = require("../Npc"); const NpcProduct_1 = require("../NpcProduct"); const SkeletalBottoms_1 = require("../../Item/Items/SkeletalBottoms"); const SkeletalHelm_1 = require("../../Item/Items/SkeletalHelm"); const SkeletalTop_1 = require("../../Item/Items/SkeletalTop"); const Coins_1 = require("../../Item/Items/Coins"); const RibcagePiece_1 = require("../../Item/Items/RibcagePiece"); const DagannothHide_1 = require("../../Item/Items/DagannothHide"); const FibulaPiece_1 = require("../../Item/Items/FibulaPiece"); const SkullPiece_1 = require("../../Item/Items/SkullPiece"); exports.peerTheSeerDrops = [ // Peer the Seer is a non-combat NPC and does not drop anything ]; exports.peerTheSeerLocations = [ "Rellekka (Seers' Village area, inside his house north-east of the market)", ]; exports.peerTheSeerProducts = [ new NpcProduct_1.NpcProduct(SkeletalBottoms_1.SkeletalBottoms.name, true, [ { item: DagannothHide_1.DagannothHideItem, quantity: 2 }, { item: FibulaPiece_1.FibulaPieceItem, quantity: 1 }, { item: Coins_1.Coins, quantity: 7500 }, ]), new NpcProduct_1.NpcProduct(SkeletalHelm_1.SkeletalHelm.name, true, [ { item: DagannothHide_1.DagannothHideItem, quantity: 1 }, { item: SkullPiece_1.SkullPieceItem, quantity: 1 }, { item: Coins_1.Coins, quantity: 5000 }, ]), new NpcProduct_1.NpcProduct(SkeletalTop_1.SkeletalTop.name, true, [ { item: DagannothHide_1.DagannothHideItem, quantity: 3 }, { item: RibcagePiece_1.RibcagePieceItem, quantity: 1 }, { item: Coins_1.Coins, quantity: 10000 }, ]), ]; exports.Peer_the_Seer = new Npc_1.Npc(3, // id (arbitrary, unique within your system) 'Peer the Seer', 'A wise Fremennik who helps with the Fremennik Trials and can reset your house location.', false, // members 1, // combat level (not attackable, but set to 1 for completeness) 'https://oldschool.runescape.wiki/w/Peer_the_Seer', 1, // hitpoints (not attackable, but set to 1 for completeness) false, // aggressive false, // attackable false, // canPoison false, // poisonous false, // canCannon false, // canThrall false, // canVenom [], // attackStyle 0, // maxHit 0, // attackSpeed 0, // respawnTime exports.peerTheSeerLocations, exports.peerTheSeerDrops, [], // weaknesses undefined, // iconUrl exports.peerTheSeerProducts); //# sourceMappingURL=PeerTheSeer.js.map