====== Potions ====== {{ rpd:images:item_PotionOfHealing.png|Potion }} Potions are consumable items in Remixed Dungeon that provide various beneficial or sometimes harmful effects when consumed or thrown. ==== Description ==== Potions are glass containers filled with mysterious liquids that provide magical effects when used properly. They form one of the core systems of the game alongside Scrolls. ==== Types of Potions ==== * [[rpd:potion_of_healing_item|Potion of Healing]] - Restores health * [[rpd:potion_of_experience|Potion of Experience]] - Provides experience points * [[rpd:potion_of_toxic_gas_item|Potion of Toxic Gas]] - Releases toxic gas when thrown * [[rpd:potion_of_paralytic_gas_item|Potion of Paralytic Gas]] - Releases paralytic gas when thrown * [[rpd:potion_of_levitation_item|Potion of Levitation]] - Provides temporary levitation * [[rpd:potion_of_frost_item|Potion of Frost]] - Creates freezing effect * [[rpd:potion_of_might_item|Potion of Might]] - Provides permanent strength boost (upgraded Potion of Strength) * [[rpd:potion_of_strength_item|Potion of Strength]] - Provides permanent strength boost * [[rpd:potion_of_liquid_flame_item|Potion of Liquid Flame]] - Creates fire when thrown * [[rpd:potion_of_invisibility_item|Potion of Invisibility]] - Provides temporary invisibility * [[rpd:potion_of_purity_item|Potion of Purity]] - Neutralizes harmful gases and liquids * [[rpd:potion_of_mind_vision|Potion of Mind Vision]] - Reveals nearby creatures and items through walls * [[rpd:potion_of_mana|Potion of Mana]] - Restores mana (magical energy) ==== Usage ==== * **Drinking:** Consume directly for personal effects * **Throwing:** Throw at enemies or specific locations for area effects * **Tactical:** Use strategically based on current situation * **Storage:** Keep in inventory for emergency use ==== Identification ==== * **Initial State:** Most potions have generic descriptions before identification * **Identify:** Can be identified by drinking or throwing * **Potion of Identify:** Special scroll that identifies potions without using them ==== Strategy ==== * Identify potions when safe to do so * Keep different types for various situations * Don't hoard - use when needed * Consider area effect potions for groups of enemies * Carry healing potions when entering dangerous areas ==== Source Code References ==== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java|Base Implementation: Potion.java]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfHealing.java|Potion of Healing]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfExperience.java|Potion of Experience]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfToxicGas.java|Potion of Toxic Gas]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java|Potion of Paralytic Gas]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfLevitation.java|Potion of Levitation]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfFrost.java|Potion of Frost]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfMight.java|Potion of Might]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfStrength.java|Potion of Strength]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfLiquidFlame.java|Potion of Liquid Flame]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfInvisibility.java|Potion of Invisibility]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfPurity.java|Potion of Purity]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfMindVision.java|Potion of Mind Vision]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfMana.java|Potion of Mana]] ==== Related ==== * [[rpd:scrolls|Scrolls]] - Other consumable items * [[rpd:items|Items]] - Other items in the game * [[rpd:alchemy|Alchemy]] - Brewing system for creating potions * [[rpd:shops|Shops]] - Places where potions can be purchased