_sources
config
Setting the game score
----------------------
By default the points are given as follow (see :doc:`terminology`).
* move card to foundation: 10
* turn a card: 5
* move a card from waste to tableau: 5
* move a card from foundation to tableau: -15
* every 10 seconds 2 point are discounted
You can change this behavior through the `points` option:
.. code-block:: js
Solitaire({
// ... More options
points: {
move_to_foundation: 10,
waste_to_tableau: 5,
foundation_to_tableau: -15,
turn_card: 5
}
}); ">configuration
customization
">demo
index