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

Both sides previous revisionPrevious revision
en:rpd:firebloom_plant [2026/06/16 04:22] – Fix wiki pages: add missing images, fix broken links, improve language consistency Qwen Assistanten:rpd:firebloom_plant [2026/06/16 04:24] (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 Seed]]
 +  * 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 ====
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2057|Firebloom_Name]] ("Firebloom")
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L796|Firebloom_Name]] ("Огнецвет")
 +  * Spanish: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-es/strings_all.xml#L799|Firebloom_Name]] ("Florardiente")
 +  * French: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-fr/strings_all.xml#L794|Firebloom_Name]] ("Fleur de feu")
 +  * German: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-de/strings_all.xml#L802|Firebloom_Name]] ("Feuerblüte")
 +  * Portuguese: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-pt-rBR/strings_all.xml#L794|Firebloom_Name]] ("planta de fogo")
 +  * Italian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-it/strings_all.xml#L798|Firebloom_Name]] ("Fuocofiore")
 +  * Japanese: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ja/strings_all.xml#L798|Firebloom_Name]] ("ファイアーブルーム")
 +  * Korean: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ko/strings_all.xml#L789|Firebloom_Name]] ("화염초")
 +  * Chinese: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-zh-rCN/strings_all.xml#L794|Firebloom_Name]] ("烈焰花")
 +  * Polish: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-pl/strings_all.xml#L800|Firebloom_Name]] ("Ogniokwiatu")
 +  * Ukrainian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-uk/strings_all.xml#L817|Firebloom_Name]] ("Драконка")
 +  * Hungarian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-hu/strings_all.xml#L795|Firebloom_Name]] ("Tűzvirág")
 +  * Turkish: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-tr/strings_all.xml#L799|Firebloom_Name]] ("Ateş Çiçeği")
 +  * Greek: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-el/strings_all.xml#L794|Firebloom_Name]] ("φλογολούλουδο")
 +  * Indonesian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-in/strings_all.xml#L788|Firebloom_Name]] ("Firebloom")
 +  * Malay: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ms/strings_all.xml#L794|Firebloom_Name]] ("Bebunga Api")
 +  * Chinese (Traditional): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-zh-rTW/strings_all.xml#L805|Firebloom_Name]] ("烈焰花")
 +
 +==== Related ====
 +  * [[en:rpd:firebloom_seed_item|Firebloom Seed]] - The seed used to grow Firebloom plants
 +  * [[en:rpd:plants|Plants]] - Other plants in the game
 +  * [[en:rpd:seeds_mechanic|Seeds]] - Seeds that can be planted to grow useful plants
 +  * [[en:rpd:damage|Damage]] - General information about damage in the game
 +  * [[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}}
en/rpd/firebloom_plant.txt · Last modified: by 127.0.0.1