public AutomaCard16(HarvestFieldAction harvestField, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
     };
     BlockedWinterActions = new List <BonusAction> {
         harvestField, makeWine
     };
 }
示例#2
0
 public AutomaCard24(PlantVineAction plantVine, MakeWineAction makeWine, FillOrderAction fillOrder)
 {
     BlockedSummerActions = new List <BonusAction> {
         plantVine
     };
     BlockedWinterActions = new List <BonusAction> {
         makeWine, fillOrder
     };
 }
 public AutomaCard08(GiveTourAction giveTour, PlantVineAction plantVine, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, plantVine
     };
     BlockedWinterActions = new List <BonusAction> {
         makeWine
     };
 }
示例#4
0
 public AutomaCard14(GiveTourAction giveTour, SellGrapeOrFieldAction sellGrapeOrField, DrawOrderAction drawOrder, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, sellGrapeOrField
     };
     BlockedWinterActions = new List <BonusAction> {
         drawOrder, makeWine
     };
 }
示例#5
0
 public AutomaCard02(DrawVineAction drawVine, BuildStructureAction buildStructure, PlantVineAction plantVine, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
         drawVine, buildStructure, plantVine
     };
     BlockedWinterActions = new List <BonusAction> {
         makeWine
     };
 }