public Bomb(int many) { amount = many; name = "Bomb"; icon = new I_Ranged_2(1, Color.RAYWHITE); cost = 150; party = false; die = new int[2] { 3, 6 }; }
public Javelin(int many) { amount = many; name = "Javelin"; icon = new I_Ranged_2(6, Color.RAYWHITE); cost = 2; party = false; die = new int[2] { 1, 6 }; add = 0; fx = new Pierce(); }