Armor.js (117B)
1 function Armor(name, block, blockAdd) { 2 this.name = name; 3 this.block = block; 4 this.blockAdd = blockAdd; 5 }