mr:wand_of_disintegration_item
Table of Contents
Wand Of Disintegration Item - Code References
Wand of Disintegration is a wand item in Remixed Dungeon that fires a beam of destructive energy that penetrates all creatures in its path.
Java Classes
- WandOfDisintegration.java - Main wand class extending SimpleWand
- SimpleWand.java - Parent class for simple wands
- Wand.java - Base wand class
- DeathRay.java - Visual effect for wand zap
- Ballistica.java - Ballistics calculation for wand targeting
Code Behavior
- Zap Effect: Fires a death ray beam that penetrates all creatures in its path
- Distance: effectiveLevel() + 4 tiles
- Damage Formula: Random Normal Int Range between (level + charsHit) and (8 + (level * level) / 3 + charsHit)
- Damage Scaling: Damage increases based on wand level and number of targets hit
- Terrain Effect: Can destroy doors and barricades (converts to embers), high grass (converts to grass)
- Visual Effect: Purple particle burst on each tile in the beam path
- Hit Chars: false (does not show hit characters on zap)
JSON Configuration
- WandOfDisintegration.json - Item configuration
- WandOfDisintegration.json - Sprite configuration
String Resources
<!-- English (values/strings_all.xml) --> <string name="WandOfDisintegration_Name">Wand of Disintegration</string> <string name="WandOfDisintegration_Info">This wand emits a ray of destructive energy, which penetrates all creatures in its path. The more targets it hits, the more damage it deals to each of them.</string> <!-- Russian (values-ru/strings_all.xml) --> <string name="WandOfDisintegration_Name">Жезл дезинтеграции</string> <string name="WandOfDisintegration_Info">Этот жезл испускает луч разрушительной энергии, который пронзает всех существ на своем пути. Чем больше целей он поражает, тем больший урон он наносит каждой из них.</string>
Lua Scripts
This entity is implemented in Java, no Lua script exists
Related mr Entities
Usage in Game
- WandMaker Quest: Can be received as a reward from the WandMaker NPC quest
- King Boss: The King boss has resistance to WandOfDisintegration
- Eye Mob: The Eye mob has resistance to WandOfDisintegration
mr/wand_of_disintegration_item.txt · Last modified: by 127.0.0.1

