示例#1
0
 /// <<inheritdoc />
 public CardBuilder AddLinkMonsterCardElements(
     int linkValue,
     bool topLeftLinkMarker,
     bool topLinkMarker,
     bool topRightLinkMarker,
     bool middleLeftLinkMarker,
     bool middleRightLinkMarker,
     bool bottomLeftLinkMarker,
     bool bottomLinkMarker,
     bool bottomRightLinkMarker
     )
 {
     _linkMonsterCard = LinkMonsterCard.Create(
         linkValue,
         topLeftLinkMarker,
         topLinkMarker,
         topRightLinkMarker,
         middleLeftLinkMarker,
         middleRightLinkMarker,
         bottomLeftLinkMarker,
         bottomLinkMarker,
         bottomRightLinkMarker,
         _monsterCard
         );
     return(this);
 }
示例#2
0
 public LinkMonsterCard GetLinkMonsterCard(MonsterCard monster)
 {
     return(LinkMonsterCard.Create(
                1,
                topLeftLinkMarker: true,
                false,
                false,
                false,
                false,
                false,
                false,
                false,
                monster));
 }