User Tools

Site Tools


mr:wooden_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:wooden_bow_item [2026/03/22 17:38] – Wiki maintenance: Fix broken links, add images, update mr: pages Qwen Assistantmr:wooden_bow_item [2026/03/22 17:41] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Wooden Bow Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/melee/WoodenBow.java|WoodenBow.java]] - Main class 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/guts/weapon/ranged/KindOfBow.java|KindOfBow.java]] - Base bow class
 +
 +===== Class Details =====
 +  * **Package:** com.watabou.pixeldungeon.items.weapon.melee
 +  * **Extends:** Bow
 +  * **Tier:** 1
 +  * **Base Accuracy:** 0.8f (80%)
 +  * **Base Delay:** 1.5f (150% of base attack delay)
 +  * **Accuracy Factor:** 1 + level * 0.1
 +  * **Damage Factor:** 1 + level * 0.25
 +  * **Sprite Index:** 0 (from items/ranged.png)
 +  * **Burn Behavior:** Returns null (cannot burn)
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java. Configuration may exist in:
 +  * RemixedDungeon/src/main/assets/itemsDesc/*.json
 +  * RemixedDungeon/src/main/assets/spritesDesc/wooden_bow.json
 +
 +===== String Resources =====
 +  * Name: WoodenBow_Name
 +  * Description: WoodenBow_Info
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]]
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml|strings_all.xml (ru)]]
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related Entities =====
 +  * [[mr:elven_bow_item|Elven Bow Item]] - Upgraded version
 +  * [[mr:arrows_item|Arrows Item]] - Required ammunition
 +  * [[mr:bow_item|Bow Item]] - Base bow type
  
mr/wooden_bow_item.txt · Last modified: by 127.0.0.1