-
Notifications
You must be signed in to change notification settings - Fork 0
/
material.inc.php
40 lines (38 loc) · 1.22 KB
/
material.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
<?php
/**
*------
* BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
* Velonimo implementation : © Oliver THEBAULT (a.k.a. Oliboy50)
*
* 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.
* -----
*
* material.inc.php
*
* Velonimo game material description
*
* Here, you can describe the material of your game with PHP variables.
*
* This file is loaded in your game logic class constructor, ie these variables
* are available everywhere in your game logic code.
*
*/
require_once('modules/constants.inc.php');
$this->legends_coaches = [
CARD_ID_LEGENDS_EAGLE_ADD_ONE_OTHER_NUMBER => [
'name' => clienttranslate('Eagle'),
],
CARD_ID_LEGENDS_PANDA_ADD_ONE_OTHER_COLOR => [
'name' => clienttranslate('Panda'),
],
CARD_ID_LEGENDS_SHARK_ONE_RED_MULTIPLY_TEN => [
'name' => clienttranslate('Shark'),
],
CARD_ID_LEGENDS_BADGER_ANY_NUMBER_OF_EACH_COLOR => [
'name' => clienttranslate('Badger'),
],
CARD_ID_LEGENDS_ELEPHANT_STOP => [
'name' => clienttranslate('Elephant'),
],
];