-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameinfos.inc.php
87 lines (56 loc) · 3.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
$gameinfos = array(
// Game designer (or game designers, separated by commas)
'designer' => ' Sayaka Amioka, Takahiro Amioka ',
// Game artist (or game artists, separated by commas)
'artist' => 'Xavier Gueniffey Durin',
// Year of FIRST publication of this game. Can be negative.
'year' => 2011,
// Game publisher
'publisher' => 'Ferti Games',
// Url of game publisher website
'publisher_website' => 'http://www.ferti-games.com/entakaraisland',
// Board Game Geek ID of the publisher
'publisher_bgg_id' => 1562,
// Board game geek if of the game
'bgg_id' => 150599,
// Players configuration that can be played (ex: 2 to 4 players)
'players' => array( 2, 3, 4 ),
// Suggest players to play with this number of players. Must be null if there is no such advice, or if there is only one possible player configuration.
'suggest_player_number' => 3,
// Discourage players to play with these numbers of players. Must be null if there is no such advice.
'not_recommend_player_number' => null,
// 'not_recommend_player_number' => array( 2, 3 ), // <= example: this is not recommended to play this game with 2 or 3 players
// Estimated game duration, in minutes (used only for the launch, afterward the real duration is computed)
'estimated_duration' => 45,
// Time in second add to a player when "giveExtraTime" is called (speed profile = fast)
'fast_additional_time' => 20,
// Time in second add to a player when "giveExtraTime" is called (speed profile = medium)
'medium_additional_time' => 30,
// Time in second add to a player when "giveExtraTime" is called (speed profile = slow)
'slow_additional_time' => 30,
// If you are using a tie breaker in your game (using "player_score_aux"), you must describe here
// the formula used to compute "player_score_aux". This description will be used as a tooltip to explain
// the tie breaker to the players.
// Note: if you are NOT using any tie breaker, leave the empty string.
//
// Example: 'tie_breaker_description' => totranslate( "Number of remaining cards in hand" ),
'tie_breaker_description' => "Ties are decided by the number experience points",
// Game is "beta". A game MUST set is_beta=1 when published on BGA for the first time, and must remains like this until all bugs are fixed.
'is_beta' => 1,
// Is this game cooperative (all players wins together or loose together)
'is_coop' => 0,
// Complexity of the game, from 0 (extremely simple) to 5 (extremely complex)
'complexity' => 2,
// Luck of the game, from 0 (absolutely no luck in this game) to 5 (totally luck driven)
'luck' => 4,
// Strategy of the game, from 0 (no strategy can be setup) to 5 (totally based on strategy)
'strategy' => 3,
// Diplomacy of the game, from 0 (no interaction in this game) to 5 (totally based on interaction and discussion between players)
'diplomacy' => 0,
'game_interface_width' => 1020,
// Games categories
// You can attribute any number of "tags" to your game.
// Each tag has a specific ID (ex: 22 for the category "Prototype", 101 for the tag "Science-fiction theme game")
'tags' => array( 2,103,209 )
);