-
Notifications
You must be signed in to change notification settings - Fork 101
Description
Currently, I want to simulate this game in 5th turn.
https://hsreplay.net/replay/EPYWPdrBBaELpVVq3aiBEc#turn=5b
After check the sample code in SabberStone\core-extensions\SabberStoneCoreConsole\src\Program.cs
My problem is:
1.How can I set the cards in hand for each player
2.How can I set the minions already on board for each player
3.How can I start the analyze when I finish the above two steps
I have checked the start game method, it contains the following code
// first turn
Turn = 1;Actually I want to simulate the 5th turn when I have only one mana left.
I can summon a totem first, then play the sea giant. Instead of playing the sea giant directly.

I want to check if SabberStone intelligent enough to give the correct move for the above game state.
This is one turn analyze, actually I only want to set the minions for each player and the mana left for me and the cards on my hand. Maybe the hero skill should be calculated.