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 [2026/03/09 09:59] – Wiki maintenance: Update mr: namespace pages with accurate code references Qwen Assistantmr:dark_gold_item [2026/03/09 10:03] (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]]
 +  * **Package:** com.watabou.pixeldungeon.items.quest
 +  * **Sprite:** Uses [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/sprites/ItemSpriteSheet.java#L15|ItemSpriteSheet.ORE]]
 +
 +===== Item Properties (from Java code) =====
 +  * **Stackable:** Yes (stackable = true)
 +  * **Upgradable:** No (isUpgradable() returns false)
 +  * **Identified:** Always identified (isIdentified() returns true)
 +  * **Price:** Equals quantity (price() returns quantity())
 +  * **Category:** Quest item
 +
 +===== Special Behavior (from Java code) =====
 +  * **Melting:** Dark gold melts when dropped or thrown on the surface (Dungeon.depth <= 0)
 +  * **Drop Behavior:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/quest/DarkGold.java#L37-L46|DarkGold.doDrop()]] - melts on surface, drops normally in dungeon
 +  * **Throw Behavior:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/quest/DarkGold.java#L48-L56|DarkGold.onThrow()]] - melts on surface, throws normally in dungeon
 +  * **Melt Effect:** Plays SND_PUFF sound and creates splash effect (color: 0xa38d1c)
 +
 +===== 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
 +  * **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]]
 +  * **Sprite Configuration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/spritesDesc/Ore.json|Ore.json (sprite)]]
  
mr/dark_gold_item.txt · Last modified: by 127.0.0.1