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

67 lines (65 loc) 1.72 kB
import { Npc } from '../Npc'; import { NpcDrop } from '../NpcDrop'; /** * Undead Cow * A zombie cow found in Zombieland, a low-level undead creature. * Wiki: https://oldschool.runescape.wiki/w/Undead_cow */ export const undeadCow = new Npc({ id: 1627, name: 'Undead cow', examine: 'A zombie cow.', members: true, officialWikiUrl: 'https://oldschool.runescape.wiki/w/Undead_cow', combatLevel: 15, stats: { hitpoints: 15, attack: 12, strength: 10, defence: 10, magic: 5, ranged: 1, }, aggressiveStats: { attackBonus: 18, strengthBonus: 15, magicStrengthBonus: 0, rangedStrengthBonus: 0, }, defences: { melee: { stab: -10, slash: -8, crush: -5 }, magic: { bonus: -15, elementalWeakness: 'None' }, ranged: { light: -10, standard: -10, heavy: -10 }, }, combat: { maxHit: 5, attackSpeed: 5, respawnTime: 30, isAggressive: true, isAttackable: true, attackStyles: ['Crush'], isPoisonous: false, hasWeaponVenom: false, weaknesses: [], }, immunities: { canBePoison: false, isPoisonous: false, canBeVenom: false, canBeCannoned: true, canBeThralled: true, }, locations: ['Zombieland'], drops: [ new NpcDrop(`Bones, `, 1, `1), ], trivia: [ 'Undead cows are low-level undead creatures found in Zombieland.', 'They are slightly stronger than undead chickens due to greater HP and defence.', 'They primarily use crush-based attacks despite being undead.', ], }); export default UndeadCow; ) ] });