Weapon.js (131B)
1 function Weapon(name, minA, maxA, miss) { 2 this.name = name; 3 this.minA = minA; 4 this.maxA = maxA; 5 this.miss = miss; 6 }