User Tools

Site Tools


rpd:challenges

Differences

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


Previous revision
rpd:challenges [2025/12/21 18:53] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Challenges ======
  
 +Challenges in Remixed Dungeon are special modifiers that players can choose to enable before beginning a new game, increasing the difficulty and providing a greater challenge.
 +
 +==== Available Challenges ====
 +
 +==== NO_FOOD (On diet) ====
 +  * **Effect**: No food items appear in the dungeon
 +  * **Impact**: You must rely on other sources of sustenance
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2430|Challenges_Names_0]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L25|Challenges.NO_FOOD]]
 +
 +==== NO_ARMOR (Faith is my armor) ====
 +  * **Effect**: No armor items appear in the dungeon
 +  * **Impact**: You must rely on other defensive means
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2431|Challenges_Names_1]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L26|Challenges.NO_ARMOR]]
 +
 +==== NO_HEALING (Pharmacophobia) ====
 +  * **Effect**: Healing potions do not appear in the dungeon
 +  * **Impact**: You must find other ways to heal
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2432|Challenges_Names_2]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L27|Challenges.NO_HEALING]]
 +
 +==== NO_HERBALISM (Barren land) ====
 +  * **Effect**: Seeds and dew-related items do not appear in the dungeon
 +  * **Impact**: Herbal healing and plant-related mechanics are unavailable
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2433|Challenges_Names_3]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L28|Challenges.NO_HERBALISM]]
 +
 +==== SWARM_INTELLIGENCE (Swarm intelligence) ====
 +  * **Effect**: All creatures in the dungeon become aware of events happening to each other
 +  * **Impact**: Mobs will react to other mobs being attacked
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2434|Challenges_Names_4]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L29|Challenges.SWARM_INTELLIGENCE]]
 +
 +==== DARKNESS (Into darkness) ====
 +  * **Effect**: View distance is reduced to 1, creating persistent darkness
 +  * **Impact**: Navigating the dungeon becomes much more difficult
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2435|Challenges_Names_5]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L30|Challenges.DARKNESS]]
 +
 +==== NO_SCROLLS (Forbidden Runes) ====
 +  * **Effect**: Scrolls and stylus items do not appear in the dungeon
 +  * **Impact**: Spell-related items and upgrades are unavailable
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2579|Challenges_Names_6]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L31|Challenges.NO_SCROLLS]]
 +
 +==== NO_WEAPON (Pacifism) ====
 +  * **Effect**: Weapons, wands, throwable items, bullets, and ranged weapons do not appear
 +  * **Impact**: You must rely on other means of combat
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2580|Challenges_Names_7]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L32|Challenges.NO_WEAPON]]
 +
 +==== NO_TOWN (No town) ====
 +  * **Effect**: The initial town level is removed from the game
 +  * **Impact**: You start directly on the sewers level with reduced starting equipment
 +  * **Strategy**: Be more cautious early game as you won't have access to the shop, wandmaker's services, or other town benefits
 +  * **Forbidden Spell**: Town Portal spell is forbidden when this challenge is active
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2874|Challenges_Names_8]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L33|Challenges.NO_TOWN]]
 +
 +==== NO_MAP (Amnesia) ====
 +  * **Effect**: Map memory is disabled, making it harder to navigate
 +  * **Impact**: You can't remember areas outside of direct sight
 +  * **String Resource**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L3022|Challenges_Names_9]]
 +  * **Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java#L34|Challenges.NO_MAP]]
 +
 +==== Strategy ====
 +  * Challenges are typically only recommended for experienced players
 +  * They often provide additional rewards or achievements
 +  * Consider your playstyle and experience before selecting challenges
 +
 +==== Content Verification ====
 +  * Information source: Java Class [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java|Challenges.java]]
 +  * Implementation details: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Challenges.java|Challenges.java]]
 +  * String resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/string_arrays.xml#L97-L126|Challenges_Names and Challenges_Descriptions]]
 +  * Additional implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/Dungeon.java#L223-L224|isChallenged method in Dungeon.java]]
 +
 +==== See Also ====
 +  * [[rpd:badges|Badges]]
 +  * [[rpd:start|Getting Started]]
 +  * [[rpd:challenges#NO_FOOD|No Food Challenge]]
 +  * [[rpd:challenges#NO_ARMOR|No Armor Challenge]]
 +  * [[rpd:challenges#NO_HEALING|No Healing Challenge]]
 +  * [[rpd:challenges#NO_HERBALISM|No Herbalism Challenge]]
 +  * [[rpd:challenges#SWARM_INTELLIGENCE|Swarm Intelligence Challenge]]
 +  * [[rpd:challenges#DARKNESS|Darkness Challenge]]
 +  * [[rpd:challenges#NO_SCROLLS|No Scrolls Challenge]]
 +  * [[rpd:challenges#NO_WEAPON|No Weapon Challenge]]
 +  * [[rpd:challenges#NO_TOWN|No Town Challenge]]
 +  * [[rpd:challenges#NO_MAP|No Map Challenge]]
 +
 +{{tag> rpd gameplay settings challenges}}