User Tools

Site Tools


mr:dagger_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mr:dagger_item [2025/12/25 18:23] – auto lint fix Mikhaelmr:dagger_item [2025/12/25 18:24] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Dagger Item - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/melee/Dagger.java|Dagger.java]] - Defines the dagger's stats and mechanics as a melee weapon with tier 1, speed 1.2f, and accuracy 1f
 +
 +===== JSON Configuration =====
 +No specific JSON configuration exists for the dagger - it's implemented purely in Java code.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Dagger_Name">Dagger</string>
 +<string name="Dagger_Info">This small blade is easy to handle and inflicts decent damage.</string>
 +<string name="Dagger_Quickslot">Wield dagger</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists.