====== Armor Kit Item - Code References ====== ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/ArmorKit.java|ArmorKit.java]] - Main item class, extends Item * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/mobs/King.java|King.java]] - Drops the ArmorKit * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/scenes/AboutScene.java|AboutScene.java]] - Appears in About scene * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] - Registered in factory ===== JSON Configuration ===== This entity does not have separate JSON configuration as it's implemented in Java. ===== String Resources ===== armor kit Using this kit of small tools and materials anybody can transform any armor into an "epic armor", which will keep all properties of the original armor, but will also provide its wearer a special ability depending on his class. No skills in tailoring, leather-working or blacksmithing are required. Select an armor to upgrade You applied the armor kit to upgrade your %s ===== Lua Scripts ===== This entity is implemented in Java, no Lua script exists ===== Entity Kind ===== * getEntityKind(): Returns "ArmorKit" (class name) ===== Related mr Entities ===== * [[mr:class_armor_item|Class Armor (Item)]] * [[mr:king_mob|King (Mob)]] {{tag> mr items armor}}