osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
95 lines (94 loc) • 2.69 kB
JavaScript
import { Npc } from "../Npc";
import { NpcDrop } from "../NpcDrop";
/**
* Mutated Bloodveld
* Wiki reference: https://oldschool.runescape.wiki/w/Mutated_bloodveld
*
* A mutated and enhanced bloodveld located in the Catacombs of Kourend.
* Found in the Meiyerditch Laboratories section of the Catacombs.
* Weak to crush weapons.
*/
export const mutatedBloodveld = new Npc({
// Basic Identification
id: 7293,
name: "Mutated Bloodveld",
examine: "A mutated and enhanced bloodveld.",
members: true,
officialWikiUrl: "https://oldschool.runescape.wiki/w/Mutated_bloodveld",
// Combat Level & Slayer
combatLevel: 157,
// Combat Stats
stats: {
hitpoints: 120,
attack: 85,
strength: 80,
defence: 75,
magic: 65,
ranged: 50,
},
// Aggressive Stats (Offensive Bonuses)
aggressiveStats: {
attackBonus: 0,
strengthBonus: 0,
magicStrengthBonus: 0,
rangedStrengthBonus: 0,
},
// Defensive Stats
defences: {
melee: {
stab: 30,
slash: 20,
crush: 10, // Weak to crush
},
magic: {
bonus: 15,
elementalWeakness: undefined,
},
ranged: {
light: 20,
standard: 20,
heavy: 20,
},
},
// Combat Mechanics
combat: {
maxHit: 20,
attackSpeed: 5,
respawnTime: 30,
isAggressive: true,
isAttackable: true,
attackStyles: ["Melee"],
isPoisonous: false,
hasWeaponVenom: false,
weaknesses: ["Crush weapons"],
},
// Immunities
immunities: {
canBePoison: true,
isPoisonous: false,
canBeVenom: true,
canBeCannoned: true,
canBeThralled: true,
},
// Location & Drops
locations: ["Catacombs of Kourend (Meiyerditch Laboratories)"],
drops: [
// Guaranteed drops
new NpcDrop("Bones", 1, "Always"),
new NpcDrop("Coins", [50, 150], "Always"),
// Common drops
new NpcDrop("Rune essence", [1, 5], "1/2"),
new NpcDrop("Ashes", 1, "1/3"),
// Catacombs loot
new NpcDrop("Clue scroll (easy)", 1, "1/128"),
],
trivia: [
"Mutated Bloodveld are enhanced variants of standard bloodveld",
"Found exclusively in the Catacombs of Kourend",
"Located in the Meiyerditch Laboratories section",
"Weak to crush weapons and vulnerable when unprepared",
"Good source of experience for Slayer training",
"Common target for mid-level Slayer tasks",
],
});
export default mutatedBloodveld;