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) • 609 B
JavaScript
import { Item } from '../Item';
const gildedSqShieldData = {
id: 20152,
name: "Gilded sq shield",
iconUrl: "/assets/items/gilded-sq-shield.png",
examine: "A medium square shield in gold plate.",
value: 38400,
highAlch: 23040,
lowAlch: 15360,
weight: 3.628,
members: false,
tradeable: true,
equipable: true,
releaseDate: "2016-07-06",
destroy: "Wield",
questItem: false,
stackable: false,
noted: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Gilded_sq_shield",
};
export const GildedSqShield = Item.fromJson(gildedSqShieldData);