osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
64 lines (63 loc) • 2.47 kB
JavaScript
import { Skill } from '../../account/Skill';
import { LevelRequirement } from '../../Requirement';
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
// wiki url https://oldschool.runescape.wiki/w/Family_Crest
const FamilyCrest = {
age: '2002',
description: 'The Armours family has fallen on hard times. Gilandor Armours, the patriarch of this noble family, has grown old and is dying. His three sons have not inherited his competence. You must help the youngest son of the Armours family create the family crest so that it can be passed on with pride.',
difficulty: QuestDifficulty.Intermediate,
id: 43,
length: QuestLength.Long,
members: true,
miniquest: false,
name: 'Family Crest',
questPoints: 3,
recommendations: [],
recommendedPrayers: [],
recommendedSkills: {
Crafting: 40,
Magic: 59,
Mining: 40,
Smithing: 40,
},
requirements: [
new LevelRequirement(Skill.Crafting, 20),
new LevelRequirement(Skill.Magic, 59),
new LevelRequirement(Skill.Mining, 20),
new LevelRequirement(Skill.Smithing, 20),
],
rewards: {
areas: [],
experience: [
{ skill: Skill.Crafting, amount: 2000 },
{ skill: Skill.Smithing, amount: 2000 },
{ skill: Skill.Magic, amount: 1000 },
{ skill: Skill.Mining, amount: 1000 },
],
items: [
{ id: 2417, name: 'Gilded Coif', quantity: 1 },
{ id: 2415, name: 'Gilded Body', quantity: 1 },
{ id: 2416, name: 'Gilded Platelegs', quantity: 1 },
],
lamps: [],
pets: [],
points: [{ type: 'Quest', amount: 2500 }],
questPoints: 3,
unlocks: [],
},
series: null,
shortName: 'familyCrest',
startLocation: 'East Ardougne, Armours house',
status: QuestStatus.NotStarted,
steps: [
'Talk to Gilandor Armours in his house (east of the fountain in East Ardougne)',
'Deliver the unfinished shield to the three sons and collect materials',
'Mine copper and tin ore to create bronze',
'Use the bronze and leather to smith items at three different forges',
'Craft items using the materials obtained',
'Bring the completed family crest items back to Gilandor',
],
url: 'https://oldschool.runescape.wiki/w/Family_Crest',
};
export default FamilyCrest;