public AutomaCard01(DrawVineAction drawVine, GiveTourAction giveTour)
 {
     BlockedSummerActions = new List <BonusAction> {
         drawVine, giveTour
     };
     BlockedWinterActions = new List <BonusAction>();
 }
 public AutomaCard08(GiveTourAction giveTour, PlantVineAction plantVine, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, plantVine
     };
     BlockedWinterActions = new List <BonusAction> {
         makeWine
     };
 }
Exemple #3
0
 public AutomaCard14(GiveTourAction giveTour, SellGrapeOrFieldAction sellGrapeOrField, DrawOrderAction drawOrder, MakeWineAction makeWine)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, sellGrapeOrField
     };
     BlockedWinterActions = new List <BonusAction> {
         drawOrder, makeWine
     };
 }
 public AutomaCard20(GiveTourAction giveTour, SellGrapeOrFieldAction sellGrapeOrField, PlayWinterVisitorAction playWinterVisitor)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, sellGrapeOrField
     };
     BlockedWinterActions = new List <BonusAction> {
         playWinterVisitor
     };
 }
 public AutomaCard05(GiveTourAction giveTour, HarvestFieldAction harvestField)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour
     };
     BlockedWinterActions = new List <BonusAction> {
         harvestField
     };
 }
 public AutomaCard04(GiveTourAction giveTour, BuildStructureAction buildStructure, SellGrapeOrFieldAction sellGrapeOrField, TrainWorkerAction trainWorker)
 {
     BlockedSummerActions = new List <BonusAction> {
         giveTour, buildStructure, sellGrapeOrField
     };
     BlockedWinterActions = new List <BonusAction> {
         trainWorker
     };
 }