User Tools

Site Tools


en:rpd:terror_buff

Differences

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

Link to this comparison view

en:rpd:terror_buff [2026/01/01 19:45] – namespace move Mikeen:rpd:terror_buff [2026/01/01 19:47] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Terror Buff ======
  
 +{{ rpd:images:buff_terror.png|Terror Status Effect }}
 +
 +**Terror** is a status effect in Remixed Pixel Dungeon that causes affected characters to become fearful and flee from combat, running away from their opponents.
 +
 +==== Effects ====
 +  * **Fear:** Affected characters are overcome with terror and flee from combat
 +  * **Movement:** Affected characters attempt to run away from enemies they can see
 +  * **Duration:** The effect lasts until it wears off or is cured
 +  * **Behavior:** Affected characters generally avoid engaging in combat while terrified
 +
 +==== Causes ====
 +Terror can be inflicted by:
 +  * [[en:rpd:scroll_of_terror_item|Scroll of Terror]]
 +  * [[en:rpd:horror_enchantment|Horror Enchantment]] on weapons
 +  * Special abilities of certain mobs
 +  * Some curses or dark magic effects
 +  * Certain wands with fear effects may cause terror in some game variants
 +
 +==== Counters ====
 +  * [[en:rpd:resistances|Fear Resistance]] may prevent the effect
 +  * Potions and items that cure status effects may remove terror
 +  * Some creatures may be immune to terror effects
 +  * Standing your ground (though difficult while terrified) until the effect wears off
 +
 +==== Strategy ====
 +  * Use terror to escape dangerous situations
 +  * Effective for separating groups of enemies
 +  * Can be used to reach safe areas or other locations
 +  * Note that terror is temporary and affected enemies will return to normal after the duration
 +
 +==== Source Code ====
 +  * Java Class: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Terror.java|Terror.java]]
 +  * String Resources (English): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L614-L615|TerrorBuff_Name and TerrorBuff_Info (lines 614-615)]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L795-L796|Mob_StaTerrorStatus strings (lines 795-796)]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1774-L1778|ScrollOfTerror strings (lines 1774-1778)]]
 +  * String Resources (Russian): [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L614-L615|TerrorBuff_Name and TerrorBuff_Info (lines 614-615)]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L795-L796|Mob_StaTerrorStatus strings (lines 795-796)]], [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1775-L1779|ScrollOfTerror strings (lines 1775-1779)]]
 +  * Other Related Code:
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Terror.java#L14-L26|Terror class definition and recovery method]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Terror.java#L28-L38|attachTo and attachVisual methods]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/buffs/BuffFactory.java#L94|BuffFactory.TERROR constant]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/enchantments/Horror.java#L29|Horror enchantment applying Terror]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/scrolls/ScrollOfTerror.java#L35|ScrollOfTerror applying Terror]]
 +    * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/ai/Horrified.java|Horrified AI that handles Terror]]
 +
 +==== See Also ====
 +  * [[en:rpd:status_effects|Status Effects]]
 +  * [[en:rpd:scroll_of_terror_item|Scroll of Terror]]
 +  * [[en:rpd:buffs|Buffs and Debuffs]]
 +  * [[en:rpd:fear_buff|Fear]]
 +
 +{{tag> rpd status_effects buffs fear terror control}}