Table of Contents

wand_of_firebolt_item

Wand of Firebolt

Entity Information

Code Implementation

// File: RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/WandOfFirebolt.java
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, 8 + wandLevel * wandLevel)
        // Applies Burning buff to target
        // Uses MagicMissile.fire visual effect
    }
}

Statistics

Special Abilities

String Resources

Code References

Lua Scripts