osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
47 lines (46 loc) • 1.53 kB
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const TreeGnomeVillage = {
age: 'Third Age',
description: 'Protect the Tree Gnome village by defeating invaders and helping the gnomes prepare their defenses.',
difficulty: QuestDifficulty.Novice,
id: 125,
length: QuestLength.Short,
members: true,
miniquest: false,
name: 'Tree Gnome Village',
questPoints: 2,
recommendations: [],
recommendedPrayers: [],
recommendedSkills: { Combat: 20 },
requirements: [],
rewards: {
areas: [],
experience: [{ amount: 2500, skill: 'Attack' }],
items: [{ name: 'Gnome scimitar' }],
lamps: [],
pets: [],
points: [],
questPoints: 2,
unlocks: [
{
description: 'Access to The Grand Tree',
url: 'https://oldschool.runescape.wiki/w/The_Grand_Tree',
},
],
},
series: 'Gnome',
shortName: 'treeGnomeVillage',
startLocation: 'Tree Gnome Village, northwest of Ardougne',
status: QuestStatus.NotStarted,
steps: [
'Travel to the Tree Gnome Village.',
'Speak to the village commander.',
'Help defend the village from an invading force.',
'Create traps and assist in combat.',
'Defeat the invaders.',
'Return to the commander to complete the quest.',
],
url: 'https://oldschool.runescape.wiki/w/Tree_Gnome_Village',
};
export default TreeGnomeVillage;