public bool Equals(EffectCreature other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && other.m_monsterfamily == m_monsterfamily);
 }
 public EffectCreature(EffectCreature copy)
     : this(copy.Id, copy.MonsterFamily, copy)
 {
     
 }
 public bool Equals(EffectCreature other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) && other.m_monsterfamily == m_monsterfamily;
 }
 public EffectCreature(EffectCreature copy)
     : this(copy.Id, copy.MonsterFamily, copy)
 {
 }