-
Notifications
You must be signed in to change notification settings - Fork 1
/
gameoptions.inc.php
36 lines (34 loc) · 1.38 KB
/
gameoptions.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
*------
* BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
* papayoo implementation : © Guillaume NAVEL <[email protected]>
*
* This code has been produced on the BGA studio platform for use on http://boardgamearena.com.
* See http://en.boardgamearena.com/#!doc/Studio for more information.
* -----
*
* gameoptions.inc.php
*
* papayoo game options description
*/
require_once("modules/constants.inc.php");
$game_options = [
OPTIONS_NBR_HANDS => [
'name' => totranslate('Number of hands to play'),
'values' => [
JUST_ONE => ['name' => totranslate( 'Just one hand' )],
ONE_PER_PLAYER => ['name' => totranslate( 'One time the number of players' ) ],
TWO_PER_PLAYER => ['name' => totranslate( 'Two time the number of players' ) ],
THREE_PER_PLAYER => ['name' => totranslate( 'Three time the number of players' )],
],
'default' => ONE_PER_PLAYER
],
OPTIONS_SHIFTING_DISCARD => [
'name' => totranslate('Shifting discard (variant)'),
'values' => [
SHIFTING_OFF => ['name' => totranslate('Disabled')],
SHIFTING_ON => ['name' => totranslate('Enabled'), 'tmdisplay' => totranslate("Shifting discards"), "description" => totranslate("Discarded cards are given to a different player on each turn starting on the left then going around clockwise")]
]
]
];