blob: 8864c99f74d41dbefff19e7f2e05ec43be809594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<level title="Edge Rules" description="There are now rules about which color edges can be." objective="Create as many edges as possible"/>
<global-vertex-protections protect="ad"/>
<colors>
<color color="#FF0000" name="red"/>
<color color="#0000FF" name="blue"/>
</colors>
<graph>
<vertex x="300" y="300" color="red"/>
<vertex x="500" y="300" color="red"/>
<vertex x="300" y="500" color="blue"/>
<vertex x="500" y="500" color="blue"/>
</graph>
<rules>
<edge-rule v1="same" edge="same" v2="same"/>
<edge-rule v1="red" edge="red" v2="blue"/>
</rules>
<values>
<var id="points" val="E"/>
<var id="objective" val="6"/>
</values>
|