Skip to content

Commit

Permalink
Moved game totals into section 99 ready for adding a potential 3rd ga…
Browse files Browse the repository at this point in the history
…me card column for the Mxi game
  • Loading branch information
JerBoon committed Sep 18, 2019
1 parent 714cfb5 commit e3d6618
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/init_game.maxi_yatzy.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ init_game.maxi_yatzy <- function(game, no_rolls_allowed) {
## table for standard game scorecard

t <- data.frame(
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3),
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2,2,2,2,2,2, 99,99,99),
section=c("1s","2s","3s","4s","5s","6s","ub",
"1p","2p","3p","3k","4k","5k",
"ss","ls","fs","fh","vl","tw","my","ch","ut","lt","gt"),
Expand Down
2 changes: 1 addition & 1 deletion R/init_game.mitzy.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ init_game.mitzy <- function(game, no_rolls_allowed) {
## table for standard game scorecard

t <- data.frame(
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2, 3,3,3),
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2, 99,99,99),
section=c("1s","2s","3s","4s","5s","6s","ub",
"1p","2p","3k","4k","ms","ch","ut","lt","gt"),
name=c("Aces","Twos","Threes","Fours","Fives","Sixes","Upper bonus",
Expand Down
2 changes: 1 addition & 1 deletion R/init_game.yahtzee.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ init_game.yahtzee <- function(game, no_rolls_allowed) {
## table for standard game scorecard

t <- data.frame(
half=c(1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3),
half=c(1,1,1,1,1,1,1,2,2,2,2,2,2,2, 99,99,99),
section=c("1s","2s","3s","4s","5s","6s","ub","3k","4k","fh","ss","ls","yz","ch","ut","lt","gt"),
name=c("Aces","Twos","Threes","Fours","Fives","Sixes","Upper bonus",
"3 of a kind","4 of a kind","Full house","Small straight","Large straight",
Expand Down
2 changes: 1 addition & 1 deletion R/init_game.yatzy.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ init_game.yatzy <- function(game, no_rolls_allowed) {
## table for standard game scorecard

t <- data.frame(
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2, 3,3,3),
half=c(1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2, 99,99,99),
section=c("1s","2s","3s","4s","5s","6s","ub",
"1p","2p","3k","4k","ss","ls","fh","ch","yz","ut","lt","gt"),
name=c("Aces","Twos","Threes","Fours","Fives","Sixes","Upper bonus",
Expand Down

0 comments on commit e3d6618

Please sign in to comment.