User Tools

Site Tools


mr:dark_gold_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:dark_gold_item [2025/12/31 21:45] – Update dark_gold_item.txt in mr namespace with accurate code references mikemr:dark_gold_item [2025/12/31 21:50] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Dark Gold Item - Code References ======
 +
 +===== Java Classes =====
 +  * **Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/quest/DarkGold.java|DarkGold.java]]
 +  * **Inheritance:** Inherits from [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]]
 +  * **Sprite:** Uses [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/sprites/ItemSpriteSheet.java#L15|ItemSpriteSheet.ORE]] as sprite
 +
 +===== JSON Configuration =====
 +This item is implemented purely in Java, no JSON configuration found.
 +
 +===== String Resources =====
 +<code xml>
 +<string name="DarkGold_Name">dark gold ore</string>
 +<string name="DarkGold_Info">This metal is called dark not because of its color (it doesn\'t differ from normal gold), but because it melts under the daylight, making it useless on the surface.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Additional References =====
 +  * **Blacksmith Quest:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/npcs/Blacksmith.java#L84|Blacksmith.java]] - used in blacksmith quest requiring 15 dark gold
 +  * **Dropping Behavior:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/quest/DarkGold.java#L33-L42|DarkGold.doDrop()]] - melts when dropped on surface
 +  * **Throwing Behavior:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/quest/DarkGold.java#L44-L52|DarkGold.onThrow()]] - melts when thrown on surface
 +  * **Mining:** Found in caves and can be mined with [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/quest/Pickaxe.java|Pickaxe]]
  
mr/dark_gold_item.txt · Last modified: (external edit)