User Tools

Site Tools


mr:tough_shield_item

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:tough_shield_item [2025/12/27 20:07] – Update wiki pages for frost_arrow, wand_of_slowness, kunai, tough_shield, and smash_spell with accurate code references and information mikemr:tough_shield_item [2025/12/27 20:10] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Leather Reinforced Shield - Code References ======
 +
 +===== Java Classes =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/CustomItem.java|CustomItem.java]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/shields/Shield.java|Shield.java]]
 +
 +===== JSON Configuration =====
 +This entity is implemented in Lua, no JSON configuration exists
 +
 +===== String Resources =====
 +<code xml>
 +<string name="ToughShield_name">Leather Reinforced Shield</string>
 +<string name="ToughShield_desc">This shield reinforced with leather straps looks tougher than a wooden one. It can certanly block more damage.</string>
 +</code>
 +
 +===== Lua Scripts =====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/items/ToughShield.lua|ToughShield.lua]]
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/lib/shields.lua|shields.lua]]
 +
 +===== Related mr Entities =====
 +  * [[mr:shield_class|Shield (Class)]]
 +  * [[mr:shields_lib|Shields (Library)]]
 +  * [[mr:wooden_shield_item|Wooden Shield (Item)]]