-
Notifications
You must be signed in to change notification settings - Fork 0
/
gameinfos.inc.php
38 lines (37 loc) · 1.09 KB
/
gameinfos.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
<?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.
* -----
*
* gameinfos.inc.php
*
*/
$gameinfos = array(
'designer' => 'Emanuele Ornella',
'artist' => 'Arnaud Demaegd',
'year' => 2009,
'publisher' => 'Ystari Games',
'publisher_website' => 'http://www.ystari.com/',
'publisher_bgg_id' => 2861,
'bgg_id' => 43152,
'players' => array(2, 3, 4),
'suggest_player_number' => 4,
'not_recommend_player_number' => NULL,
'estimated_duration' => 60,
'fast_additional_time' => 30,
'medium_additional_time' => 40,
'slow_additional_time' => 50,
'tie_breaker_description' => '',
'is_beta' => 0,
'is_coop' => 0,
'complexity' => 3,
'luck' => 2,
'strategy' => 3,
'diplomacy' => 4,
'tags' => array(3, 11, 102)
);