osrs-tools
Version:
A JavaScript package to provide JSON data for all current Old School RuneScape quests. This package aims to help junior software developers create tools related to Old School RuneScape. It's a work in progress, and issues should be reported to jamescer@ha
42 lines (41 loc) • 1.03 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const Quest_1 = require("../Quest");
const Biohazard = {
id: 0, // Assign a unique ID if available
name: "Biohazard",
members: true,
difficulty: 'Novice',
length: 'Medium',
requirements: [],
questPoints: 3,
startLocation: '',
description: '',
steps: [],
status: Quest_1.QuestStatus.NotStarted,
miniquest: false,
shortName: "biohazard",
url: 'https://oldschool.runescape.wiki/w/Biohazard',
series: 'Elf',
age: '',
difficultyLevel: 'Novice',
officialDifficulty: 'Novice',
officialLength: 'Medium',
officialAge: '',
recommendedItems: [],
recommendedSkills: {},
recommendedPrayers: [],
rewards: {
experience: [
{ skill: 'Thieving', amount: 1250 },
],
questPoints: 3,
items: [],
areas: [],
unlocks: [],
lamps: [],
points: [],
pets: [],
},
};
exports.default = Biohazard;