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

22 lines (21 loc) 564 B
import { Item } from '../Item'; const yewSeedData = { id: 5315, name: "Yew seed", iconUrl: "/assets/items/yew-seed.png", examine: "Plant this in a plantpot of soil to grow a sapling.", value: 143, highAlch: 85, lowAlch: 57, weight: 0, members: true, tradeable: true, equipable: false, releaseDate: "2005-06-06", destroy: "Drop", questItem: false, stackable: true, noted: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Yew_seed", }; export const YewSeed = Item.fromJson(yewSeedData);