-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.inc.php
60 lines (59 loc) · 1.89 KB
/
stats.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* ------
* BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
* Assyria implementation: © Sebastien Prud'homme <[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.
* -----
*
* stats.inc.php
*
*/
$stats_type = array(
'table' => array(
),
'player' => array(
"pointsScoredWithHuts" => array(
"id"=> 10,
"name" => totranslate("Points scored with huts"),
"type" => "int"
),
"pointsScoredWithZigguratTiles" => array(
"id"=> 11,
"name" => totranslate("Points scored with ziggurats"),
"type" => "int"
),
"pointsScoredWithWells" => array(
"id"=> 12,
"name" => totranslate("Points scored with wells"),
"type" => "int"
),
"pointsScoredWithInfluence" => array(
"id"=> 13,
"name" => totranslate("Points scored with influence on dignitaries"),
"type" => "int"
),
"pointsScoredWithHigherDignitary" => array(
"id"=> 14,
"name" => totranslate("Points scored with the higher dignitary"),
"type" => "int"
),
"pointsScoredWithOfferings" => array(
"id"=> 15,
"name" => totranslate("Points scored with offerings"),
"type" => "int"
),
"pointsScoredWithRemainingPlow" => array(
"id"=> 16,
"name" => totranslate("Points scored with remaining plow"),
"type" => "int"
),
"pointsScoredWithRemainingCamels" => array(
"id"=> 17,
"name" => totranslate("Points scored with remaining camels"),
"type" => "int"
)
)
);