====== Fadeleaf Level Object ====== {{ rpd:images:fadeleaf_level_object.png|Fadeleaf Level Object }} ==== Description ==== The Fadeleaf level object provides a teleportation effect when touched. When a character steps on the tile containing a Fadeleaf level object, they are instantly teleported to a random location on the current dungeon level. ==== Effects ==== * Teleports the character to a random location on the current level * Provides an escape mechanism from dangerous situations * The destination is random and cannot be controlled * The level object disappears after being touched ==== Mechanics ==== * Fadeleaf level objects can be found growing in the dungeon * They can also be grown by planting [[rpd:fadeleaf_seed_item|Fadeleaf Seeds]] * The teleportation is to a random valid location on the same level * Cannot be used to move to other levels ==== Strategy ==== * Fadeleaf level objects are useful for escaping dangerous situations * Can be used to quickly navigate the level, though destination is random * Valuable when surrounded by multiple strong enemies * Be cautious as the destination is random - you might end up in another dangerous area ==== Code Reference ==== * Plant Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/npcs/WandMaker.java|WandMaker.Fadeleaf class]] * Plant Effect: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/npcs/WandMaker.java#L366-L373|Fadeleaf.effect method]] * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1886-L1887|WandMaker_FadeleafName, WandMaker_FadeleafDesc]] ==== Related ==== * [[rpd:fadeleaf_seed_item|Fadeleaf Seed]] - The seed used to grow Fadeleaf level objects * [[rpd:plants|Plants]] - Other plants in the game * [[rpd:seeds|Seeds]] - Seeds that can be planted to grow useful plants * [[rpd:teleportation|Teleportation]] - Other teleportation mechanics in the game * [[rpd:level_objects|Level Objects]] - Other interactive objects in dungeon levels {{tag> rpd plants items level_objects teleportation}}