
# How many stacks of these cards appear on the game table.
clubs_stacks     1
spades_stacks    1
hearts_stacks    1
diamonds_stacks  1

# How many slots the above cards are spread onto at the start.
filled_slots  8

# How many empty slots the table starts with.
empty_slots  1

# If 1, only kings can be moved onto the empty slots. If 0, any cards can be moved to empty slots.
only_king_into_empty  0

# If 1, cards can only be moved on top of cards with their own suit. If 0, cards can be moved on top of any other card with a higher rank.
only_same_suit_stacks  0

# If 1, stacks can only be moved if all the cards belong to the same suit. If 0, mixed stacks can be moved too.
cannot_move_mixed_suit_stacks  0

# If 1, a stack only becomes completed if it's on an empty slot. If 0, it can be completed anywhere.
only_complete_stack_on_empty  0
