示例#1
0
 public BaseCard(string id, string name, string description, PowerType.Type powerType, int powerValue, IEnumerable <string> properties)
 {
     Id          = id;
     Name        = name;
     Description = description;
     PowerType   = powerType;
     PowerValue  = powerValue;
     Properties  = properties.ToList();
 }
示例#2
0
 public DefendCard(string id, string name, string description, PowerType.Type powerType, int powerValue, IEnumerable <string> properties)
     : base(id, name, description, powerType, powerValue, properties)
 {
 }