public static Threat Multiply(Threat threat, double multiplier)
 {
     return(new Threat(threat.type, threat.value * multiplier));
 }