forked from bga-devs/bga-diceforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameoptions.inc.php
More file actions
337 lines (328 loc) · 11 KB
/
Copy pathgameoptions.inc.php
File metadata and controls
337 lines (328 loc) · 11 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<?php
/**
*------
* BGA framework: © Gregory Isabelli <gisabelli@boardgamearena.com> & Emmanuel Colin <ecolin@boardgamearena.com>
* diceforge implementation : © Thibaut Brissard <docthib@hotmail.com> & Vincent Toper <vincent.toper@gmail.com>
*
* 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
*
* diceforge game options description
*
* In this file, you can define your game options (= game variants).
*
* Note: If your game has no variant, you don't have to modify this file.
*
* Note²: All options defined in this file should have a corresponding "game state labels"
* with the same ID (see "initGameStateLabels" in diceforge.game.php)
*
* !! It is not a good idea to modify this file when a game is running !!
*
*/
$game_options = [
/* Example of game variant:
// note: game variant ID should start at 100 (ie: 100, 101, 102, ...). The maximum is 199.
100 => array(
'name' => totranslate('my game option'),
'values' => array(
// A simple value for this option:
1 => array( 'name' => totranslate('option 1') )
// A simple value for this option.
// If this value is chosen, the value of "tmdisplay" is displayed in the game lobby
2 => array( 'name' => totranslate('option 2'), 'tmdisplay' => totranslate('option 2') ),
// Another value, with other options:
// beta=true => this option is in beta version right now.
// nobeginner=true => this option is not recommended for beginners
3 => array( 'name' => totranslate('option 3'), 'beta' => true, 'nobeginner' => true ),) )
)
)
*/
100 => [
'name' => totranslate('Exploit set'),
'values' => [
1 => ['name' => totranslate('Beginner cards'), 'tmdisplay' => totranslate('Beginner cards')],
99 => [
'name' => totranslate('Advanced cards'),
'nobeginner' => true,
'tmdisplay' => totranslate('Advanced cards'),
],
2 => ['name' => totranslate('Random'), 'nobeginner' => true, 'tmdisplay' => totranslate('Random')],
3 => ['name' => totranslate('Draft'), 'nobeginner' => true, 'tmdisplay' => totranslate('Draft')],
4 => [
'name' => totranslate('Recommended (extension)'),
'nobeginner' => true,
'tmdisplay' => totranslate('Recommended set (extension)'),
],
5 => [
'name' => totranslate('Perfect for 2 players'),
'nobeginner' => true,
'tmdisplay' => totranslate('setup Perfect for 2 players'),
],
6 => [
'name' => totranslate('Again and again'),
'nobeginner' => true,
'tmdisplay' => totranslate('setup Again and again'),
],
7 => [
'name' => totranslate('May the forge be with you'),
'nobeginner' => true,
'tmdisplay' => totranslate('setup May the forge be with you'),
],
8 => [
'name' => totranslate('Versatility'),
'nobeginner' => true,
'tmdisplay' => totranslate('setup Versatility'),
],
9 => [
'name' => totranslate('2020 : Tournament setup 1'),
'nobeginner' => true,
'tmdisplay' => totranslate('2020 : Tournament setup 1'),
],
10 => [
'name' => totranslate('2020 : Tournament setup 2'),
'nobeginner' => true,
'tmdisplay' => totranslate('2020 : Tournament setup 2'),
],
11 => [
'name' => totranslate('2021 : Challenge of the gods'),
'nobeginner' => true,
'tmdisplay' => totranslate('2021 : Challenge of the gods'),
],
],
'startcondition' => [
1 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '2',
'message' => totranslate('You cannot use this option without a module (necessary to match Beginner cards)'),
],
],
99 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '2',
'message' => totranslate('You cannot use this option without a module (necessary to match Advanced cards)'),
],
],
2 => [],
3 => [],
4 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You cannot use this option with the extension disabled'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '2',
'message' => totranslate(
'You cannot use this option without a module (as the recommended sets are linked to a module)'
),
],
],
5 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
6 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
7 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
8 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
9 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
10 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
],
11 => [
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '1',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '3',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'otheroptionisnot',
'id' => 102,
'value' => '4',
'message' => totranslate('You must enable Rebellion with "Cards only" option'),
],
[
'type' => 'maxplayers',
'value' => 2,
'message' => totranslate('This setup is for a 2 players game only'),
],
[
'type' => 'minplayers',
'value' => 2,
'message' => totranslate('This setup is for a 2 players game only'),
],
],
],
],
103 => [
'name' => totranslate('Tiebreaker'),
'values' => [
0 => ['name' => totranslate('No')],
1 => ['name' => totranslate('Yes'), 'nobeginner' => true, 'tmdisplay' => totranslate('with tiebreaker')],
],
],
102 => [
'name' => totranslate('Dice Forge Rebellion'),
'values' => [
1 => ['name' => totranslate('Off')],
2 => ['name' => totranslate('Cards only'), 'nobeginner' => true, 'tmdisplay' => totranslate('extensions card')],
3 => ['name' => totranslate('Module Titan'), 'nobeginner' => true, 'tmdisplay' => totranslate('Titan\'s module')],
4 => [
'name' => totranslate('Module Goddess'),
'nobeginner' => true,
'tmdisplay' => totranslate('Goddess\' module'),
],
],
'disable' => true,
],
101 => [
'name' => totranslate('Promo cards'),
'values' => [
0 => ['name' => totranslate('No')],
1 => ['name' => totranslate('Yes'), 'nobeginner' => true, 'tmdisplay' => totranslate('with Promo cards')],
],
'displaycondition' => [
[
'type' => 'otheroption',
'id' => 100,
'value' => [2, 3],
],
],
],
];
$game_preferences = [
100 => [
'name' => totranslate('Active player action buttons'),
'needReload' => true, // after user changes this preference game interface would auto-reload
'values' => [
// 1 => array( 'name' => totranslate( 'Classic' ), 'cssPref' => 'notation_classic' ),
1 => ['name' => totranslate('With')],
2 => ['name' => totranslate('Without')],
],
],
];