====== Amok Arrow ====== {{ rpd:images:amokarrow_item.png|Amok Arrow }} The Amok Arrow is a special type of missile weapon that causes enemies to go into a rage and attack other enemies when it hits. ==== Stats ==== * **Damage**: 0 (base damage is 0) * **Delay**: 1.0 (baseDly: 1.0) * **Min Strength Required**: 9 (setSTR: 9) ==== Special Abilities ==== * **Amok Effect**: When the arrow hits a target, it applies Amok, Speed and Rage status effects for 20 turns * **Mechanism**: Applies Amok.class, Speed.class and RageBuff to the defender for 20 turns * **Behavior**: Affected enemies will attack other enemies instead of the player ==== Acquisition ==== * Can be found in various treasure locations throughout the dungeon * Quantity typically ranges from 15-30 when randomly generated * Price: 5 gold per arrow ==== Strategy ==== * Useful for turning enemies against each other * Particularly effective in groups of enemies * Can be used to reduce the number of enemies without direct combat * The amok effect only occurs on a successful hit with 25% chance * Be careful not to accidentally make enemies too powerful with the rage effect ==== Code References ==== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/AmokArrow.java|AmokArrow.java]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/Arrow.java|Arrow.java]] (base class) * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Amok.java|Amok.java]] (effect applied) * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Speed.java|Speed.java]] (speed effect) * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/buffs/RageBuff.java|RageBuff.java]] (rage effect) ==== String Resources ==== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1549|AmokArrow_Name]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1550|AmokArrow_Info]] * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L1551|AmokArrow_Gender]] ==== Configuration Files ==== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/Arrow.java|Arrow.java]] (base missile implementation) ==== See Also ==== * [[rpd:amok_buff|Amok]] - The status effect applied by this arrow * [[rpd:speed_buff|Speed]] - Speed status effect * [[rpd:rage_buff|Rage]] - Rage status effect * [[rpd:arrows|Arrows]] - Other arrow types * [[rpd:missile_weapons|Missile Weapons]] - Other throwing weapons {{tag> rpd items arrows missiles chaos }}