-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
38 lines (36 loc) · 829 Bytes
/
README
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
a PHP Dominion card selector project with several options
Config Files(text/xml):
<?xml version='1.0' standalone='yes'?>
<DCSconf>
<cardlists>
<cardlist src='path/to/cardList' />
<cardlist src='path/to/cardList' />
</cardlists>
<baseConf>
<numberOfCards>10</numberOfCards>
</baseConf>
<additions>
<card>Name of Card</card>
<type number='1'>Type of Cards</type>
</additions>
<includes>
<card>Name of Card</card>
<type number='1'>Type of Cards</type>
</includes>
<excludes>
<card>Name of Card</card>
<type>Type of Cards</type>
</excludes>
<max>
<type number='1'>Type of Cards</type>
</max>
</DCSconf>
CardList Files:
<?xml version='1.0' standalone='yes'?>
<cardlist overallType='Version'>
<card name='Name'>
<type>Type Of Card</type>
<type>2</type>
<type>Action</type>
</card>
</cardlist>