User Tools

Site Tools


en:rpd:potion_of_strength_item

Differences

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

Link to this comparison view

en:rpd:potion_of_strength_item [2026/01/01 19:45] – namespace move Mikeen:rpd:potion_of_strength_item [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Potion of Strength ======
  
 +{{ rpd:images:potion_of_strength_item.png|Potion of Strength }}
 +
 +The **Potion of Strength** is a rare potion in Remixed Dungeon that permanently increases the drinker's strength by 1 point.
 +
 +==== Item Overview ====
 +  * **Type:** Potion
 +  * **Rarity:** Very Rare
 +  * **Special Effect:** Permanently increases hero's strength by 1 point
 +  * **Usage:** Single use item (consumed upon drinking)
 +  * **Base Price:** 100 gold (when identified)
 +
 +==== Special Mechanics ====
 +  * **Strength Increase:** When consumed, permanently increases the hero's strength by 1 point, allowing them to equip heavier armor and weapons
 +  * **Identification:** Becomes identified when consumed or when seen in inventory after being identified
 +  * **Stacking:** Multiple potions can be consumed to increase strength multiple times
 +  * **Moistening Arrows:** When used to moisten arrows, converts them to Amok Arrows
 +
 +==== Strategy ====
 +  * Essential for equipping higher-level weapons and armor that require more strength
 +  * Best used when approaching equipment with high strength requirements
 +  * Should typically be saved until the hero has equipment that can benefit from the additional strength
 +  * Particularly valuable for Warrior and other melee-focused classes
 +
 +==== Obtaining ====
 +  * Found in special containers and special rooms (e.g., [[en:rpd:armory_level_object|Armory]] rooms)
 +  * Dropped by rare enemies
 +  * Available in some shops at high prices (when identified)
 +  * One is found in the [[en:rpd:sewers_level|Sewers Level]] in a special chest
 +
 +==== Effect ====
 +When consumed, the Potion of Strength permanently increases the hero's strength by 1 point, allowing them to equip items with higher strength requirements.
 +
 +According to the game's string resources: "This powerful liquid will course through your muscles, permanently increasing your strength by one point."
 +
 +==== Data Sources ====
 +  * **Java Class**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfStrength.java|com.watabou.pixeldungeon.items.potions.PotionOfStrength]]
 +  * **Drop Locations**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/Level.java#L600-L601|Level.java lines 600-601]]
 +  * **Potion System**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java|Potion base class]]
 +  * **Sprite Index**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/sprites/ItemSpriteSheet.java#L43|labelIndex = 6]]
 +  * **Base Price**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfStrength.java#L29|basePrice() method in PotionOfStrength.java]]
 +
 +==== String Resources ====
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2213-L2216|PotionOfStrength strings]] - Name, description, and messages
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2213-L2216|PotionOfStrength strings]] - Russian localization
 +  * All languages: [[https://github.com/NYRDS/remixed-dungeon/tree/master/RemixedDungeon/src/main/res/values-*/strings_all.xml|Localized strings]]
 +
 +<code xml>
 +<string name="PotionOfStrength_Name">Potion of Strength</string>
 +<string name="PotionOfStrength_Info">This powerful liquid will course through your muscles, permanently increasing your strength by one point.</string>
 +<string name="PotionOfStrength_Apply">Newfound strength surges through your body.</string>
 +<string name="PotionOfStrength_StaApply">+1 str</string>
 +</code>
 +
 +==== Related Items ====
 +  * [[en:rpd:potions|Potions]] - General information about potions
 +  * [[en:rpd:potion_of_might_item|Potion of Might]] - Alternative strength-enhancing potion
 +  * [[en:rpd:mechanics|Game Mechanics]] - Equipment and strength mechanics
 +  * [[en:rpd:hero|Hero]] - Main playable character
 +
 +{{tag> rpd items potions strength}}