osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
62 lines (61 loc) • 1.56 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Death Wing
* Wiki reference: https://oldschool.runescape.wiki/w/Death_wing
*
* A skeletal bird found in the Catacombs.
*/
export const deathWing = new Npc({
id: 1475,
name: "Death wing",
examine: "A skeletal bird.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Death_wing",
combatLevel: 20,
stats: {
hitpoints: 15,
attack: 16,
strength: 14,
defence: 12,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -20,
strengthBonus: -15,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -20, slash: -20, crush: -20 },
magic: { bonus: -25, elementalWeakness: undefined },
ranged: { light: -20, standard: -20, heavy: -20 },
},
combat: {
maxHit: 5,
attackSpeed: 5,
respawnTime: 30,
isAggressive: false,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Stab"],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: false,
canBeThralled: true,
},
locations: ["Catacombs"],
drops: [new NpcDrop("Bones", 1, "Always")],
trivia: [
"Skeletal bird creature",
"Found in Catacombs",
"Low-level encounter",
],
});
export default deathWing;