User Tools

Site Tools


rpd:dread_knight_mob

dreadknight

Dread Knight Sprite

Dread Knight is a rare undead mob found in the Necropolis levels.

Description

The dread knight is an ancient warrior who, in life, neither knew good or righteousness. For his sins, he is doomed to everlasting wanderings in this broken body of death. And every moment of his tormented existence is full of pain and suffering, similar to what he inflicted on his victims.

Stats

  • HP: 40 (hp(ht(40)))
  • HT: 40
  • Defense Skill: 15 (baseDefenseSkill = 15)
  • Attack Skill: 17 (baseAttackSkill = 17)
  • Min Damage: 8 (dmgMin = 8)
  • Max Damage: 16 (dmgMax = 16)
  • Damage Resistance: 12 (dr = 12)
  • Exp for Kill: 8 (expForKill = 8)
  • Max Level: 15 (maxLvl = 15)

Special Abilities

The Dread Knight has two special abilities during combat:

  • Double Damage: 25% chance (1 in 4) to double damage on attack (Random.Int(4) == 1: DeathStroke.hit(enemy); return damage * 2)
  • Stun Proc: 10% chance (1 in 10) to apply stun to the target on attack (Random.Int(10) == 1: Buff.affect(enemy, Stun.class))

Drops

  • Gold: Small chance of dropping gold (2% chance) (loot(Gold.class, 0.02f))

Spawn Locations

  • Necropolis Level 2: 0.015 spawn weight
  • Necropolis Level 3: 0.015 spawn weight
  • Necropolis Level 4: 0.045 spawn weight (increased chance)

Behavior

  • Undead creature (setUndead(true))
  • Aggressive towards the player

Data Validation

This information is extracted directly from the game code and validated against the source implementation. The details are accurate as of the referenced source files and provide reliable information about the mob mechanics.

Content Verification

* Information source: Java Class in Remixed Dungeon codebase * Stats verified: Yes, extracted directly from DreadKnight.java class properties * Effect descriptions: Generated from code analysis and string resources * Last updated: 2025-12-12 based on DreadKnight.java

Source Code

See Also

rpd/dread_knight_mob.txt · Last modified: by 127.0.0.1