User Tools

Site Tools


mr:wooden_crossbow_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_crossbow_item [2026/01/25 02:09] – Fix wiki pages compliance issues\n\n- Updated plague_doctor_subclass.txt to properly indicate it's coming soon rather than fictional content\n- Updated wooden_crossbow_item.txt with actual code references instead of placeholder text\n- Both changes ensure mikemr:wooden_crossbow_item [2026/01/25 02:11] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Wooden Crossbow Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/guts/weapon/ranged/WoodenCrossbow.java|WoodenCrossbow.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/guts/weapon/ranged/Crossbow.java|Crossbow.java]] (parent class)
 +
 +===== JSON Configuration =====
 +''<code json>''
 +{
 +  "WoodenCrossbow": 4
 +}
 +''</code>''
 +  * Found in: RemixedDungeon/src/main/assets/levelsDesc/Treasury.json
 +  * Found in: RemixedDungeon/src/main/assets/levelsDesc/SpidersTreasury.json
 +
 +===== String Resources =====
 +''<code xml>''
 +<string name="WoodenCrossbow_Name">Wooden crossbow</string>
 +<string name="WoodenCrossbow_Info">A basic wooden crossbow, looks like it designed to shoot bow arrows.</string>
 +<string name="WoodenCrossbow_Gender">masculine</string>
 +</code>''
 +  * Also available in multiple languages in corresponding values-* directories
 +
 +===== Lua Scripts =====
 +  * This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:crossbow_item|Crossbow (Item)]]