Ejemplo n.º 1
0
        //-----------------------------

        public Player(MainPlaceInfo mainPlaceInfo)
        {
            MainPlaceInfo      = mainPlaceInfo;
            Hp                 = 4000;
            Active             = false;
            BeBlocked          = false;
            GetFiveCardAlready = false;
            IfTakeDemage       = true;
            GetCardLimit       = 1;
            GetCardRest        = 1;
            OriginalCallLimit  = 1;
            OriginalCallRest   = 1;
            //-----------------------------
            mon_Place          = new Mon_Place(this);
            MgcPit_Place       = new MgcPit_Place(this);
            CardGroup          = new CardGroup(this);
            HandCardController = new HandCardController(this);
            Grave          = new Grave(this);
            ExceptionPlace = new ExceptionPlace(this);
            Info           = new Info(this);
            //--------------------------------
            HandCardPlaceContainer = new HandCardPlaceContainer(this);
            CardGroupContainer     = new CardGroupContainer(this);


            //CardGroupForm = new CardGroupForm(this);
            //InfoForm = new InfoForm(this);
            //ProcessSelectForm = new ProcessSelectForm(this);
        }
Ejemplo n.º 2
0
 public virtual void AddToHandCard(HandCardController aimHandCard)
 {
     aimHandCard.AddTheCardToHandCard(this);
 }