User Tools

Site Tools


en:rpd: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
en:rpd:summon_deathling_spell [2026/06/17 09:21] – Update summon_deathling_spell.txt: verify against codebase, fix mechanics description, add proper references Qwen Assistanten:rpd:summon_deathling_spell [2026/06/18 16:20] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Summon Deathling ======
  
 +{{ rpd:images:summon_deathling_spell.png|Summon Deathling Spell Icon }}
 +
 +**Summon Deathling** is a Necromancy-affinity spell in Remixed Pixel Dungeon that summons a deathling minion. Based on source code: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]]
 +
 +==== Description ====
 +This spell creates a temporary deathling ally to fight alongside the caster. The summoned creature will assist in combat until defeated or the summon limit is reached.
 +
 +==== Stats ====
 +  * **Magic Affinity:** Necromancy (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java#L11|SummonDeathling.java:11]])
 +  * **Targeting:** None (Self) (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java#L10|SummonDeathling.java:10]])
 +  * **Level:** 1 (default)
 +  * **Mana Cost:** 1 (default)
 +  * **Cast Time:** 3 seconds (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java#L13|SummonDeathling.java:13]])
 +  * **Effect:** Summons a deathling ally
 +  * **Image File:** spellsIcons/necromancy.png (image index 0) (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java#L12|SummonDeathling.java:12]])
 +
 +==== Mechanics ====
 +  * Summons a deathling creature to fight alongside the player (source: [[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]])
 +  * Summon limit: 1 + (Hero skill level - spell level) = Hero skill level for level 1 spell (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java#L16-L18|SummonDeathling.java:16-18]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/Spell.java#L210|Spell.java:210]])
 +  * Deathling's HP and damage grow with hero level and skill level (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/Deathling.java|Deathling.java]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L10|strings_all.xml:10]])
 +  * Deathling is an undead flying mob with 0 exp reward (source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/Deathling.java|Deathling.java]])
 +
 +==== Usage ====
 +The Summon Deathling spell is used to:
 +  * Gain temporary combat assistance
 +  * Create tactical advantages in difficult fights
 +  * Tank damage for the player character
 +
 +==== Classes ====
 +Classes with Necromancy affinity have primary access to this spell:
 +  * [[en:rpd:necromancer_class|Necromancer Class]] - Has Necromancy affinity, starts with this spell
 +  * [[en:rpd:lich_subclass|Lich Subclass]] - Advanced Necromancer subclass with enhanced necromancy
 +
 +==== Strategy ====
 +Summon Deathling is most effective when used in challenging encounters where additional combat assistance is needed. The summoned deathling will fight for the player until defeated or the summon limit is reached. Higher hero skill levels allow more simultaneous Deathlings.
 +
 +==== Content Verification ====
 +  * Information source: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]]
 +  * Stats verification: Extracted directly from [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]]
 +  * Mechanics verification: Based on implementation in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummoningSpell.java|SummoningSpell.java]] parent class and [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/Spell.java#L210|Spell.java:210]] for level modifier
 +  * Last updated: June 2026
 +
 +==== Code References ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummonDeathling.java|SummonDeathling.java]] - Main implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SummoningSpell.java|SummoningSpell.java]] - Parent class implementation (summoning logic, pet management)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/Spell.java#L210|Spell.java:210]] - getLevelModifier method for summon limit calculation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/SpellFactory.java#L118|SpellFactory.java:118]] - Spell registration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/Deathling.java|Deathling.java]] - Deathling mob implementation (stats scaling)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/common/MobFactory.java#L257|MobFactory.java:257]] - Deathling registration
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L8-L10|strings_all.xml:8-10]] - Name, description, and Necromancy affinity string
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L755-L758|strings_all.xml:755-758]] - Deathling mob string resources
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L765|strings_all.xml:765]] - Necromancy_SummonDeathlingName
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L8-L10|strings_all.xml (ru):8-10]] - Russian name and description
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/hero/initHeroes.json|initHeroes.json]] - Hero starting spell reference for Necromancer
 +
 +==== Source Strings ====
 +Name: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L8|SummonDeathling_Name]] = "Summon Deathling"
 +
 +Description: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L9|SummonDeathling_Info]] = "Summons an undead follower. Deathling's hp and damage grows with hero level.\n\nSummon limit: %1$d (+ 1 every Magic Level)"
 +
 +==== See Also ====
 +  * [[en:rpd:spells_overview|Spells]]
 +  * [[en:rpd:necromancy_affinity_mechanic|Necromancy Affinity]]
 +  * [[en:rpd:necromancer_class|Necromancer Class]]
 +  * [[en:rpd:lich_subclass|Lich Subclass]]
 +  * [[en:rpd:deathling_mob|Deathling]]
 +  * [[en:rpd:buffs|Buffs]]
 +  * [[en:rpd:mobs|Enemies and Mobs]]
 +  * [[en:rpd:summoning_spells_mechanic|Summoning Spells]]
 +
 +{{tag> rpd spells necromancy }}
en/rpd/summon_deathling_spell.txt · Last modified: by 127.0.0.1