User Tools

Site Tools


en:rpd:firebloom_plant

Differences

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

Link to this comparison view

en:rpd:firebloom_plant [2026/01/01 19:45] – namespace move Mikeen:rpd:firebloom_plant [2026/01/01 19:46] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Firebloom Plant ======
  
 +{{ rpd:images:firebloom_level_object.png|Firebloom Plant }}
 +
 +==== Description ====
 +Firebloom is a plant that explodes in a burst of flame when touched, dealing fire damage to the character that triggers it and all creatures in the adjacent area. When planted, it will immediately trigger its effect.
 +
 +==== Effects ====
 +  * Creates a fire blob affecting the triggering cell and adjacent cells
 +  * Deals fire damage to all creatures in the affected area
 +  * Disappears after triggering
 +  * Produces a visual flame particle effect
 +
 +==== Mechanics ====
 +  * Firebloom can be found growing in the dungeon or grown by planting [[en:rpd:firebloom_seed_item|Firebloom Seeds]]
 +  * Triggered when any character steps on the tile containing the plant
 +  * Creates a Fire blob with 2 intensity that lasts for several turns
 +  * Generates visual flame particle effects on activation
 +
 +==== Strategy ====
 +  * Firebloom plants should generally be avoided unless used tactically in combat
 +  * They can be useful for damaging groups of enemies in tight spaces
 +  * Consider pushing enemies onto Firebloom plants when surrounded by hostile creatures
 +  * Be careful when using them, as they will damage you as well
 +
 +==== Source Code References ====
 +  * Core Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Firebloom.java|Firebloom.java]]
 +  * Effect Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Firebloom.java#L31|Firebloom.effect method]]
 +  * Seed Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Firebloom.java#L42|Firebloom.Seed class]]
 +  * Fire Creation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Firebloom.java#L32|Blob.seed for Fire]]
 +  * Item Registration: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java#L411|ItemFactory.java#L411]]
 +
 +==== String Resources ====
 +  * Firebloom Name: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1420|Firebloom_Name]] (line 1420 in English strings)
 +  * Firebloom Description: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1422|Firebloom_Desc]] (line 1422 in English strings)
 +  * Russian strings: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1406]] - [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1408|lines 1406-1408]]
 +
 +==== Related ====
 +  * [[en:rpd:firebloom_seed|Firebloom Seed]] - The seed used to grow Firebloom plants
 +  * [[en:rpd:plants|Plants]] - Other plants in the game
 +  * [[en:rpd:seeds|Seeds]] - Seeds that can be planted to grow useful plants
 +  * [[en:rpd:elemental_damage|Elemental Damage]] - Damage type dealt by Firebloom
 +  * [[en:rpd:fire_elemental_mob|Fire Elemental]] - Fire-based creature
 +  * [[en:rpd:potion_of_liquid_flame_item|Potion of Liquid Flame]] - Similar fire effect in potion form
 +
 +{{tag> rpd plants items fire}}