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) • 610 B
JavaScript
import { Item } from '../Item';
const bandosDHideBodyData = {
id: 12500,
name: "Bandos d'hide body",
iconUrl: "/assets/items/bandos-dhide-body.png",
examine: "Bandos blessed dragonhide body armour.",
value: 13000,
highAlch: 7800,
lowAlch: 5200,
weight: 6,
members: true,
tradeable: true,
equipable: true,
releaseDate: "2014-06-12",
destroy: "Wear",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Bandos_d'hide_body",
};
export const BandosDHideBody = Item.fromJson(bandosDHideBodyData);