public shootingItem(Texture itemTex, Map map) {
    super(itemTex);
    guns = new HashMap<Integer, Gun>();
    guns.put(0, new Gun(map, false, "Yellow", 3));
    guns.put(1, new Gun(map, false, "Yellow", 3));

    clockBullet = new Clock();
  }