Multiple actions per turn
Allow a pattern of multiple actions per turn. Card options can "refund" an action to the player if they should be free, or zero out the remaining actions if they should force the turn to go directly to the simulation step.
This commit is contained in:
		@@ -9,6 +9,9 @@ type Player[C StatsCollection] struct {
 | 
				
			|||||||
	Deck             *Deck[C]
 | 
						Deck             *Deck[C]
 | 
				
			||||||
	Hand             []Card[C]
 | 
						Hand             []Card[C]
 | 
				
			||||||
	HandLimit        int
 | 
						HandLimit        int
 | 
				
			||||||
 | 
						ActionsPerTurn   int
 | 
				
			||||||
 | 
						ActionsRemaining int
 | 
				
			||||||
 | 
						PermanentActions []Card[C]
 | 
				
			||||||
	Rules            *RuleCollection[C]
 | 
						Rules            *RuleCollection[C]
 | 
				
			||||||
	Rand             rand.Rand
 | 
						Rand             rand.Rand
 | 
				
			||||||
	Turn             int
 | 
						Turn             int
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user