public static CreatureType ConvertToUsable(this CreatureType5e creatureType5e)
 {
     return(new CreatureType()
     {
         Type = creatureType5e.Type,
         Tags = creatureType5e.Tags,
     });
 }
 public static bool Compare(CreatureType creatureType, CreatureType5e creatureType5e)
 {
     return(creatureType.Type.Equals(creatureType5e.Type) &&
            creatureType.Tags.Equals(creatureType5e.Tags));
 }