User Tools

Site Tools


en:rpd:fire_enchantment

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:rpd:fire_enchantment [2026/01/04 00:31] – Update wiki pages with improved content and translations mikeen:rpd:fire_enchantment [2026/01/04 00:32] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Fire Enchantment ======
  
 +{{ rpd:images:fire_elemental_mob.png|Fire Enchantment }}
 +
 +==== Description ====
 +The Fire enchantment has a chance to set enemies on fire when they are hit by the weapon. This causes additional damage over time.
 +
 +==== Mechanics ====
 +  * The chance to ignite an enemy: **Random.Int(weapon_level + 3) >= 2**
 +    * Level 0: 33% chance
 +    * Level 1: 50% chance
 +    * Level 2: 60% chance
 +    * Higher levels: Increasing chance
 +  * When triggered, applies the [[en:rpd:burning_buff|Burning]] status effect for several turns
 +  * Causes additional fire damage: Random value between 1 and (weapon level + 2)
 +  * Emits flame particles: Level + 1 particles
 +  * Fire damage stacks with the weapon's existing fire damage bonus
 +  * Visually glows orange (color: 0xFF4400)
 +
 +==== Technical Details ====
 +  * **Java Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/enchantments/Fire.java|com.watabou.pixeldungeon.items.weapon.enchantments.Fire]]
 +  * **Glowing Color:** Orange (0xFF4400)
 +  * **Particles:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/effects/particles/FlameParticle.java|FlameParticle.FACTORY]]
 +
 +==== Code References ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/enchantments/Fire.java|Fire.java]] - Main implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Burning.java|Burning.java]] - Burning status effect
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/Char.java|Char.java]] - Base class for attack processing
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/Weapon.java|Weapon.java]] - Base weapon class with enchantment system
 +
 +==== String Resource References ====
 +  * **Name:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|FireEnchant_Name]]
 +  * **Information:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|FireEnchant_Info]]
 +
 +==== See Also ====
 +  - [[en:rpd:burning_buff|Burning Buff]] - Status effect caused by this enchantment
 +  - [[en:rpd:enchantments|Enchantments]] - List of all weapon enchantments
 +  - [[en:rpd:weapons|Weapons]] - Equipment that can have enchantments
 +  - [[en:rpd:flame_turret_item|Flame Turret]] - Another fire-based item
 +  - [[en:rpd:fire_trap_trap|Fire Trap]] - Fire-based trap
 +  - [[en:rpd:fire_arrow_item|Fire Arrow]] - Fire-based projectile
 +  - [[en:rpd:wand_of_firebolt_item|Wand of Firebolt]] - Fire-based wand
 +  - [[en:rpd:fire_elemental_mob|Fire Elemental]] - Fire-based mob
 +
 +==== Other Languages ====
 +  - [[es:rpd:fire_enchantment|Español]]
 +  - [[pt:rpd:fire_enchantment|Português]]
 +
 +{{tag> rpd items enchantments fire}}
en/rpd/fire_enchantment.txt · Last modified: by 127.0.0.1