User Tools

Site Tools


mr:body_armor_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:body_armor_buff [2026/01/10 23:05] – Fix body_armor_buff.txt mr page and update paralytic_gas_buff.txt with image and correct links mikemr:body_armor_buff [2026/01/10 23:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Body Armor Buff - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/actors/buffs/CustomBuff.java|CustomBuff.java]] - Base class for Lua-defined buffs
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Buff.java|Buff.java]] - Base buff class
 +
 +===== JSON Configuration =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/effects/body_armor.json|body_armor.json]] - Effect configuration for particle effects
 +
 +===== String Resources =====
 +<code xml>
 +<string name="BodyArmorBuff_Name">Body Armor</string>
 +<string name="BodyArmorBuff_Info">Armor is increased at the cost of movement speed.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/buffs/BodyArmor.lua|BodyArmor.lua]]
 +
 +===== Related mr Entities =====
 +  * [[mr:body_armor_spell|Body Armor (Spell)]]