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) • 590 B
JavaScript
import { Item } from '../Item';
const woodenShieldGData = {
id: 2585,
name: 'Wooden shield (g)',
iconUrl: '/assets/items/2585.png',
examine: 'A basic wooden shield, decorated with gold.',
value: 159,
highAlch: 95,
lowAlch: 63,
weight: 2.5,
members: true,
tradeable: true,
equipable: true,
releaseDate: '2004-01-15',
destroy: 'Drop',
questItem: false,
stackable: false,
noted: false,
officialWikiUrl: 'https://oldschool.runescape.wiki/w/Wooden_shield_(g)',
};
export const WoodenShieldG = Item.fromJson(woodenShieldGData);