User Tools

Site Tools


mr:weakness_buff

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mr:weakness_buff [2025/12/25 18:23] – auto lint fix Mikhaelmr:weakness_buff [2026/03/15 23:00] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Weakness Buff - Code References ======
 +
 +{{ rpd:images:weakness_buff.png|Weakness Buff }}
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Weakness.java|Weakness.java]] - Main buff implementation class
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/FlavourBuff.java|FlavourBuff.java]] - Parent class
 +
 +===== Implementation Details =====
 +  * **Type**: FlavourBuff (temporary status effect)
 +  * **Base Duration**: 40 ticks
 +  * **Icon ID**: BuffIndicator.WEAKNESS
 +  * **Effect**: Discharges hero's equipped items on attach
 +  * **Duration Modifier**: Affected by RingOfElements.Resistance
 +  * **Sources**: Warlock attack, ScrollOfCurse, EnslavedSoul attack, SpiderMindAmber
 +
 +===== JSON Configuration =====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="Weakness_Name">Weakness</string>
 +<string name="Weakness_Info">Reduces effective Strength, potentially preventing the use of certain equipment.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +This entity is implemented in Java, no Lua script exists
 +
 +===== Related mr Entities =====
 +  * [[mr:ring_of_elements_item|Ring of Elements]]
 +  * [[mr:warlock_mob|Warlock]]
 +  * [[mr:scroll_of_curse_item|Scroll of Curse]]
 +  * [[mr:enslaved_soul_mob|Enslaved Soul]]