User Tools

Site Tools


en:rpd:freezing

Differences

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

Link to this comparison view

en:rpd:freezing [2026/01/01 19:45] – namespace move Mikeen:rpd:freezing [2026/01/01 19:46] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Freezing ======
  
 +==== Description ====
 +Freezing is a blob effect in Remixed Dungeon that applies the frozen status to creatures that come into contact with it. Freezing is created by the Potion of Frost when it shatters.
 +
 +==== Effect ====
 +When creatures come into contact with the freezing blob:
 +  * **Freezing Effect:** Creatures become frozen in place, unable to move or act
 +  * **Duration:** Creatures remain frozen until the effect wears off or is cleared
 +  * **Area of Effect:** Affects all creatures that enter the frozen area
 +
 +==== Mechanics ====
 +  * **Activation:** Freezing is created when a [[en:rpd:potion_of_frost_item|Potion of Frost]] shatters
 +  * **Radius:** The freezing effect covers a 2-tile radius around the impact point
 +  * **Persistence:** The freezing blob remains for a short time, continuing to freeze creatures
 +  * **Duration:** The blob dissipates after a few turns
 +
 +==== Interaction ====
 +  * **Movement:** Frozen creatures cannot move or take action
 +  * **Damage:** Some fire-based attacks can clear freezing effects
 +  * **Duration:** The freeze effect wears off naturally after some time
 +  * **Immunities:** Some creatures are naturally immune to the freezing effect
 +
 +==== Strategy ====
 +  * Use in combat to temporarily disable dangerous enemies
 +  * Effective for crowd control when facing multiple enemies
 +  * Be careful not to freeze yourself or important allies
 +  * Works well in narrow corridors where enemies are forced to move through the area
 +
 +==== Code References ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Freezing.java|Freezing.java]] - Implementation of freezing effect
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Frost.java|Frost.java]] - Frost buff that is applied to creatures
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Fire.java|Fire.java]] - Fire blob that can be cleared by freezing
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/LiquidFlame.java|LiquidFlame.java]] - Liquid Flame blob that can be cleared by freezing
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/potions/PotionOfFrost.java|PotionOfFrost.java]] - Creates the freezing effect when shattered
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/plants/Icecap.java|Icecap.java]] - Plant that can create freezing effect
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/icecaves/ColdSpirit.java|ColdSpirit.java]] - Mob that can apply freezing
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mobs/elementals/WaterElemental.java|WaterElemental.java]] - Mob that can apply freezing
 +
 +==== String Resources ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L572-L574|FrostBuff_Name, FrostBuff_Info, Frost_Shatter]] - Frost buff display and effect strings
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2186-L2187|PotionOfFrost_Name, PotionOfFrost_Info]] - Potion of Frost description strings
 +
 +==== Related Pages ====
 +  * [[en:rpd:potion_of_frost_item|Potion of Frost]] - The item that creates freezing
 +  * [[en:rpd:ice_trap_level_object|Ice Trap]] - Another source of freezing effect
 +  * [[en:rpd:burning_buff|Burning]] - Opposite effect with fire instead of ice
 +  * [[en:rpd:frost_buff|Frost]] - The buff applied by freezing
 +  * [[en:rpd:blobs|Blobs]] - Other blob effects in the game
 +
 +{{tag> rpd mechanics blobs }}