mr:wand_of_firebolt_item
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| mr:wand_of_firebolt_item [2026/01/17 13:46] – Fix wiki page formatting and add image references for wand_of_firebolt_item.txt and boomerang_item.txt\n\n- Fixed header formatting in wand_of_firebolt_item.txt to comply with DokuWiki standards\n- Updated page title in wand_of_firebolt_item.txt to remove mike | mr:wand_of_firebolt_item [2026/02/19 04:33] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== wand_of_firebolt_item ====== | ||
| + | {{ rpd: | ||
| + | |||
| + | ==== Entity Information ==== | ||
| + | * **Class Name**: [[https:// | ||
| + | * **Entity Kind**: WandOfFirebolt | ||
| + | * **Type**: Item | ||
| + | * **Category**: | ||
| + | * **Package**: | ||
| + | * **Inherits From**: SimpleWand | ||
| + | |||
| + | ==== Code Implementation ==== | ||
| + | <code java> | ||
| + | // File: RemixedDungeon/ | ||
| + | package com.watabou.pixeldungeon.items.wands; | ||
| + | |||
| + | public class WandOfFirebolt extends SimpleWand { | ||
| + | // Zap effect: deals fire damage and ignites targets | ||
| + | @Override | ||
| + | protected void onZap(int cell, Char ch) { | ||
| + | // Creates fire blobs along the path | ||
| + | // Deals random damage: Random.Int(1, | ||
| + | // Applies Burning buff to target | ||
| + | // Uses MagicMissile.fire visual effect | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ==== Statistics ==== | ||
| + | * **Damage**: Random.Int(1, | ||
| + | * **Visual Effect**: MagicMissile.fire from getOwner().getSprite().getParent() | ||
| + | * **Sound**: Assets.SND_ZAP on zap | ||
| + | * **Identified**: | ||
| + | |||
| + | ==== Special Abilities ==== | ||
| + | * **Fire Damage**: On zapping, deals fire damage to target based on wand level | ||
| + | * **Ignition Effect**: Applies Burning buff to targets hit by the firebolt | ||
| + | * **Area Effect**: Creates Fire blobs at target cell and along the path | ||
| + | * **Heap Interaction**: | ||
| + | * **Self-Damage Risk**: Using the wand on oneself can cause damage and ignite the user | ||
| + | * **Path Burning**: For each cell in Ballistica.trace, | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | * **Name**: R.string.WandOfFirebolt_Info (via StringsManager.getVar) | ||
| + | * **Death Message**: R.string.WandOfFirebolt_Info1 - "You killed yourself with your own wand..." | ||
| + | * **English**: | ||
| + | * **Russian**: | ||
| + | |||
| + | ==== Code References ==== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Lua Scripts ==== | ||
| + | * No specific Lua script for this wand (uses Java implementation) | ||
| + | |||
| + | {{tag> rpd items machine_readable wand fire}} | ||
