summaryrefslogtreecommitdiff
path: root/create.html
blob: b0e3f928cc8181c54e7b470eae41e6a72b2189be (plain)
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
<dl>
<dt>
<a href="/julius-caesar/info/rules.html#setup">Historical</a>
<dd>
Historical deployment.
<dt>
<a href="/julius-caesar/info/rules.html#setup">Free Deployment</a>
<dd>
Players may swap any blocks on the map as long as the original number of
deployed blocks in each city is maintained.
</dl>

<dl>
<dt>
<label><input type="checkbox" name="tournament" value="true">Tournament</label>
<dd>
Julius Caesar goes first on the first turn regardless of the cards played.
</dl>

<dl>
<dt>
<label>
<input type="checkbox" id="delay_hits" name="delay_hits" value="true">
Delayed hit assignment
</label>
<dd>Fire all blocks with the same initiative before assigning hits.

<dt>
<label>
<input type="checkbox" id="autohit" name="autohit" value="true">
Automatic hit assignment
</label>
<dd>Assign hits automatically when there is no choice.
</dl>

<p>
House rules:
<br><label><input type="checkbox" name="max_2_events" value="true">Max 2 event cards per hand.</label>
<br><label><input type="checkbox" name="remove_jupiter" value="true">Remove Jupiter.</label>
<br><label><input type="checkbox" name="remove_vulcan" value="true">Remove Vulcan.</label>
<br><label><input type="checkbox" name="remove_all_events" value="true">Remove all events.</label>
<!--
<br><label><input type="checkbox" name="remove_apollo" value="true">Remove Apollo.</label>
<br><label><input type="checkbox" name="remove_jupiter" value="true">Remove Jupiter.</label>
<br><label><input type="checkbox" name="remove_mercury" value="true">Remove Mercury.</label>
<br><label><input type="checkbox" name="remove_mars" value="true">Remove Mars.</label>
<br><label><input type="checkbox" name="remove_neptune" value="true">Remove Neptune.</label>
<br><label><input type="checkbox" name="remove_pluto" value="true">Remove Pluto.</label>
<br><label><input type="checkbox" name="remove_vulcan" value="true">Remove Vulcan.</label>
-->

<script>
let cb1 = document.getElementById("autohit")
let cb2 = document.getElementById("delay_hits")
cb1.onchange = function () { if (cb1.checked) cb2.checked = false }
cb2.onchange = function () { if (cb2.checked) cb1.checked = false }
</script>