User Tools

Site Tools


en:rpd:scroll_of_identify_item

Differences

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

Link to this comparison view

en:rpd:scroll_of_identify_item [2026/01/01 19:45] – namespace move Mikeen:rpd:scroll_of_identify_item [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Scroll of Identify ======
  
 +{{ rpd:images:scroll_of_identify_item.png|Scroll of Identify }}
 +
 +The **Scroll of Identify** is a common scroll in Remixed Dungeon that reveals the true nature of a single item.
 +
 +==== Item Overview ====
 +  * **Type:** Scroll
 +  * **Rarity:** Common
 +  * **Special Effect:** Identifies a single item in the inventory
 +  * **Usage:** Single use item (consumed upon reading)
 +
 +==== Special Mechanics ====
 +  * **Item Identification:** When read, identifies a single item in the hero's inventory or on the floor
 +  * **Identification Benefits:** Identified items show their true name and properties, and can be used to their full potential
 +  * **Cursed Items:** Reveals the cursed status of weapons and armor
 +  * **Unknown Potions/Rings:** Identifies unknown potions and rings, revealing their effects
 +
 +==== Strategy ====
 +  * Essential for safely using unknown items
 +  * Particularly valuable for identifying weapons, armor, and rings before use
 +  * Often used on potions that are needed but not yet identified
 +  * Should be saved for items with important properties that need to be known
 +
 +==== Obtaining ====
 +  * Found throughout dungeon levels
 +  * Available in shops at moderate prices (when identified)
 +  * Dropped by various enemies
 +  * Found in containers and special rooms
 +  * Starting item for the [[en:rpd:mage_class|Mage]] class
 +
 +==== Effect ====
 +When read, the Scroll of Identify identifies a single item selected by the hero, revealing its true properties and name.
 +
 +According to the game's string resources: "This scroll permanently reveals all of the secrets of a single item."
 +
 +==== Content Verification ====
 +  * Information source: Java Class [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfIdentify.java|ScrollOfIdentify.java]]
 +  * Stats verification: Extracted directly from ScrollOfIdentify.java class methods
 +  * Effect descriptions: Based on code analysis and string resources
 +  * String resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2198-L2200|ScrollOfIdentify strings]] (Russian localization)
 +
 +==== Data Sources ====
 +  * **Java Class**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfIdentify.java|com.watabou.pixeldungeon.items.scrolls.ScrollOfIdentify]]
 +  * **Inventory System**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/InventoryScroll.java|InventoryScroll.java]] - Base class for scrolls that target inventory items
 +  * **Item Identification**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java|Item.java]] - The identify() method
 +
 +==== String Resources ====
 +<code xml>
 +<string name="ScrollOfIdentify_Name">Scroll of Identify</string>
 +<string name="ScrollOfIdentify_Info">Permanently reveals all of the secrets of a single item.</string>
 +<string name="ScrollOfIdentify_InvTitle">Select an item to identify</string>
 +<string name="ScrollOfIdentify_Info1">It is %s</string>
 +</code>
 +
 +==== Related Items ====
 +  * [[en:rpd:scroll|Scrolls]] - General information about scrolls
 +  * [[en:rpd:identification|Identification]] - General mechanics about item identification
 +  * [[en:rpd:mage_class|Mage Class]] - Starting class that gets this scroll identified
 +  * [[en:rpd:hero|Hero]] - Main playable character
 +  * [[en:rpd:scroll_of_upgrade_item|Scroll of Upgrade]] - Other important scrolls
 +  * [[en:rpd:scroll_of_runes_item|Scroll of Runes]] - Other important scrolls
 +  * [[en:rpd:scroll_of_teleportation_item|Scroll of Teleportation]] - Other important scrolls
 +  * [[en:rpd:potion_of_identify_item|Potion of Identify]] - Alternative identification method
 +  * [[en:rpd:ring_of_detection|Ring of Detection]] - Alternative detection method
 +
 +{{tag> rpd items scrolls identification }}