User Tools

Site Tools


rpd:paralytic_gas_trap_level_object

Differences

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

Link to this comparison view

rpd:paralytic_gas_trap_level_object [2026/01/01 00:05] – Create Paralytic Gas Trap Level Object page with comprehensive source references and proper wiki structure mikerpd:paralytic_gas_trap_level_object [2026/01/01 00:06] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Paralytic Gas Trap ======
  
 +{{ rpd:images:trap_paralyticgas_level_object.png|Paralytic Gas Trap }}
 +
 +**Paralytic Gas Trap** is a trap in Remixed Pixel Dungeon that creates a cloud of paralytic gas when triggered.
 +
 +==== Effects ====
 +  * **[[rpd:paralysis_buff|Paralysis]]**: Causes [[rpd:paralysis_buff|paralysis status effect]] to characters in the area
 +  * **[[rpd:area_effects|Area Effect]]**: Affects multiple tiles in a small radius around the trap
 +  * **[[rpd:instant_traps|Instant Trigger]]**: Activates immediately when stepped on
 +  * **[[rpd:gas_traps|Gas Effect]]**: Creates a cloud similar to [[rpd:potion_of_paralytic_gas_item|Potion of Paralytic Gas]]
 +
 +==== Description ====
 +When a character steps on this trap, it releases a cloud of paralytic gas that affects the character and potentially others in the immediate area. The gas causes paralysis, preventing affected characters from taking actions for a limited time.
 +
 +==== Mechanics ====
 +  * Triggered when a character moves onto the trapped tile
 +  * Creates a gas cloud that lingers briefly on the level
 +  * Affects all characters within the cloud's area of effect
 +  * Duration and potency may vary based on level depth and game mechanics
 +
 +==== Prevention ====
 +  * Use [[rpd:trap_detection|trap detection]] mechanisms (e.g., [[rpd:ring_of_detection_item|Ring of Detection]])
 +  * [[rpd:stealth_mechanics|Stealth]]-based characters may have special abilities to avoid triggering
 +  * [[rpd:disarming_traps|Disarm]] the trap before stepping on it if possible
 +
 +==== Counters ====
 +  * Some creatures may be naturally immune to paralysis
 +  * [[rpd:resistances|Resistance]] effects may reduce the duration of paralysis
 +  * [[rpd:potion_of_purity_item|Potion of Purity]] may clear the gas cloud
 +
 +==== Source Code ====
 +  * Java Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/objects/Trap.java|Trap.java]] - base trap implementation
 +  * Gas Creation: [[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 Effect: [[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
 +  * Trap Mechanics: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/levels/objects/Trap.java|Trap System]]
 +  * String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1685-L1686|TRAP_PARALYTICGAS_NAME, TRAP_PARALYTICGAS_DESC]]
 +  * Russian String Resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1685-L1686|TRAP_PARALYTICGAS_NAME, TRAP_PARALYTICGAS_DESC (русс.)]]
 +  * Machine-readable data: [[mr:paralytic_gas_trap_level_object|mr:paralytic_gas_trap_level_object]]
 +
 +==== See Also ====
 +  * [[rpd:traps|Traps]]
 +  * [[rpd:paralysis_buff|Paralysis Buff]]
 +  * [[rpd:potion_of_paralytic_gas_item|Potion of Paralytic Gas]]
 +  * [[rpd:gas_traps|Gas Traps]]
 +  * [[rpd:status_effects|Status Effects]]
 +
 +{{tag> rpd traps gas paralysis level_objects }}