public ModifyTypeParameters(NPCTypeInfo typeInfo, NPC npc)
 {
     this.defaultTypes = new ThreeType(typeInfo.Primary, typeInfo.Secondary, typeInfo.Offensive);
     this.npc          = npc;
 }
 public ModifyTypeParameters(ThreeType defaultTypes, NPC npc)
 {
     this.defaultTypes = defaultTypes;
     this.npc          = npc;
 }