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

33 lines (32 loc) 837 B
import { Item } from "../Item"; const greenDHideBodyData = { id: 1135, name: "Green d'hide body", iconUrl: "/assets/items/green-dhide-body.png", examine: "Body armour made from green dragon hide.", value: 1315, highAlch: 789, lowAlch: 526, weight: 10, members: true, tradeable: true, equipable: true, releaseDate: "2004-01-15", destroy: "Drop", questItem: false, stackable: false, noted: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Green_d'hide_body", attackStab: 0, attackSlash: 0, attackCrush: 0, attackRanged: 10, attackMagic: -10, defenceStab: 8, defenceSlash: 8, defenceCrush: 6, defenceRanged: 25, defenceMagic: -5, rangedStrength: 5, }; export const GreenDHideBody = Item.fromJson(greenDHideBodyData);