-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvastthecrystalcaverns_vastthecrystalcaverns.tpl
76 lines (55 loc) · 1.92 KB
/
vastthecrystalcaverns_vastthecrystalcaverns.tpl
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
{OVERALL_GAME_HEADER}
<!--
--------
-- BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
-- VastTheCrystalCaverns implementation : © Silvligh / Funce <[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.
-------
vastthecrystalcaverns_vastthecrystalcaverns.tpl
This is the HTML template of your game.
Everything you are writing in this file will be displayed in the HTML page of your game user interface,
in the "main game zone" of the screen.
You can use in this template:
_ variables, with the format {MY_VARIABLE_ELEMENT}.
_ HTML block, with the BEGIN/END format
See your "view" PHP file to check how to set variables and control blocks
Please REMOVE this comment before publishing your game on BGA
-->
<div id="sidequest_zone" class="cardsZone whiteblock">
<h2>Sidequests</h2>
<div id="sidequests"></div>
</div>
<div id="treasure_zone" class="cardsZone whiteblock">
<h2>Treasures</h2>
<div id="treasures"></div>
</div>
<div id="event_zone" class="cardsZone whiteblock">
<h2>Events</h2>
<div id="events"></div>
</div>
<div id="war_zone" class="cardsZone whiteblock">
<h2>War Cards</h2>
<div id="war_cards"></div>
</div>
<div id="monster_zone" class="cardsZone whiteblock">
<h2>Monsters</h2>
<div id="monsters"></div>
</div>
<div id="secret_zone" class="cardsZone whiteblock">
<h2>Secrets</h2>
<div id="secrets"></div>
</div>
<div id="power_zone" class="cardsZone whiteblock">
<h2>Power Cards</h2>
<div id="powers"></div>
</div>
<script type="text/javascript">
// Javascript HTML templates
/*
// Example:
var jstpl_some_game_item='<div class="my_game_item" id="my_game_item_${MY_ITEM_ID}"></div>';
*/
</script>
{OVERALL_GAME_FOOTER}