User Tools

Site Tools


mr:deathling_mob

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mr:deathling_mob [2025/12/25 18:23] – auto lint fix Mikhaelmr:deathling_mob [2026/01/18 01:32] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Deathling Mob - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/Deathling.java|Deathling.java]] - Main mob implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]] - The spell that summons Deathling mobs
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/Deathling.json|Deathling.json]] - Sprite configuration
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Deathling_Name">deathling</string>
 +<string name="Deathling_Gender">masculine</string>
 +<string name="Deathling_Name_Objective">deathling</string>
 +<string name="Deathling_Desc">The Deathling is a soul of a fallen hero who was unlucky enough to be summoned by a fellow adventurer, who practices necromancy.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:summon_deathling_spell|Summon Deathling Spell]]
 +  * [[mr:necromancer_robe_item|Necromancer Robe]]
 +  * [[mr:necromancer_armor_item|Necromancer Armor]]