User Tools

Site Tools


mr:enslaved_soul_mob

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:enslaved_soul_mob [2026/02/04 23:48] – Fix wiki pages according to standards - Update EnslavedSoul mob image to use correct naming convention - Populate EnslavedSoul mr namespace page with actual code references - Fix tag format in Portuguese food item page mikemr:enslaved_soul_mob [2026/02/04 23:51] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== EnslavedSoul - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/necropolis/EnslavedSoul.java|EnslavedSoul.java]]
 +
 +===== JSON Configuration =====
 +''<code json>''
 +{
 +   "texture" : "mobs/enslavedsoul.png",
 +   "width" : 16,
 +   "height" : 16,
 +   "zapEffect" : "Shadow",
 +   "idle" : {
 +      "fps" : 6,
 +      "looped" : true,
 +      "frames" : [0,1,2]
 +   },
 +   "run" : {
 +      "fps" : 8,
 +      "looped" : true,
 +      "frames" : [0,1,2]
 +   },
 +   "attack" : {
 +      "fps" : 8,
 +      "looped" : false,
 +      "frames" : [3,4,5,6]
 +   },
 +   "die" : {
 +      "fps" : 10,
 +      "looped" : false,
 +      "frames" : [7,8,9,10,11]
 +   },
 +   "bloodColor" : "0xFF777777"
 +}
 +''</code>''
 +
 +===== String Resources =====
 +''<code xml>''
 +<string name="EnslavedSoul_Name">enslaved soul</string>
 +<string name="EnslavedSoul_Gender">feminine</string>
 +<string name="EnslavedSoul_Name_Objective">enslaved soul</string>
 +<string name="EnslavedSoul_Desc">You can almost see through this ghostly apparition. And although it looks like a skull, sometimes for a split second a face appears, filled with pain and suffering.</string>
 +''</code>''
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:undead_mob|Undead (Mob)]]
 +  * [[mr:necropolis_level|Necropolis (Level)]]