Unlimited
Unlimited flux format. Each players flux is set to 10 at the start of each round regardless of what they control. Play a deck with lots of big and expensive spells.
void configGame()
{
setNumPlayers(2);
setTurnTime(121);
}
Player P1;
Player P2;
void beforeStart()
{
P1=getHumanPlayer(0);
P2=getHumanPlayer(1);
infoBox("Unlimited","This is an unlimited flux format. At the start of each round each players flux is set to 10");
}
void onNewRound(){
P1.addFlux(10 - P1.getFlux());
P2.addFlux(10 - P2.getFlux());
}