User Tools

Site Tools


en:rpd:potion_of_paralytic_gas_item

Differences

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

Link to this comparison view

en:rpd:potion_of_paralytic_gas_item [2026/01/01 19:45] – namespace move Mikeen:rpd:potion_of_paralytic_gas_item [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Potion of Paralytic Gas ======
 +
 +{{ rpd:images:potionofparalyticgas_sprite.png|Potion of Paralytic Gas }}
 +The Potion of Paralytic Gas is a throwable potion that creates a cloud of paralyzing gas in Remixed Dungeon.
 +==== Stats ====
 +  * **[[en:rpd:rarity_system|Rarity]]**: Uncommon
 +  * **[[en:rpd:weight_system|Weight]]**: 4
 +  * **[[en:rpd:item_types|Type]]**: [[en:rpd:potion_item|Throwable Potion]]
 +==== Description ====
 +When shattered, this potion releases a numbing cloud of paralytic gas that paralyzes any creature that breathes it. The gas cloud persists for a short time.
 +==== Usage ====
 +  * Throws the potion at enemies or into groups
 +  * Creates a cloud of paralytic gas that paralyzes all in the area
 +  * Temporarily immobilizes enemies
 +  * Effective for escape or positioning
 +==== Acquisition ====
 +  * Found throughout the dungeon
 +  * More common in areas with alchemical themes
 +  * May be available in shops
 +==== Special Notes ====
 +  * Area effect control
 +  * Causes paralysis status effect
 +  * Dangerous to use near the player
 +  * Part of the Doctor class starting equipment
 +  * Excellent for crowd control situations
 +{{tag> rpd items potion paralytic_gas throwable control}}
 +
 +The Potion of Paralytic Gas is a consumable item that releases a cloud of gas that can paralyze enemies caught within its area of effect.
 +
 +When thrown, this potion releases a cloud of paralytic gas that spreads in the area, potentially paralyzing all creatures within its range. Paralyzed creatures are unable to take actions for a period of time.
 +==== Effects ====
 +  * **[[en:rpd:area_effects|Area Effect]]**: Creates a cloud of paralytic gas that affects multiple targets
 +  * **[[en:rpd:paralysis_buff|Paralysis]]**: May cause [[en:rpd:paralysis_buff|paralysis status effect]], preventing enemy actions
 +  * **[[en:rpd:duration_system|Duration]]**: Affected creatures remain paralyzed for a limited time
 +  * **[[en:rpd:environmental_effects|Environmental]]**: The gas lingers briefly in the area
 +  * **[[en:rpd:combat_control|Combat Control]]**: Effective for neutralizing dangerous enemies temporarily
 +  * **[[en:rpd:ranged_combat|Ranged]]**: Can be thrown to affect distant targets
 +  * **[[en:rpd:escape_mechanics|Escape]]**: Useful for creating breathing room in dangerous situations
 +  * **[[en:rpd:boss_fights|Boss Fights]]**: Particularly valuable against powerful enemies
 +==== Classes That Benefit ====
 +  * [[en:rpd:plague_doctor_mob|Plague Doctor]] - Especially effective for toxic specialists
 +  * Any class needing temporary respite from combat
 +  * Players facing numerous dangerous enemies
 +==== Tactics ====
 +  * Best used against powerful singular enemies or dangerous groups
 +  * Can be used to isolate enemies from groups
 +  * Effective for creating safe areas during intense combat
 +  * Useful during equipment changes or healing
 +  * Can be used to bypass enemies entirely
 +==== Related ====
 +  * [[en:rpd:potion_item|Potions]] - Other consumable items
 +  * [[en:rpd:potion_of_toxic_gas_item|Potion of Toxic Gas]] - Similar gas-based item
 +  * [[en:rpd:plague_doctor_mob|Plague Doctor]] - Class that specializes in gas effects
 +  * [[en:rpd:paralysis_buff|Paralysis]] - The status effect created
 +  * [[en:rpd:items|Items]] - Other items in the game
 +==== Strategy ====
 +  * Keep for emergency situations or challenging fights
 +  * Very valuable for characters with limited escape options
 +  * Excellent for neutralizing ranged or dangerous enemies
 +  * Consider the timing of when enemies will recover
 +  * Part of the toxic and control-based combat toolkit
 +
 +This potion will release a paralyzing gas cloud when shattered. Creatures caught in the cloud will be paralyzed and unable to act temporarily.
 +
 +==== Additional Effects ====
 +  * **Paralysis Gas Cloud:** Creates a cloud that paralyzes creatures
 +  * **Immobilization:** Paralyzes all creatures caught in the cloud
 +  * **Duration:** Temporary paralysis effect
 +
 +==== Additional Special Properties ====
 +  * Can be used to neutralize dangerous enemies temporarily
 +  * Effective against groups of enemies
 +  * Provides tactical advantages by immobilizing foes
 +
 +==== Code References ====
 +  * **Java Implementation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java|PotionOfParalyticGas.java]]
 +  * **Potion Base Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java|Potion.java]]
 +  * **Potion Base Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/UpgradablePotion.java|UpgradablePotion.java]] - extends base potion with upgrade mechanics
 +  * **Paralytic Gas Effect:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/ParalyticGas.java|ParalyticGas.java]] - handles the gas cloud effect
 +  * **Paralysis Buff:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Paralysis.java|Paralysis.java]] - the actual paralysis status effect
 +  * **Shatter Mechanics:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L24-L30|shatter method]] - creates the gas cloud when potion breaks
 +  * **Blob Seed Method:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Blob.java#L35-L42|Blob.seed]] - creates the paralytic gas effect
 +  * **Splash Effect:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L26|splash method]] - visual effect when shattered
 +  * **Audio Effect:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L27|Sample.INSTANCE.play(Assets.SND_SHATTER)]] - sound when potion breaks
 +  * **String Resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2207-L2208|PotionOfParalyticGas_Name, PotionOfParalyticGas_Info]] - displays detailed description of the potion
 +  * **Russian String Resources:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2208-L2209|PotionOfParalyticGas_Name (русс.), PotionOfParalyticGas_Info (русс.)]] - Russian localization
 +  * **Price Reference:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L32|basePrice method]] - value of 40 gold
 +  * **Moistening Support:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L38-L44|moistenArrow method]] - enables creation of Paralysis Arrows
 +  * **Quality Factor:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfParalyticGas.java#L29|qualityFactor()]] - affects gas duration based on potion quality
 +  * **Quality Factor:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/Potion.java#L47-L49|qualityFactor() in base class]] - calculates quality based on upgrades
 +  * **Blob Generation:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Blob.java#L21-L22|Blob.seed method]] - creates gas blob with 1000*qualityFactor() intensity
 +  * **Gas Duration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Blob.java#L38|duration calculation]] - gas persists for 1000*qualityFactor() turns
 +  * **Paralysis Duration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Paralysis.java#L39|Paralysis.duration()]] - duration affected by resistance buffs
 +  * **Paralysis Effect:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/ParalyticGas.java#L14-L17|evolve method]] - applies paralysis to all chars in affected cells
 +  * **Visual Effect:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/ParalyticGas.java#L20|use method]] - renders paralysis gas particles
 +  * **Tile Description:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/ParalyticGas.java#L24|tileDesc method]] - description when gas cloud is on screen
 +  * **Actor Detection:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/Actor.java#L26-L28|Actor.findChar(i)]] - checks for chars in affected cells
 +  * **Buff Application:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Buff.java#L15-L17|Buff.prolong method]] - applies paralysis buff with duration
 +  * **Paralysis Buff Duration:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Paralysis.java#L39|Paralysis.duration method]] - calculates paralysis duration based on character resistances
 +  * **Paralysis Arrow:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/ParalysisArrow.java|ParalysisArrow.java]] - creates arrows that inflict paralysis
 +  * **Arrow Base Class:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/Arrow.java|Arrow.java]] - base implementation for arrows
 +  * **Item Collection:** [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/Item.java#L128-L130|collect method]] - handles adding items to inventory
 +  * **Machine-readable data:** [[mr:potion_of_paralytic_gas_item|mr:potion_of_paralytic_gas_item]]
 +
 +==== Notes ====
 +Potion of Paralytic Gas is a powerful tactical tool that can neutralize threats temporarily, allowing the player to escape or attack immobilized enemies.