r.add(entityTarget.getLocationAbbr(hit));
vPhaseReport.addElement(r);
entityTarget.attachNarcPod(pod);
} else if (atype.getAmmoType() == AmmoType.T_INARC) {
// iNarced
INarcPod pod = null;
if (atype.getMunitionType() == AmmoType.M_ECM) {
pod = new INarcPod(ae.getOwner().getTeam(), INarcPod.ECM, hit
.getLocation());
r = new Report(3251);
r.subject = subjectId;
r.add(entityTarget.getDisplayName());
r.add(entityTarget.getLocationAbbr(hit));
vPhaseReport.addElement(r);
} else if (atype.getMunitionType() == AmmoType.M_HAYWIRE) {
pod = new INarcPod(ae.getOwner().getTeam(), INarcPod.HAYWIRE,
hit.getLocation());
r = new Report(3252);
r.subject = subjectId;
r.add(entityTarget.getDisplayName());
r.add(entityTarget.getLocationAbbr(hit));
vPhaseReport.addElement(r);
} else if (atype.getMunitionType() == AmmoType.M_NEMESIS) {
pod = new INarcPod(ae.getOwner().getTeam(), INarcPod.NEMESIS,
hit.getLocation());
r = new Report(3253);
r.add(entityTarget.getDisplayName());
r.add(entityTarget.getLocationAbbr(hit));
r.subject = subjectId;
vPhaseReport.addElement(r);
} else {
pod = new INarcPod(ae.getOwner().getTeam(), INarcPod.HOMING,
hit.getLocation());
r = new Report(3254);
r.subject = subjectId;
r.add(entityTarget.getDisplayName());
r.add(entityTarget.getLocationAbbr(hit));