User Tools

Site Tools


mr:summon_deathling_spell

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:summon_deathling_spell [2026/09/08 08:38] – Wiki maintenance: fix links, images, and references in 5 random pages Wiki Maintenancemr:summon_deathling_spell [2026/09/08 08:41] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Summon Deathling Spell - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummoningSpell.java|SummoningSpell.java]] - Parent class with summoning logic
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/Spell.java|Spell.java]] - Base spell class with getLevelModifier
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SpellFactory.java|SpellFactory.java]] - Spell registration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/Deathling.java|Deathling.java]] - Summoned mob implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MobFactory.java|MobFactory.java]] - Deathling mob registration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/actors/hero/HeroClass.java|HeroClass.java]] - Necromancer class with Necromancy affinity
 +
 +===== JSON Configuration =====
 +This entity may have JSON configuration, but no matching config was found. Check:
 +  * RemixedDungeon/src/main/assets/spellsDesc/*.json
 +  * RemixedDungeon/src/main/assets/spritesDesc/summon_deathling.json
 +  * RemixedDungeon/src/main/assets/hero/initHeroes.json - Necromancer starting spells
 +
 +===== String Resources =====
 +<code xml>
 +<string name="SummonDeathling_Name">[Name]</string>
 +<string name="SummonDeathling_Info">[Description]</string>
 +<string name="Necromancy_SummonDeathlingName">Summon Deathling</string>
 +</code>
 +
 +English strings location: RemixedDungeon/src/main/res/values/strings_all.xml (lines 8-10, 765)
 +Russian strings location: RemixedDungeon/src/main/res/values-ru/strings_all.xml (lines 8-10)
 +Deathling mob strings: RemixedDungeon/src/main/res/values/strings_all.xml (lines 755-758)
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
  
mr/summon_deathling_spell.txt · Last modified: by 127.0.0.1