User Tools

Site Tools


mr:scroll_of_identify_item

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
mr:scroll_of_identify_item [2026/02/17 10:24] – Fix wiki standards compliance on 5 random pages Qwen Assistantmr:scroll_of_identify_item [2026/02/17 10:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Scroll Of Identify Item - Code References ======
 +
 +==== Java Classes ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfIdentify.java|ScrollOfIdentify.java]] - Main scroll implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/InventoryScroll.java|InventoryScroll.java]] (base class)
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/Scroll.java|Scroll.java]] (base class)
 +
 +==== JSON Configuration ====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +==== String Resources ====
 +<code xml>
 +<string name="ScrollOfIdentify_Name">Scroll of Identify</string>
 +<string name="ScrollOfIdentify_Info">Permanently reveals all secrets of one item.</string>
 +<string name="ScrollOfIdentify_Info1">It is %s</string>
 +<string name="ScrollOfIdentify_InvTitle">Select an item to identify</string>
 +</code>
 +
 +==== Lua Scripts ====
 +This entity is implemented in Java, no Lua script exists
 +
 +==== Related mr Entities ====
 +  * [[mr:scroll_item|Scroll (Item)]]
 +  * [[mr:identification_effect|Identification Effect]]