osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
60 lines (59 loc) • 1.65 kB
JavaScript
import { Npc } from "../Npc";
/**
* Undead Chicken
* A zombie chicken found in Zombieland, a low-level undead creature.
* Wiki: https://oldschool.runescape.wiki/w/Undead_chicken
*/
export const undeadChicken = new Npc({
id: 1626,
name: "Undead chicken",
examine: "A zombie chicken.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Undead_chicken",
combatLevel: 15,
stats: {
hitpoints: 12,
attack: 10,
strength: 8,
defence: 8,
magic: 5,
ranged: 1,
},
aggressiveStats: {
attackBonus: 15,
strengthBonus: 10,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -10, slash: -5, crush: -8 },
magic: { bonus: -15, elementalWeakness: "None" },
ranged: { light: -10, standard: -10, heavy: -10 },
},
combat: {
maxHit: 5,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Slash"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Zombieland"],
drops: [],
trivia: [
"Undead chickens are low-level undead creatures found in Zombieland.",
"They are weak and often used by new players to practice combat.",
"Like all undead, they are immune to poison but vulnerable to venom.",
],
});
export default undeadChicken;