====== Royal Shield Item - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/CustomItem.java|CustomItem.java]] - Base class for all Lua-scripted items * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/Shield.java|Shield.java]] - Base shield class ===== JSON Configuration ===== This entity is implemented via Lua script, no JSON configuration exists ===== String Resources ===== * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L2609-L2610|strings_all.xml]] (lines 2609-2610) * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1824-L1825|strings_all.xml]] (lines 1824-1825) * All translations available in 18 languages ===== Lua Scripts ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/scripts/items/RoyalShield.lua|RoyalShield.lua]] - Shield implementation ===== Item Properties ===== * **Shield Level**: 4 * **Base Price**: 640 gold (160 × shield level) * **Equip Slot**: left_hand * **Upgradable**: Yes * **Sprite**: items/shields.png (frame 3) ===== Spawn Configuration ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json|Treasury.json]] - 0.125 spawn rate * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/assets/levelsDesc/SpidersTreasury.json|SpidersTreasury.json]] - 0.125 spawn rate ===== Entity Kind ===== * RoyalShield ===== Related mr Entities ===== * [[mr:wooden_shield_item|Wooden Shield (Item)]] * [[mr:tough_shield_item|Tough Shield (Item)]] * [[mr:strong_shield_item|Strong Shield (Item)]] {{tag> mr items shields }}