osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
5 lines (4 loc) • 777 B
JavaScript
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
const SinsOfTheFather = { age: 'Fifth Age', description: 'Deal with the sins of the father.', difficulty: QuestDifficulty.Master, id: 1044, length: QuestLength.Long, members: true, miniquest: false, name: 'Sins of the Father', questPoints: 2, recommendations: [], recommendedPrayers: [], recommendedSkills: {}, requirements: [], rewards: { areas: [], experience: [], items: [], lamps: [], pets: [], points: [], questPoints: 2, unlocks: [] }, series: 'Myreque, #5', shortName: 'Sins of the Father', startLocation: 'Location', status: QuestStatus.NotStarted, steps: ['Deal with sins'], url: 'https://oldschool.runescape.wiki/w/Sins_of_the_Father' };
export default SinsOfTheFather;