
Anyway, one monster, should be immune to everything except one type of custom damage. I have made large tests and I have succesfully reduced all possible damage in Zdoom to 0, that is:
Code: Select all
DamageFactor "normal" , 0.0 //any non custom damage
DamageFactor "Fire" , 0.0 //lots of hexen projectiles
DamageFactor "Ice" , 0.0 //more hexen projectiles
DamageFactor "Electric" , 0.0 //I believe is the arc of death. This one was mentioned in the maulotaur's code
DamageFactor "Explosion" , 0.0 //Not sure, please correct me if Im wrong or if it doesnt exist
DamageFactor "Disintegrate", 0.0 //strife
DamageFactor "Extreme", 0.0 //I believe that's how is called please correct me if wrong
DamageFactor "Poison", 0.0 //hexen
DamageFactor "Railgun", 0.0 //I didnt know why my railgun was killing the mosnter, so i tried this and worked :D
DamageFactor "Melee", 0.0 //I didnt know it was considered apart, but it is
DamageFactor "BFGSplash", 0.0 //self explanatory
Also, am I missing any other regular zdoom damage types?
Thanks in advace.