User Tools

Site Tools


mr:shaman_elder_mob

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:shaman_elder_mob [2026/02/14 23:37] – Update mr:shaman_elder_mob.txt with accurate entity info from codebase Remixed Dungeon Wiki Maintainermr:shaman_elder_mob [2026/02/14 23:39] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Shaman Elder Mob - Machine Readable Data ======
 +
 +===== Java Class =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Shaman.java|Shaman.java]] - Base class implementation (ShamanElder is a variant)
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/mobsDesc/ShamanElder.json|mobsDesc/ShamanElder.json]] - Stats and properties
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/ShamanElder.json|spritesDesc/ShamanElder.json]] - Sprite configuration
 +
 +===== Lua Script =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/mobs/ShamanElder.lua|scripts/mobs/ShamanElder.lua]] - AI behavior script
 +
 +===== Statistics =====
 +<code json>
 +{
 +   "defenseSkill"  :14,
 +   "attackSkill"   :20,
 +   "exp"           :9,
 +   "maxLvl"        :16,
 +   "dmgMin"        :8,
 +   "dmgMax"        :12,
 +   "dr"            :4,
 +   "baseSpeed"     :1,
 +   "attackDelay"   :1,
 +   "attackRange"   :6,
 +   "ht"            :48,
 +   "viewDistance"  :6,
 +   "loot"          : {
 +      "kind": "SpellBook"
 +   },
 +   "lootChance"    :1
 +}
 +</code>
 +
 +===== Behavior =====
 +  * Fleeing when enemy distance < 2 tiles
 +  * Hunting when enemy distance > 4 tiles
 +  * Casts Mana Shield when attacking
 +  * Has 20% chance to yell when missing attack
 +
 +===== Appearance in Game =====
 +  * Found in levels 13-14 according to Bestiary.json (0.01-0.1 chance)
 +  * Mentioned in hero initialization files as part of Shaman subclass unlock chain
 +  * Featured in ScriptsArena level
 +  * Part of RARE_SHAMAN_ELDER badge system
 +
 +===== String Resources =====
 +  * Name: ShamanElder_Name
 +  * Objective name: ShamanElder_Name_Objective
 +  * Description: ShamanElder_Desc
 +  * Gender: ShamanElder_Gender
 +
 +===== Related Files =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Badges.java#L105|Badge.RARE_SHAMAN_ELDER]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json#L23|Bestiary Spawn Rates]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/hero/initHeroes.json#L196|Hero Initialization]]
  
mr/shaman_elder_mob.txt · Last modified: by 127.0.0.1