User Tools

Site Tools


en:rpd:dreamweed_level_object

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:rpd:dreamweed_level_object [2026/03/02 05:52] – Fix wiki documentation issues Qwen Assistanten:rpd:dreamweed_level_object [2026/06/06 03:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Dreamweed Level Object ======
  
 +{{ rpd:images:dreamweed_level_object.png|Dreamweed Level Object }}
 +
 +==== Description ====
 +The Dreamweed level object releases a cloud of confusion gas when touched. When a character or enemy steps on the tile containing a Dreamweed level object, a ConfusionGas blob is created at that position, affecting nearby creatures.
 +
 +==== Effects ====
 +  * Creates a ConfusionGas cloud at the touched position (radius based on dungeon depth)
 +  * Confusion causes affected creatures to move randomly and act unpredictably
 +  * The confusion effect lasts for a duration based on dungeon depth (300 + 20 * depth)
 +  * The level object disappears after being touched
 +
 +==== Mechanics ====
 +  * Dreamweed level objects can be found growing in the dungeon
 +  * The confusion gas effect is beneficial for disrupting enemy formations
 +  * Confused creatures move randomly and may attack allies
 +  * Dreamweed seeds can be planted to grow new Dreamweed level objects
 +  * When eaten, Dreamweed seeds apply Vertigo and Mind Vision buffs
 +
 +==== Strategy ====
 +  * Dreamweed level objects are useful for disrupting groups of enemies
 +  * Can be used to create chaos and escape dangerous situations
 +  * Effective against enemies that rely on coordinated attacks
 +  * Consider planting Dreamweed seeds to create tactical confusion zones
 +
 +==== Code Reference ====
 +  * Plant Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Dreamweed.java|Dreamweed.java]]
 +  * Plant Effect: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Dreamweed.java#L21-L30|Dreamweed.effect method]]
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2048-L2049|Dreamweed_Name, Dreamweed_Desc]]
 +
 +==== Related ====
 +  * [[en:rpd:plants|Plants]] - Other plants in the game
 +  * [[en:rpd:seeds|Seeds]] - Seeds that can be planted to grow useful plants
 +  * [[en:rpd:confusion_gas_buff|Confusion Gas]] - The status effect applied by Dreamweed
 +  * [[en:rpd:vertigo_buff|Vertigo]] - Status effect from eating Dreamweed seeds
 +  * [[en:rpd:mind_vision_buff|Mind Vision]] - Status effect from eating Dreamweed seeds
 +  * [[en:rpd:level_objects|Level Objects]] - Other interactive objects in dungeon levels
 +
 +{{tag> rpd plants items level_objects confusion_gas}}