mr:wand_of_poison_item
Table of Contents
Wand Of Poison Item - Code References
Java Classes
- WandOfPoison.java - Main item implementation
- Wand.java - Base wand class with WandOfPoison registration
- SimpleWand.java - Parent class for simple wands
- WandMaker.java - NPC that can reward WandOfPoison
- ItemFactory.java - Item registration and factory
JSON Configuration
This entity may have JSON configuration, but no matching config was found. Check:
- RemixedDungeon/src/main/assets/itemsDesc/*.json
- RemixedDungeon/src/main/assets/spritesDesc/wand_of_poison.json
String Resources
<string name="WandOfPoison_Name">Wand of Poison</string> <string name="WandOfPoison_Info">The vile blast from this twisted bit of wood will coats its target with a deadly venom. The poisoned creature will suffer periodic damage until the effect ends. The duration of the effect increases with the level of the staff.</string> <string name="WandOfPoison_Info1">nothing happened</string>
Lua Scripts
This entity is implemented in Java, no Lua script exists
Implementation Details
- Parent Class: SimpleWand
- Effect: Applies Poison buff to target
- Poison Duration: (5 + effectiveLevel()) * Poison.durationFactor(ch)
- Visual Effect: MagicMissile.poison from caster to target
- Sound: Assets.SND_ZAP
- Wand Maker Reward: Case 4 in WandMaker quest reward selection
Related Files
- Poison.java - Poison buff implementation
- MagicMissile.java - Magic missile visual effects
mr/wand_of_poison_item.txt · Last modified: by 127.0.0.1
