User Tools

Site Tools


en:rpd:scroll_of_teleportation_item

Differences

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

Link to this comparison view

en:rpd:scroll_of_teleportation_item [2026/01/01 19:45] – namespace move Mikeen:rpd:scroll_of_teleportation_item [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Scroll of Teleportation ======
  
 +{{ rpd:images:scroll_of_teleportation_item.png|Scroll of Teleportation }}
 +
 +The **Scroll of Teleportation** is an uncommon scroll in Remixed Dungeon that instantly transports the reader to a random location on the current level.
 +
 +==== Item Overview ====
 +  * **Type:** [[en:rpd:scroll|Scroll]]
 +  * **Rarity:** Uncommon
 +  * **Special Effect:** Teleports user to random location on current level
 +  * **Usage:** Single use item (consumed upon reading)
 +  * **Price:** 40 [[en:rpd:gold|gold]] when identified
 +
 +==== Special Mechanics ====
 +  * **Random Teleportation:** Moves user to random valid position on current level
 +  * **Immediate Effect:** Works immediately upon reading
 +  * **No Targeting Required:** Does not require specific targeting
 +  * **Emergency Utility:** Can be used to escape dangerous situations
 +  * **Exploration Aid:** Can be used to reach new areas quickly
 +  * **Identification:** Becomes identified when read or seen in inventory after being identified
 +  * **Does not consume stairs:** Does not consume stairs or other level transitions
 +  * **Usable when adjacent:** Works when enemies are adjacent (unlike drinking potions)
 +  * **Limited area restriction:** Does not work in special areas like shops or treasure rooms
 +
 +==== Strategy ====
 +  * Use to escape dangerous situations or fights, especially when surrounded by dangerous enemies
 +  * Helpful for quickly reaching distant areas of the level (especially on levels with large open areas)
 +  * Useful for escaping from trapped or dangerous positions
 +  * Can be used to avoid bosses if not ready for them
 +  * Good to use when surrounded by enemies
 +  * Be careful as destination is random (may land near other enemies)
 +  * Does not work if all level cells are blocked (very rare situation)
 +  * Good to carry one or two for emergency situations
 +  * Useful on levels with large open areas where you need to traverse quickly
 +  * Can be risky as destination is random
 +  * Consider saving for emergencies
 +
 +==== Obtaining ====
 +  * Found throughout dungeon [[en:rpd:levels|levels]]
 +  * Available in shops at moderate prices (40 [[en:rpd:gold|gold]] when identified)
 +  * Dropped by various [[en:rpd:mobs|enemies]]
 +  * Found in special containers and rooms
 +  * More common on levels with more open spaces
 +  * Found in [[en:rpd:chests_mechanic|Chests]] in the dungeon
 +  * In [[en:rpd:treasury|Treasury]] levels
 +  * Occasionally available in [[en:rpd:shops|Shops]]
 +
 +==== Effect ====
 +When read, the Scroll of Teleportation instantly transports the reader to a random accessible location on the current level. This does not consume stairs or other level transitions and works when enemies are adjacent (unlike drinking potions).
 +
 +According to the game's string resources: "The spell on this parchment instantly transports the reader to a random location on the dungeon level. It can be used to escape a dangerous situation, but the unlucky reader might find himself in an even more dangerous place."
 +
 +==== Code References ====
 +  * **Java Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfTeleportation.java|ScrollOfTeleportation.java]]
 +  * **Scroll Base Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/Scroll.java|Scroll.java]]
 +  * **Teleportation System:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/Actor.java#L200-L210|Actor.java#teleportation]] (general teleportation mechanics)
 +  * **Effect Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfTeleportation.java#L35-L45|ScrollOfTeleportation.java#L35-L45]] (specific teleportation effect)
 +  * **Price Configuration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfTeleportation.java#L30-L32|ScrollOfTeleportation.java#L30-L32]] (price is 40 gold when identified)
 +  * **String resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2572-L2574|ScrollOfTeleportation_Name, ScrollOfTeleportation_Info, ScrollOfTeleportation_Gender]]
 +  * **Russian String Resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2572-L2574|ScrollOfTeleportation strings]] (Russian localization)
 +  * **Configuration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/itemsDesc/Scrolls.json|Scrolls.json]] (item configuration)
 +  * **String Resources (Additional):** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2576-L2577|ScrollOfTeleportation_Teleport, ScrollOfTeleportation_NoTeleport]]
 +  * **Teleportation Mechanism:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/CharUtils.java#L165-L177|CharUtils.teleportRandom()]]
 +  * **Spawn Rate Config:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json#L124|Treasury.json]] (Treasury level spawn rate)
 +  * **Spawn Rate Config:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/SpidersTreasury.json#L121|SpidersTreasury.json]] (Spider treasury spawn rate)
 +
 +==== Related Items ====
 +  * [[en:rpd:scroll|Scrolls]] - General information about scrolls
 +  * [[en:rpd:scroll_of_escape_item|Scroll of Escape]] - Similar escape utility scroll
 +  * [[en:rpd:scroll_of_passage_item|Scroll of Passage]] - Another movement scroll
 +  * [[en:rpd:scroll_of_magic_mapping|Scroll of Magic Mapping]] - Another exploration scroll
 +  * [[en:rpd:scroll_of_identify_item|Scroll of Identify]] - Another common scroll type
 +  * [[en:rpd:scroll_of_upgrade_item|Scroll of Upgrade]] - Other useful scrolls
 +  * [[en:rpd:stairs|Stairs]] - Other way to move through the dungeon
 +  * [[en:rpd:hero|Hero]] - Main playable character
 +  * [[en:rpd:levels|Levels]] - Dungeon level information
 +
 +{{tag> rpd items scrolls teleportation escape }}