From afc61fd9dd6e958592c80a2aa61e92cf1b0c9798 Mon Sep 17 00:00:00 2001 From: Ken Vilar Date: Sun, 3 Dec 2017 18:42:49 +0800 Subject: [PATCH] Add another rules for the game --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index abc26d5..39b7405 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,16 @@ A dice game using pure JavaScript ## Rules -* 2 players needed +* Two players are needed * A player rolls a dice in each turn as many times as he/she whishes. Each result gets added to his/her current rolled score * If the player rolls a 1, all his/her current rolled scores will get lost and no results will be added to the main score. After that, it's the next player's turn * The player can select to 'Hold', which means that his/her current rolled score gets added to his/her main score. After that, it's the next player's turn * Any player who will reach 100 points and above on his/her main score wins the game! +## Another rules +* If the player rolls the two dices and one of them is equal to 1, all his/her current rolled scores will get lost and no results will be added to the main score. After that, it's the next player's turn +* The player looses his/her rolled scores when he/she rolled two 6 in a row. Then it's the next player's turn +* The players can input a final score (optional) in a text field if they want a score of their own and not the default score, 100 + + # GOOD LUCK! :)