====== Incendiary Dart ====== {{ rpd:images:incendiary_dart_item.png|Incendiary Dart }} The **Incendiary Dart** is a special type of [[en:rpd:throwing_weapons|throwing weapon]] in [[en:rpd:remixed_dungeon|Remixed Dungeon]]. It's a modified dart that has fire properties, setting targets ablaze on hit. ==== Item Overview ==== * **Type:** Throwing Weapon (Missile) - [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java|IncendiaryDart.java]] * **Tier:** 1 (lowest tier missile weapon with special effect) * **Damage:** 1-2 (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L18-L19|IncendiaryDart.java:18-19]]) * **Durability:** Single use (consumed after thrown) * **Stackable:** Yes, typically found in quantities of 3-6 (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L44-L46|IncendiaryDart.java:44-46]]) * **Weight:** Very light * **Price:** 10 gold per dart (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L48-L50|IncendiaryDart.java:48-50]]) * **STR Required:** 12 (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L16|IncendiaryDart.java:16]]) ==== Special Mechanics ==== * **Burning Effect:** On successful hit, applies [[en:rpd:burning_buff|burning]] to the target (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L36-L37|IncendiaryDart.java:36-37]]) * **Fire Creation:** Can create fires in flammable terrain when thrown but missing (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L25-L30|IncendiaryDart.java:25-30]]) * **Single Use:** Each dart is consumed after being thrown at an enemy * **Ranged Attack:** Allows attacking enemies from a distance without engaging in [[en:rpd:melee_combat|melee combat]] * **Stackable:** Multiple darts can be carried and used throughout dungeon exploration * **Low Damage:** Does minimal direct damage but excels at applying status effects ==== Strategy ==== * Excellent for applying burning damage over time to enemies * Useful for creating fires in flammable terrain to block enemy movement * Good for softening enemies before melee combat * Effective against groups of enemies (can cause chain burning) * Useful against enemies weak to fire damage * Higher quantity found in Treasury levels (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json#L160|Treasury.json:160]]) ==== Acquisition ==== * Found in random quantities of 3-6 (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java#L44-L46|IncendiaryDart.java:44-46]]) * Available in [[en:rpd:shops|shops]] * Dropped by certain [[en:rpd:enemy|enemies]] * Found in [[en:rpd:chests_mechanic|chests]] and other containers * Higher quantities available in Treasury levels (as defined in [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json#L160-L161|Treasury.json:160-161]]) ==== Related Items ==== * [[en:rpd:dart_item|Dart]] - Base dart class * [[en:rpd:throwing_weapons|Throwing Weapons]] - Other ranged weapons * [[en:rpd:curare_dart_item|Curare Dart]] - Special dart with paralysis effect * [[en:rpd:fire|Fire]] - Related element and mechanics * [[en:rpd:burning_buff|Burning]] - The status effect applied by this dart ==== Code References ==== * Java Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/IncendiaryDart.java|IncendiaryDart.java]] * Parent Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/Dart.java|Dart.java]] * String Resources: * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1161-L1163|IncendiaryDart_Name, IncendiaryDart_Info, IncendiaryDart_Gender]] * Treasury Configuration: * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json#L160|Treasury.json:160]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/SpidersTreasury.json#L157|SpidersTreasury.json:157]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/TownShopTreasury.json#L14|TownShopTreasury.json:14]] {{tag> rpd items weapons throwing missile dart fire burning }}