User Tools

Site Tools


en:rpd:earthroot_level_object

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:rpd:earthroot_level_object [2026/02/28 23:00] – Fix wiki standards compliance issues on 5 random pages Qwen Assistanten:rpd:earthroot_level_object [2026/02/28 23:00] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Earthroot Level Object ======
  
 +{{ rpd:images:earthroot_level_object.png|Earthroot Level Object }}
 +
 +==== Description ====
 +The Earthroot level object is a passive level object that provides a protective "Barkskin" buff to any character that touches it. When a character steps on the tile containing an Earthroot level object, they gain temporary armor.
 +
 +==== Effects ====
 +  * Provides the [[en:rpd:barkskin_buff|Barkskin]] buff when touched
 +  * The barkskin effect provides temporary armor that reduces incoming damage
 +  * The effect is immediate when stepping on the level object tile
 +  * The level object disappears after being touched
 +
 +==== Mechanics ====
 +  * Earthroot level objects are typically found growing in the dungeon
 +  * They can also be grown by planting [[en:rpd:earthroot_seed_item|Earthroot Seeds]]
 +  * The barkskin effect from the level object is proportional to the character's max HP
 +
 +==== Strategy ====
 +  * Earthroot level objects are valuable for providing defensive benefits in dangerous areas
 +  * Consider saving them for challenging encounters or boss fights
 +  * Can be especially helpful before entering dangerous rooms or areas
 +
 +==== Code Reference ====
 +  * Plant Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Earthroot.java|Earthroot.java]]
 +  * Plant Effect: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Earthroot.java#L28-L40|Earthroot.effect method]]
 +  * Armor Buff: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Earthroot.java#L57-L121|Earthroot.Armor class]]
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|Earthroot_Name, Earthroot_Desc, EarthrootBuff_Name, EarthrootBuff_Info]]
 +
 +==== Related ====
 +  * [[en:rpd:earthroot_seed_item|Earthroot Seed]] - The seed used to grow Earthroot level objects
 +  * [[en:rpd:barkskin_buff|Barkskin]] - The buff provided by Earthroot level objects
 +  * [[en:rpd:plants|Plants]] - Other plants in the game
 +  * [[en:rpd:seeds|Seeds]] - Seeds that can be planted to grow useful plants
 +  * [[en:rpd:level_objects|Level Objects]] - Other interactive objects in dungeon levels
 +
 +{{tag> rpd plants items level_objects}}