public MonsterCardData(MonsterCardData _monster)
     : base(_monster.Id, _monster.Name, _monster.Description, _monster.CardType)
 {
     this.IsEffect      = _monster.IsEffect;
     this.Attribute     = _monster.Attribute;
     this.MonsterType   = _monster.MonsterType;
     this.Ability       = _monster.Ability;
     this.Level         = _monster.Level;
     this.Atk           = _monster.Atk;
     this.Def           = _monster.Def;
     this.Rank          = _monster.Rank;
     this.PendulumScale = _monster.PendulumScale;
     this.SpellSpeed    = 0;
 }
 public MonsterCardData(MonsterCardData _monster)
     : base(_monster.Id, _monster.Name, _monster.Description, _monster.CardType)
 {
     this.IsEffect = _monster.IsEffect;
     this.Attribute = _monster.Attribute;
     this.MonsterType = _monster.MonsterType;
     this.Ability = _monster.Ability;
     this.Level = _monster.Level;
     this.Atk = _monster.Atk;
     this.Def = _monster.Def;
     this.Rank = _monster.Rank;
     this.PendulumScale = _monster.PendulumScale;
     this.SpellSpeed = 0;
 }