====== Vertigo Buff ====== {{ rpd:images:vertigo_buff.png|Vertigo Status Effect }} ==== Description ==== **Vertigo** (also called Confusion or Dizziness) is a negative status effect in Remixed Dungeon that causes disorientation in the affected character. ==== Effects ==== * **Disorientation:** Affected characters experience dizziness and confusion * **Movement:** Character's movement becomes erratic and unpredictable * **Base Duration**: 10 turns (DURATION constant in Vertigo.java) * **Duration Reduction:** Duration is multiplied by Resistance factor (from rings of elements, etc.) * **Direction:** Character may move in random directions instead of intended path ==== Sources ==== Vertigo can be inflicted by: * **Confusion Gas** - Created when [[en:rpd:rotten_food_item|rotten food]] is eaten or thrown (25% chance). The gas lasts 150 + 10 × dungeon depth turns and applies Vertigo to all creatures in its area, refreshing the duration each turn. * **Horror Enchantment** - When used against the player hero * **Special abilities** of certain mobs * **Magical effects** or items that cause disorientation * **Environmental effects** ==== Counters ==== * [[en:rpd:resistances|Resistance]] (from rings of elements) reduces duration via durationFactor() * Potions and items that cure status effects may remove vertigo * Some creatures may be immune to disorientation effects * Waiting for the effect to naturally expire ==== Code References ==== * **Vertigo Buff Implementation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java|Vertigo.java]] * **Duration Constant**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java#L14|DURATION = 10f]] * **Duration Calculation**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java#L21|duration() method with resistance factor]] * **Visual Effect**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java#L27|attachVisual() shows "Dizzy" status]] * **Icon Reference**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Vertigo.java#L19|BuffIndicator.VERTIGO]] * **Confusion Gas Blob**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/blobs/ConfusionGas.java|ConfusionGas.java]] - Applies Vertigo to creatures in gas * **Rotten Food**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/food/RottenFood.java#L30|RottenFood.java]] - Creates ConfusionGas with lifetime 150 + 10 × depth ==== String Resources ==== * **Vertigo Buff**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L626-L627|English]]: Name="Vertigo", Info="The lightheaded feeling makes it harder to walk straight!" * **Confusion Gas**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L543|English]]: "A cloud of confusion gas is swirling here." * **Status Text**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L994|Char_StaVertigo]]: "Everything is spinning around you!" * **Russian Vertigo**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L2313-L2314|RU]]: Name="Завихрение", Info="Ощущение головокружения значительно затрудняет дальнейшее движение!" * **Russian Confusion Gas**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L574|RU]]: "Здесь витает облако дурманящего газа." * **Russian Status**: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1045|Char_StaVertigo]]: "У тебя кружится голова!" ==== See Also ==== * [[en:rpd:status_effects|Status Effects]] * [[en:rpd:buffs|Buffs and Debuffs]] * [[en:rpd:horror_enchantment|Horror Enchantment]] * [[en:rpd:rotten_food_item|Rotten Food]] * [[en:rpd:confusion_gas|Confusion Gas (Gas Blob)]] * [[en:rpd:toxic_gas_buff|Toxic Gas]] * [[en:rpd:paralytic_gas_buff|Paralytic Gas]] {{tag> rpd status_effects buffs vertigo confusion control dizzy }}