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) • 571 B
JavaScript
import { Item } from '../Item';
const grimyRanarrWeedData = {
id: 207,
name: "Grimy ranarr weed",
iconUrl: "/assets/items/207.png",
examine: "It needs cleaning.",
value: 30,
highAlch: 18,
lowAlch: 12,
weight: 0.007,
members: true,
tradeable: true,
equipable: false,
releaseDate: "2002-02-27",
destroy: "Clean",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Grimy_ranarr_weed",
};
export const GrimyRanarrWeed = Item.fromJson(grimyRanarrWeedData);