User Tools

Site Tools


en:rpd:stairs

Differences

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

Link to this comparison view

en:rpd:stairs [2026/01/01 19:45] – namespace move Mikeen:rpd:stairs [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Stairs ======
  
 +Stairs connect different levels of the dungeon in Remixed Dungeon.
 +
 +==== Description ====
 +Stairs are passageways that allow travel between dungeon levels. They are essential for progression as the hero must use stairs to advance deeper into the dungeon or return to previous levels.
 +
 +==== Stair Types ====
 +  * **Stairs Down**: Lead to deeper levels of the dungeon
 +  * **Stairs Up**: Lead to higher levels of the dungeon
 +  * **Prize Stairs**: Special stairs that lead to special areas
 +
 +==== Stair Mechanics ====
 +  * **One-Way**: Once the hero descends past a level, they cannot return to it
 +  * **Location**: Stairs are randomly placed within each level
 +  * **Uniqueness**: Each level has one exit and one entrance
 +  * **Visibility**: Stairs are visible but may be surrounded by enemies
 +
 +==== Navigation Considerations ====
 +  * **Timing**: It's important to explore adequately before descending
 +  * **Preparation**: Ensure sufficient supplies before advancing
 +  * **Strategy**: Sometimes it's beneficial to return to earlier levels
 +  * **Special Areas**: Some stairs may lead to secret or special areas
 +
 +==== Code References ====
 +  * Stair System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/Level.java#L200-L250|Level stairs code]] - How stairs are placed
 +  * Dungeon System: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Dungeon.java|Dungeon.java]] - How stairs function in dungeon progression
 +  * Stair Interaction: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/hero/Hero.java#L400-L450|Hero stair interaction]] - How the hero uses stairs
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]] - All stair-related text
 +
 +==== Related Elements ====
 +  * [[en:rpd:levels|Levels]]
 +  * [[en:rpd:amulet_item|Amulet of Yendor]]
 +
 +==== See Also ====
 +  * [[en:rpd:levels|Levels]]
 +  * [[en:rpd:dungeon|Dungeon]]
 +  * [[en:rpd:mobs|Mobs]]
 +  * [[en:rpd:items|Items]]
 +
 +{{tag> rpd mechanics stairs levels }}