Yes but to have the weapon EXCLUSIVELY target nukes you need to give the nuke missile a new armour type that can only be damaged by a new, unused damage type, such as HACK, and has a default value of 0% for all other damage types. Don't forget to add HACK with 0% damage to all other armor types so the anti-nuke weapon will not be allowed to attack anything other than nuke missiles. You'll also need to give the missile a better health value as the current value of 99999999 is way too high. Then the anti-nuke weapon needs the HACK warhead and sufficient damage to take the missile down in one shot.
Now here comes the tricky part: you want it to APPEAR to explode but without doing any damage. So what you need to do is use a new DeathType (EXTRA_1 for example) for the anti-nuke weapon and configure the missile so that it creates the exact same explosion as normal (in the NeutronMissileSlowDeathBehavior module), but without damage, when it gets killed by that damage type. I'm not sure whether it'll work, but you could try copying the explosion module (don't forget to use a new module tag) and adding DeathTypes = NONE +EXTRA_1 and also add DeathTypes = ALL -EXTRA_1 to the original module. Then adjust the new module so it does no damage (change Blast6MaxDamage and Blast6MinDamage to 0).
That should work but if you run into any problems post here.
|