====== Wand of Frost Item - Code References ====== ===== Historical Note ===== The item "Wand of Frost" does not exist in the current Remixed Dungeon codebase. The frost/ice-based wand implemented in the game is **Wand of Icebolt** (class: `WandOfIcebolt.java` in `com.nyrds.pixeldungeon.items.icecaves` package). This page documents the historical/incorrect reference. For the actual implemented wand, see [[mr:wand_of_icebolt_item|Wand of Icebolt Item]]. ===== Java Classes ===== No Java class named "WandOfFrost" exists in the codebase. The actual frost wand implementation: * ''com/nyrds/pixeldungeon/items/icecaves/WandOfIcebolt.java'' - Main wand implementation * Extends: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/Wand.java|Wand]] * Registered in: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] (line 403) ===== JSON Configuration ===== No dedicated JSON configuration file found. Wand is implemented entirely in Java. ===== String Resources ===== String resources exist for WandOfIcebolt, not WandOfFrost: * English: ''WandOfIcebolt_Name'', ''WandOfIcebolt_Info'', ''WandOfIcebolt_Info1'' * Russian: ''WandOfIcebolt_Name'', ''WandOfIcebolt_Info'', ''WandOfIcebolt_Info1'' * All other localization files have corresponding entries ===== Lua Scripts ===== No Lua script implementation. This wand is implemented entirely in Java. ===== Related mr Entities ===== * [[mr:wand_of_icebolt_item|Wand of Icebolt Item]] - The actual implemented frost wand * [[mr:wand_item|Wand Item]] - Base wand category * [[mr:frost_buff|Frost Buff]] - Frost status effect * [[mr:slow_buff|Slow Buff]] - Slow status effect (also applied by Wand of Icebolt) {{tag> rpd wands items mr historical obsolete}}