User Tools

Site Tools


mr:smash_spell

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:smash_spell [2025/12/27 20:07] – Update wiki pages for frost_arrow, wand_of_slowness, kunai, tough_shield, and smash_spell with accurate code references and information mikemr:smash_spell [2025/12/27 20:10] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Smash Spell - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/spells/CustomSpell.java|CustomSpell.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java|Vertigo.java]]
 +
 +===== JSON Configuration =====
 +This entity is implemented in Lua, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="SmashSpell_Name">Smash</string>
 +<string name="SmashSpell_Info">Jump upwards and create a powerful smash upon hitting the ground,that temporarily stuns enemies around and at the same time deals physical damage.</string>
 +<string name="SmashSpell_NeedWeapon">I need a weapon for this move.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/spells/Smash.lua|Smash.lua]]
 +
 +===== Related mr Entities =====
 +  * [[mr:vertigo_buff|Vertigo (Buff)]]
 +  * [[mr:custom_spell_class|CustomSpell (Class)]]
 +  * [[mr:combat_affinity|Combat (Affinity)]]