User Tools

Site Tools


rpd:wand_of_regrowth_item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

rpd:wand_of_regrowth_item [2025/12/24 03:28] – Wiki maintenance: Update pages, fix naming conventions, add missing pages mikerpd:wand_of_regrowth_item [2025/12/24 03:30] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Wand of Regrowth ======
  
 +{{ rpd:images:wand_of_regrowth_item.png|Wand of Regrowth }}
 +
 +The Wand of Regrowth is a magical wand in Remixed Dungeon that causes vegetation to grow and can have healing properties.
 +
 +==== Effect ====
 +When used in an area, the Wand of Regrowth:
 +  * **Vegetation Growth:** Causes grass to grow in the targeted area
 +  * **Terrain Transformation:** Converts empty tiles to grass tiles
 +  * **Immobilization:** Temporarily roots creatures in place (applies [[rpd:roots_buff|Roots]] effect)
 +  * **Healing Properties:** May have healing effects for nature-themed characters (depending on implementation)
 +
 +==== Properties ====
 +  * **Type:** Wand
 +  * **Special Effect:** Creates vegetation and roots creatures
 +  * **Targeting:** Area-of-effect targeting
 +  * **Charges:** Recharges over time like other wands
 +
 +==== Mechanics ====
 +  * When zapped at a location, creates regrowth effect in the area
 +  * Converts EMPTY, EMBERS, and EMPTY_DECO terrain to GRASS
 +  * Converts existing GRASS terrain to HIGH_GRASS if the effect is strong enough
 +  * Any creatures in affected tiles are rooted (immobilized) temporarily
 +  * The effect duration and area may scale with wand level
 +
 +==== Strategy ====
 +  * Use to block line of sight and movement in corridors
 +  * Effective for temporarily immobilizing enemies
 +  * Can be used defensively to create barriers
 +  * Useful for nature-themed builds or characters
 +  * Good for controlling the battlefield by changing terrain
 +
 +==== Content Verification ====
 +  * Java Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/WandOfRegrowth.java|WandOfRegrowth.java]]
 +  * Source Code Location: RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/wands/WandOfRegrowth.java
 +  * String Resource: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|WandOfRegrowth strings]]
 +  * Blob Effect: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Regrowth.java|Regrowth.java]]
 +  * Root Effect: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Roots.java|Roots.java]]
 +  * Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|registerItemClass(WandOfRegrowth.class)]]
 +  * Machine-readable data: [[mr:wand_of_regrowth_item|mr:wand_of_regrowth_item]]
 +
 +==== Related Items ====
 +  * [[rpd:wands|Wands]] - Other wands in the game
 +  * [[rpd:regrowth_mechanic|Regrowth]] - The blob effect created by this wand
 +  * [[rpd:roots_buff|Roots Buff]] - The effect applied to creatures
 +  * [[rpd:elf_armor_item|Elven Mantle]] - Similar nature-based effect
 +  * [[rpd:wand_of_firebolt_item|Wand of Firebolt]] - Other terrain-changing wand
 +  * [[rpd:grass|Grass Terrain]] - Terrain created by this wand
 +
 +{{tag> rpd items wands utility nature}}