User Tools

Site Tools


mr:chaos_bow_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:chaos_bow_item [2026/03/01 04:26] – Wiki maintenance: Fix 5 random pages per documentation standards Qwen Assistantmr:chaos_bow_item [2026/03/01 04:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Chaos Bow Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/chaos/ChaosBow.java|ChaosBow.java]] - Main chaos bow implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/guts/weapon/ranged/Bow.java|Bow.java]] - Parent class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/chaos/ChaosCrystal.java|ChaosCrystal.java]] - Can fuse into ChaosBow
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] - Item registration
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="ChaosBow_Name">chaos bow</string>
 +<string name="ChaosBow_Info">A dreadful Bow filled with the power of Chaos. Each arrow it shoots will carry piece of chaos energy within it. But if you miss...</string>
 +<string name="ChaosBow_Gender">masculine</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Code Details =====
 +  * **Image:** `items/chaosBow.png` (image index 0)
 +  * **Tier:** 3
 +  * **Speed factor:** 1.0f
 +  * **Damage factor:** 1.0f
 +  * **Upgradable:** No (isUpgradable returns false)
 +  * **Charge mechanic:** Accumulates charge on hit, loses charge on taking damage
 +  * **Level threshold:** Charge required = 5 × level^1.5
 +  * **Visual states:** 5 image variants based on level (level/3, capped at 4)
 +  * **Chaos Mark:** On miss, creates chaos mark at target position
 +
 +===== Related mr Entities =====
 +  * [[mr:chaos_set_item|Chaos Set (Item)]]
 +  * [[mr:chaos_sword_item|Chaos Sword (Item)]]
 +  * [[mr:chaos_staff_item|Chaos Staff (Item)]]
 +  * [[mr:chaos_armor_item|Chaos Armor (Item)]]
 +  * [[mr:chaos_crystal_item|Chaos Crystal (Item)]]
 +  * [[mr:bow_item|Bow (Item)]] - Parent class
 +  * [[mr:compound_bow_item|Compound Bow (Item)]] - Related bow
 +  * [[mr:wooden_bow_item|Wooden Bow (Item)]] - Related bow
 +  * [[mr:ruby_bow_item|Ruby Bow (Item)]] - Related bow
  
mr/chaos_bow_item.txt · Last modified: by 127.0.0.1