public void Action(MonopolyEmpires Me)
 {
     Me.currentPlayer.Current_Pos += 5;
     if (Me.currentPlayer.Current_Pos == 36)
     {
         Me.currentPlayer.Current_Pos = 0;
         Me.currentPlayer.amount     += Me.currentPlayer.topMostBillBoardValue;
     }
     else if (Me.currentPlayer.Current_Pos > 35)
     {
         Me.currentPlayer.Current_Pos -= 36;
         Me.AddGoSpaceAmount();
     }
     Me.SetTokenPossition(Me.currentPlayer.Current_Pos);
 }
Exemple #2
0
 public void Action(MonopolyEmpires Me)
 {
     Me.AddGoSpaceAmount();
 }