====== Web ====== The **Web** is a blob effect in Remixed Dungeon that roots characters in place, preventing movement until the web dissipates. It's commonly created by Spinner mobs and Spider Armor. ==== Description ==== When characters step on web: * **Rooting:** Characters become rooted in place, unable to move * **Duration:** The effect lasts until the web dissipates * **Movement Prevention:** Rooted characters cannot move but can still perform other actions ==== Properties ==== * **Type**: Blob/Environmental effect * **Effect**: Roots and immobilizes character * **Duration**: Until dissipated gradually * **Interaction**: Can be cleared with fire-based attacks ==== Mechanics ==== * **Creation:** Generated by [[en:rpd:spinner_mob|Spinner]] mobs when they attack * **Spider Armor:** [[en:rpd:spider_armor_item|Spider Armor]] creates web fields when the wearer takes damage * **Persistence:** The web remains for several turns before dissipating * **Immunity:** Characters wearing [[en:rpd:spider_armor_item|Spider Armor]] are immune to web effects * **Dissipation:** Webs gradually disappear over time ==== Strategy ==== * **Avoidance:** Be cautious when engaging spinners, as they will attempt to web you in place * **Spider Armor:** Provides immunity and can be useful when fighting spider enemies * **Patience:** If caught in web, either wait for it to dissipate or move to a different tile if possible * **Spinner Combat:** Fight spinners in open areas where being rooted is less disadvantageous ==== Code References ==== * Java Implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Web.java|Web.java]] * Base Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/Blob.java|Blob.java]] * Creator (Spinner): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/Spinner.java|Spinner.java]] * Immunity (Armor): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/armor/SpiderArmor.java|SpiderArmor.java]] ==== See Also ==== * [[en:rpd:spinner_mob|Spinner]] - Mob that creates web fields * [[en:rpd:spider_armor_item|Spider Armor]] - Item that creates webs and provides immunity * [[en:rpd:roots_buff|Roots]] - The buff applied by web (immobilizes character) * [[en:rpd:blobs|Blobs]] - Other blob effects in the game * [[en:rpd:freezing_buff|Freezing]] - Another environmental blob effect * [[en:rpd:toxic_gas|Toxic Gas]] - Another environmental blob effect {{tag> rpd mechanics blobs web}}