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

65 lines (64 loc) 1.71 kB
import { Npc } from "../Npc"; import { NpcDrop } from "../NpcDrop"; /** * Chompy Bird * Wiki reference: https://oldschool.runescape.wiki/w/Chompy_bird * * A large flightless bird hunted for the Rag and Bone Man quest series. */ export const chompyBird = new Npc({ id: 3033, name: "Chompy bird", examine: "A large flightless bird.", members: false, officialWikiUrl: "https://oldschool.runescape.wiki/w/Chompy_bird", combatLevel: 1, stats: { hitpoints: 5, attack: 1, strength: 2, defence: 1, magic: 1, ranged: 1, }, aggressiveStats: { attackBonus: -40, strengthBonus: -35, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: -40, slash: -40, crush: -40 }, magic: { bonus: -40, elementalWeakness: undefined }, ranged: { light: -40, standard: -40, heavy: -40 }, }, combat: { maxHit: 2, attackSpeed: 5, respawnTime: 10, isAggressive: false, isAttackable: true, attackStyles: ["Stab"], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: false, canBeThralled: true, }, locations: ["Feldip Hills"], drops: [ new NpcDrop("Raw bird meat", 1, "Always"), new NpcDrop("Bones", 1, "Always"), ], trivia: [ "Hunted for the Rag and Bone Man quest series", "Large flightless bird from Feldip Hills", "Very weak in combat", ], }); export default chompyBird;