osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
64 lines (63 loc) • 1.59 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Penguin
* Wiki reference: https://oldschool.runescape.wiki/w/Penguin
*
* A happy little penguin found in cold regions. Weak beginner enemy.
*/
export const penguin = new Npc({
id: 1020,
name: "Penguin",
examine: "A happy little penguin.",
members: false,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Penguin",
combatLevel: 1,
stats: {
hitpoints: 2,
attack: 1,
strength: 1,
defence: 1,
magic: 1,
ranged: 1,
},
aggressiveStats: {
attackBonus: -47,
strengthBonus: -42,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
defences: {
melee: { stab: -42, slash: -42, crush: -42 },
magic: { bonus: -42, elementalWeakness: undefined },
ranged: { light: -42, standard: -42, heavy: -42 },
},
combat: {
maxHit: 0,
attackSpeed: 4,
respawnTime: 15,
isAggressive: false,
isAttackable: true,
attackStyles: ["Stab"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: [],
},
immunities: {
canBePoison: false,
isPoisonous: false,
canBeVenom: false,
canBeCannoned: true,
canBeThralled: true,
},
locations: ["Various cold regions"],
drops: [
new NpcDrop("Bones", 1, "Always"),
],
trivia: [
"A friendly penguin",
"Found in cold regions",
"Weak beginner enemy",
],
});
export default penguin;