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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
|
<!DOCTYPE html>
<html>
<head>
<title>JC Rules-FINAL</title>
<link rel="stylesheet" href="/fonts/fonts.css">
<style>
body{background-color:slategray}
div{position:relative;background-color:white;margin:1em auto;box-shadow:1px 1px 8px -2px black}
p{position:absolute;white-space:pre;margin:0}
p{font-family:"Source Sans",sans-serif;font-size:12pt;line-height:1.0em}
</style>
</head>
<body>
<div id="page1" style="background-image:url('rules1.jpg');width:765.0pt;height:990.0pt">
<p style="top:100.9pt;left:506.2pt;font-size:11.0pt"><b>The Roman Calendar</b></p>
<p style="top:113.9pt;left:506.2pt;font-size:9.7pt">Few Romans knew or cared what year it was, but </p>
<p style="top:125.9pt;left:506.2pt;font-size:9.7pt">those who did counted the years from the semi-</p>
<p style="top:137.9pt;left:506.2pt;font-size:9.7pt">fabled founding of Rome by Romulus in 754BC. </p>
<p style="top:149.9pt;left:506.2pt;font-size:9.7pt">Hence the civil war began in 705 (49bc), and the </p>
<p style="top:161.9pt;left:506.2pt;font-size:9.7pt">assassination of Julius Caesar occurred in 710 </p>
<p style="top:173.9pt;left:506.2pt;font-size:9.7pt">(44bc) of the Roman Calendar. </p>
<p style="top:189.6pt;left:506.2pt;font-size:9.7pt">Julius Caesar established the Julian Calendar in </p>
<p style="top:201.6pt;left:506.2pt;font-size:9.7pt">709 (45bc). This Calendar corrected a two month </p>
<p style="top:213.6pt;left:506.2pt;font-size:9.7pt">error in the solar cycle and established the leap </p>
<p style="top:225.6pt;left:506.2pt;font-size:9.7pt">year concept to keep it accurate. The month </p>
<p style="top:237.6pt;left:506.2pt;font-size:9.7pt">of July was renamed after Caesar. With minor </p>
<p style="top:249.6pt;left:506.2pt;font-size:9.7pt">revisions to leap years, this is the Calendar we still </p>
<p style="top:261.6pt;left:506.2pt;font-size:9.7pt">use (in the West) today. </p>
<p style="top:280.0pt;left:506.2pt;font-size:11.0pt"><b>Victory</b></p>
<p style="top:293.0pt;left:506.2pt;font-size:9.7pt">City vps total 13. Pompey starts the game holding </p>
<p style="top:305.0pt;left:506.2pt;font-size:9.7pt">7vp while Caesar has only 1vp (<i>Massilia</i>). <i>Rome</i>, </p>
<p style="top:317.0pt;left:506.2pt;font-size:9.7pt"><i>Athens</i>, <i>Byzantium, and Ephesus</i> are Vacant. The </p>
<p style="top:329.0pt;left:506.2pt;font-size:9.7pt">burden of attack lies with Caesar to avoid an early </p>
<p style="top:341.0pt;left:506.2pt;font-size:9.7pt">defeat. </p>
<p style="top:359.4pt;left:506.2pt;font-size:11.0pt"><b>God Cards</b></p>
<p style="top:372.4pt;left:506.2pt;font-size:9.7pt">The deck contains seven (7) God cards, named for </p>
<p style="top:384.4pt;left:506.2pt;font-size:9.7pt">the major Roman deities. These cards allow special </p>
<p style="top:396.4pt;left:506.2pt;font-size:9.7pt">actions to occur that break the normal rules. See </p>
<p style="top:408.4pt;left:506.2pt;font-size:9.7pt">each card for details.</p>
<p style="top:426.8pt;left:506.2pt;font-size:11.0pt"><b>Game Turn Example</b></p>
<p style="top:441.1pt;left:506.2pt;font-size:9.6pt"><b> •Card Play: </b>Caesar 2/1, Pompey 2/2. Cards are tied </p>
<p style="top:453.1pt;left:506.2pt;font-size:9.6pt">(compare only Moves) but Caesar is Player 1 on ties. </p>
<p style="top:466.4pt;left:506.2pt;font-size:9.6pt"><b> </b><b>•Caesar</b><b> (Player 1):</b> 2 Moves then 1 Levy</p>
<p style="top:479.6pt;left:506.2pt;font-size:9.6pt"><b> </b><b>•Pompey</b><b> (Player 2):</b> 2 Moves then 2 Levies</p>
<p style="top:492.9pt;left:506.2pt;font-size:9.6pt"><b> •Battle Phase: </b>Resolve any battles in the order </p>
<p style="top:504.9pt;left:506.2pt;font-size:9.6pt">chosen by Player 1. </p>
<p style="top:100.7pt;left:278.8pt;font-size:17.1pt"><b><span style="color:#9d0a0e">2.0 GAME TURNS</span></b></p>
<p style="top:122.5pt;left:297.5pt;font-size:11.0pt">There are five Years in the game, each </p>
<p style="top:135.6pt;left:278.8pt;font-size:11.0pt">divided into five Game Turns. Each game </p>
<p style="top:148.7pt;left:278.8pt;font-size:11.0pt">turn has three (3) Phases, played in the </p>
<p style="top:161.9pt;left:278.8pt;font-size:11.0pt">sequence below. </p>
<p style="top:185.3pt;left:278.8pt;font-size:12.2pt"><b><span style="color:#9d0a0e">2.1 CARD PHASE</span></b></p>
<p style="top:199.4pt;left:297.5pt;font-size:11.0pt">There are twenty-seven (27) cards: </p>
<p style="top:212.5pt;left:278.8pt;font-size:11.0pt">twenty (20) Command Cards and seven (7) </p>
<p style="top:225.6pt;left:278.8pt;font-size:11.0pt">God Cards. At the beginning of each Year, </p>
<p style="top:238.7pt;left:278.8pt;font-size:11.0pt">the cards are shuffled and six (6) cards are </p>
<p style="top:251.9pt;left:278.8pt;font-size:11.0pt">dealt to each player. Examine your cards and </p>
<p style="top:265.0pt;left:278.8pt;font-size:11.0pt">discard one (1). The discard is not revealed. </p>
<p style="top:281.9pt;left:297.5pt;font-size:11.0pt">Each player starts a game turn by playing </p>
<p style="top:295.0pt;left:278.8pt;font-size:11.0pt"><b><i>one</i></b><b> (1) </b>card <i>face-down</i>. The cards are then </p>
<p style="top:308.1pt;left:278.8pt;font-size:11.0pt">revealed. Card values are Moves (banner) </p>
<p style="top:321.2pt;left:278.8pt;font-size:11.0pt">and Levies (circles on banner staff). The </p>
<p style="top:334.4pt;left:278.8pt;font-size:11.0pt">player with the <b><i>higher</i></b> Move card is Player 1 </p>
<p style="top:347.5pt;left:278.8pt;font-size:11.0pt">that game turn.</p>
<p style="top:364.4pt;left:285.0pt;font-size:11.0pt"><b><i>IMPORTANT:</i></b><i> If the cards played are equal </i></p>
<p style="top:377.5pt;left:285.0pt;font-size:11.0pt"><i>(Move number) </i><i>Caesar</i><i> is Player 1.</i></p>
<p style="top:394.4pt;left:285.2pt;font-size:11.0pt"><b><i>EXCEPTION: </i></b><i>C</i><i>aesar</i><i> is always Player 1 </i></p>
<p style="top:407.5pt;left:285.0pt;font-size:11.0pt"><i>on the </i><b><i>first</i></b><i> turn of the </i><b><i>game</i></b><i> (in 705) </i></p>
<p style="top:420.6pt;left:285.0pt;font-size:11.0pt"><i>regardless of the cards played.</i></p>
<p style="top:437.5pt;left:297.5pt;font-size:11.0pt">God cards have a special action defined </p>
<p style="top:450.6pt;left:278.8pt;font-size:11.0pt">on the card. <b><i>The player of a God card is </i></b></p>
<p style="top:463.7pt;left:278.8pt;font-size:11.0pt"><b><i>Player 1. </i></b><i>However, </i>if <b><i>both</i></b> plays are God </p>
<p style="top:476.9pt;left:278.8pt;font-size:11.0pt">cards, both of them are <b><i>cancelled</i></b> and the </p>
<p style="top:490.0pt;left:278.8pt;font-size:11.0pt"><b><i>game turn</i></b> ends.</p>
<p style="top:506.9pt;left:285.0pt;font-size:11.0pt"><b><i>NOTE: </i></b><i>Players must play a card, but can </i></p>
<p style="top:520.0pt;left:285.0pt;font-size:11.0pt"><i>elect to take fewer moves/levies if desired. </i></p>
<p style="top:533.1pt;left:285.0pt;font-size:11.0pt"><i>Commands cannot be saved for future </i></p>
<p style="top:546.2pt;left:285.0pt;font-size:11.0pt"><i>use. </i></p>
<p style="top:569.6pt;left:278.8pt;font-size:12.2pt"><b><span style="color:#9d0a0e">2.2 COMMAND PHASE</span></b></p>
<p style="top:583.7pt;left:297.5pt;font-size:11.0pt">Player 1 moves and levies (or executes a </p>
<p style="top:596.9pt;left:278.8pt;font-size:11.0pt">God card), then Player 2 moves and levies. </p>
<p style="top:613.7pt;left:297.5pt;font-size:11.0pt">• Move: Each move allows one Group </p>
<p style="top:626.9pt;left:278.8pt;font-size:11.0pt">(any/all blocks in one location) to move one </p>
<p style="top:640.0pt;left:278.8pt;font-size:11.0pt">or two cities; Navis can move one or two </p>
<p style="top:653.1pt;left:278.8pt;font-size:11.0pt">seas. Blocks cannot attack or reinforce if they </p>
<p style="top:666.2pt;left:278.8pt;font-size:11.0pt">move two cities/seas. Blocks entering a city </p>
<p style="top:679.4pt;left:278.8pt;font-size:11.0pt">or sea containing enemy blocks must stop. </p>
<p style="top:692.5pt;left:278.8pt;font-size:11.0pt">See 6.0 for details. </p>
<p style="top:709.7pt;left:285.0pt;font-size:11.0pt"><b>• Levy:</b> for each Levy, one (1) step can </p>
<p style="top:723.2pt;left:291.2pt;font-size:11.0pt">be added to one (1) existing block, or </p>
<p style="top:736.7pt;left:291.2pt;font-size:11.0pt">one (1) new block can be chosen from a </p>
<p style="top:750.2pt;left:291.2pt;font-size:11.0pt">player's Levy Pool and deployed on the </p>
<p style="top:763.7pt;left:291.2pt;font-size:11.0pt">map at strength I. Choose levies after </p>
<p style="top:776.9pt;left:291.2pt;font-size:11.0pt">all movement is complete – they cannot </p>
<p style="top:790.0pt;left:291.2pt;font-size:11.0pt">move in the same turn. See 6.4 for details. </p>
<p style="top:813.4pt;left:278.8pt;font-size:12.2pt"><b><span style="color:#9d0a0e">2.3 BATTLE PHASE</span></b></p>
<p style="top:827.5pt;left:297.5pt;font-size:11.0pt">Battles are fought between opposing </p>
<p style="top:840.6pt;left:278.8pt;font-size:11.0pt">blocks in the same city or sea. They are </p>
<p style="top:853.7pt;left:278.8pt;font-size:11.0pt">fought one at a time in any sequence </p>
<p style="top:866.9pt;left:278.8pt;font-size:11.0pt">determined by Player 1. See: 7.0 for details.</p>
<p style="top:57.2pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:932.5pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:929.6pt;left:380.1pt;font-size:14.6pt"><b>1</b><b> </b></p>
<p style="top:932.5pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:385.7pt;left:60.0pt;font-size:17.1pt"><b><span style="color:#9d0a0e">1.0 INTRODUCTION</span></b></p>
<p style="top:407.5pt;left:78.8pt;font-size:11.0pt"><b><i>Julius Caesar </i></b>brings the drama of the </p>
<p style="top:420.6pt;left:60.0pt;font-size:11.0pt">most famous and significant Roman Civil War </p>
<p style="top:433.7pt;left:60.0pt;font-size:11.0pt">(49–45 BC) to life. Players take control of the </p>
<p style="top:446.9pt;left:60.0pt;font-size:11.0pt">legions of Caesar or Pompey and fight to </p>
<p style="top:460.0pt;left:60.0pt;font-size:11.0pt">determine the future of Rome – republic or </p>
<p style="top:473.1pt;left:60.0pt;font-size:11.0pt">empire. </p>
<p style="top:496.5pt;left:60.0pt;font-size:12.2pt"><b><span style="color:#9d0a0e">1.1 PLAYERS</span></b></p>
<p style="top:510.6pt;left:78.8pt;font-size:11.0pt">The game is intended for two players. </p>
<p style="top:523.7pt;left:60.0pt;font-size:11.0pt">One player represents Julius Caesar, the </p>
<p style="top:536.9pt;left:60.0pt;font-size:11.0pt">other Pompey the Great.</p>
<p style="top:560.3pt;left:60.0pt;font-size:12.2pt"><b><span style="color:#9d0a0e">1.2 VICTORY</span></b></p>
<p style="top:574.4pt;left:78.8pt;font-size:11.0pt">The game is divided into five (5) Years, </p>
<p style="top:587.5pt;left:60.0pt;font-size:11.0pt">each with five (5) game turns. After each </p>
<p style="top:600.6pt;left:60.0pt;font-size:11.0pt">Year ends, a Winter Turn (8.0) is played when </p>
<p style="top:613.7pt;left:60.0pt;font-size:11.0pt">players check to see if either has won. </p>
<p style="top:630.6pt;left:78.8pt;font-size:11.0pt">To determine victory, after each Year, </p>
<p style="top:643.7pt;left:60.0pt;font-size:11.0pt">players score the total value of <b>Friendly</b> cities, </p>
<p style="top:656.9pt;left:60.0pt;font-size:11.0pt">plus one Victory Point (<b>1</b><b>vp)</b> for each enemy </p>
<p style="top:670.0pt;left:60.0pt;font-size:11.0pt">leader killed. To win, a player must have 10 </p>
<p style="top:683.1pt;left:60.0pt;font-size:11.0pt">(or more) VPs. </p>
<p style="top:700.0pt;left:78.8pt;font-size:11.0pt">If neither player wins by the end of Year </p>
<p style="top:713.1pt;left:60.0pt;font-size:11.0pt">5, the winner is the player with the <b><i>higher</i></b> </p>
<p style="top:726.2pt;left:60.0pt;font-size:11.0pt">VPs. If still tied, the game is won by the </p>
<p style="top:739.4pt;left:60.0pt;font-size:11.0pt">player holding <b>Rome</b>. Otherwise the game is </p>
<p style="top:752.5pt;left:60.0pt;font-size:11.0pt">a draw. </p>
<p style="top:775.9pt;left:60.0pt;font-size:12.2pt"><b><span style="color:#9d0a0e">1.3 CONTENTS</span></b></p>
<p style="top:790.4pt;left:66.2pt;font-size:11.0pt">• Game Map</p>
<p style="top:807.6pt;left:66.2pt;font-size:11.0pt">• 63 blocks (31 tan, 31 green, 1 blue). </p>
<p style="top:824.9pt;left:66.2pt;font-size:11.0pt">• Label sheet (for blocks)</p>
<p style="top:842.1pt;left:66.2pt;font-size:11.0pt">• Cards (27)</p>
<p style="top:859.4pt;left:66.2pt;font-size:11.0pt">• Dice (4)</p>
<p style="top:876.6pt;left:66.2pt;font-size:11.0pt">• These Rules</p>
<p style="top:639.7pt;left:623.3pt;font-size:11.0pt"><b>LEVY 2</b></p>
<p style="top:612.2pt;left:560.6pt;font-size:11.0pt"><b>MOVE 3</b></p>
<p style="top:859.5pt;left:573.1pt;font-size:15.8pt"><b>COMMAND</b></p>
</div>
<div id="page2" style="background-image:url('rules2.jpg');width:765.0pt;height:990.0pt">
<p style="top:57.2pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:933.7pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:930.8pt;left:380.1pt;font-size:14.6pt"><b>2</b><b> </b></p>
<p style="top:933.7pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.22 Legions</span></b></p>
<p style="top:115.4pt;left:356.2pt;font-size:11.0pt">Legions are identified by </p>
<p style="top:128.9pt;left:356.2pt;font-size:11.0pt">an Eagle icon. They have </p>
<p style="top:142.4pt;left:356.2pt;font-size:11.0pt">a number ID on the top </p>
<p style="top:155.9pt;left:356.2pt;font-size:11.0pt">left, and a levy city on </p>
<p style="top:169.4pt;left:356.2pt;font-size:11.0pt">the bottom. Legions have </p>
<p style="top:182.9pt;left:356.2pt;font-size:11.0pt">combat ratings of C2, C3, or </p>
<p style="top:196.4pt;left:282.5pt;font-size:11.0pt">C4, with veteran legions having the higher </p>
<p style="top:209.9pt;left:282.5pt;font-size:11.0pt">ratings. </p>
<p style="top:233.3pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.23 Auxilia</span></b></p>
<p style="top:247.7pt;left:356.2pt;font-size:11.0pt">Both players have four (4)</p>
<p style="top:261.2pt;left:356.2pt;font-size:11.0pt">Auxilia, two light infantry </p>
<p style="top:274.7pt;left:356.2pt;font-size:11.0pt">(B1) and two archers (A1). </p>
<p style="top:288.2pt;left:356.2pt;font-size:11.0pt">These troops can be raised </p>
<p style="top:301.7pt;left:356.2pt;font-size:11.0pt">in any Friendly city. </p>
<p style="top:342.0pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.24 Equitatus</span></b></p>
<p style="top:356.5pt;left:356.2pt;font-size:11.0pt">Equitatus (cavalry) are </p>
<p style="top:370.0pt;left:356.2pt;font-size:11.0pt">rated B2 or B3. Like legions, </p>
<p style="top:383.5pt;left:356.2pt;font-size:11.0pt">they are raised in specific </p>
<p style="top:397.0pt;left:356.2pt;font-size:11.0pt">Friendly cities. These cities </p>
<p style="top:410.5pt;left:356.2pt;font-size:11.0pt">have a nearby equitatus </p>
<p style="top:424.0pt;left:356.2pt;font-size:11.0pt">symbol on the map. Caesar </p>
<p style="top:437.5pt;left:282.5pt;font-size:11.0pt">has four (4) equitatus. Pompey has three (3) </p>
<p style="top:451.0pt;left:282.5pt;font-size:11.0pt">equitatus, but also one Elephant (7.41). </p>
<p style="top:474.4pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.25 Ballista</span></b></p>
<p style="top:488.9pt;left:356.9pt;font-size:11.0pt">Each player has one (1) </p>
<p style="top:502.4pt;left:356.9pt;font-size:11.0pt">Ballista. They have different </p>
<p style="top:515.9pt;left:356.9pt;font-size:11.0pt">combat values for defense </p>
<p style="top:529.4pt;left:356.9pt;font-size:11.0pt">and offense, see 7.42. They </p>
<p style="top:542.9pt;left:356.9pt;font-size:11.0pt">can be built in any Friendly </p>
<p style="top:556.4pt;left:356.9pt;font-size:11.0pt">city. </p>
<p style="top:579.8pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.26 Navis</span></b></p>
<p style="top:594.2pt;left:355.9pt;font-size:11.0pt">Players have five (5) Navis </p>
<p style="top:607.7pt;left:355.9pt;font-size:11.0pt">to represent the warships </p>
<p style="top:621.2pt;left:355.9pt;font-size:11.0pt">used by both sides. They </p>
<p style="top:634.7pt;left:355.9pt;font-size:11.0pt">have D2 or D3 combat. In </p>
<p style="top:648.2pt;left:355.9pt;font-size:11.0pt">a sea battle this "D" rating </p>
<p style="top:661.7pt;left:355.9pt;font-size:11.0pt">has no impact since all </p>
<p style="top:675.2pt;left:282.5pt;font-size:11.0pt">Navis have the same rating, but they are </p>
<p style="top:688.7pt;left:282.5pt;font-size:11.0pt">vulnerable in land battles. Navis must be </p>
<p style="top:702.2pt;left:282.5pt;font-size:11.0pt">built in Friendly major ports, identified on </p>
<p style="top:715.7pt;left:282.5pt;font-size:11.0pt">the map with a Navis symbol.</p>
<p style="top:739.1pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.27 Cleopatra</span></b></p>
<p style="top:753.6pt;left:358.1pt;font-size:11.0pt">Cleopatra represents the </p>
<p style="top:767.1pt;left:358.1pt;font-size:11.0pt">forces of Egypt and is rated </p>
<p style="top:780.6pt;left:358.1pt;font-size:11.0pt">C1. She is not a leader per </p>
<p style="top:794.1pt;left:358.1pt;font-size:11.0pt">these rules. Cleopatra starts </p>
<p style="top:807.6pt;left:358.1pt;font-size:11.0pt">play on the Pompey side, </p>
<p style="top:821.1pt;left:358.1pt;font-size:11.0pt">but can fight for either side. </p>
<p style="top:834.6pt;left:282.5pt;font-size:11.0pt">See: 7.52. </p>
<p style="top:57.2pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:100.7pt;left:61.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">3.0 ARMIES</span></b></p>
<p style="top:122.5pt;left:80.0pt;font-size:11.0pt">One label must be attached to the face </p>
<p style="top:135.6pt;left:61.2pt;font-size:11.0pt">of each block. Lightly position each label, </p>
<p style="top:148.7pt;left:61.2pt;font-size:11.0pt">ensure it is straight, and then press firmly to </p>
<p style="top:161.9pt;left:61.2pt;font-size:11.0pt">the block. </p>
<p style="top:179.1pt;left:61.2pt;font-size:11.0pt"><b> </b></p>
<p style="top:179.1pt;left:80.0pt;font-size:11.0pt"><b> </b></p>
<p style="top:179.1pt;left:133.8pt;font-size:11.0pt"><b>Blocks </b></p>
<p style="top:179.1pt;left:185.0pt;font-size:11.0pt"><b>Labels</b></p>
<p style="top:193.9pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:193.9pt;left:80.0pt;font-size:11.0pt">Caesar </p>
<p style="top:193.9pt;left:133.8pt;font-size:11.0pt">Tan </p>
<p style="top:193.9pt;left:185.0pt;font-size:11.0pt">Red</p>
<p style="top:208.6pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:208.6pt;left:80.0pt;font-size:11.0pt">Pompey </p>
<p style="top:208.6pt;left:133.8pt;font-size:11.0pt">Green </p>
<p style="top:208.6pt;left:185.0pt;font-size:11.0pt">Ochre</p>
<p style="top:223.4pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:223.4pt;left:80.0pt;font-size:11.0pt">Cleopatra Blue </p>
<p style="top:223.4pt;left:185.0pt;font-size:11.0pt">Blue</p>
<p style="top:244.3pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.1 BLOCK DATA</span></b></p>
<p style="top:264.9pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.11 Strength</span></b></p>
<p style="top:279.0pt;left:80.0pt;font-size:11.0pt">The current strength of a block is the </p>
<p style="top:292.1pt;left:61.2pt;font-size:11.0pt">Roman numeral on the top edge when the </p>
<p style="top:305.2pt;left:61.2pt;font-size:11.0pt">block stands upright. Blocks can have a </p>
<p style="top:318.4pt;left:61.2pt;font-size:11.0pt">maximum strength of IV, III, or II.</p>
<p style="top:335.2pt;left:80.0pt;font-size:11.0pt">Strength determines how many six-sided </p>
<p style="top:348.4pt;left:61.2pt;font-size:11.0pt">dice (d6) are rolled for a block in combat. A </p>
<p style="top:361.5pt;left:61.2pt;font-size:11.0pt">block at strength IV rolls 4d6 (four six-sided </p>
<p style="top:374.6pt;left:61.2pt;font-size:11.0pt">dice); a block at strength I rolls 1d6. </p>
<p style="top:391.5pt;left:80.0pt;font-size:11.0pt">For each hit taken in combat, the block’s </p>
<p style="top:404.6pt;left:61.2pt;font-size:11.0pt">strength is reduced by rotating the block </p>
<p style="top:417.7pt;left:61.2pt;font-size:11.0pt">90 degrees counter-clockwise. The sidebar </p>
<p style="top:430.9pt;left:61.2pt;font-size:11.0pt">shows the same block at strength III, II, and I.</p>
<p style="top:454.3pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.12 Combat Rating</span></b></p>
<p style="top:468.4pt;left:80.0pt;font-size:11.0pt">The Combat Rating is indicated by a </p>
<p style="top:481.5pt;left:61.2pt;font-size:11.0pt">letter and number, such as A2 or B3. The </p>
<p style="top:494.6pt;left:61.2pt;font-size:11.0pt">letter (initiative) determines when a block </p>
<p style="top:507.7pt;left:61.2pt;font-size:11.0pt">has a battle turn. All A blocks go first, then </p>
<p style="top:520.9pt;left:61.2pt;font-size:11.0pt">all B blocks, then all C blocks. If tied, the </p>
<p style="top:534.0pt;left:61.2pt;font-size:11.0pt">Defender has the first battle turn. The </p>
<p style="top:547.1pt;left:61.2pt;font-size:11.0pt">number (firepower) indicates the maximum </p>
<p style="top:560.2pt;left:61.2pt;font-size:11.0pt">roll that will score a hit. See 7.3. </p>
<p style="top:583.6pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.13 Name</span></b></p>
<p style="top:597.7pt;left:80.0pt;font-size:11.0pt">Legions have a city name where this </p>
<p style="top:610.9pt;left:61.2pt;font-size:11.0pt">block must be recruited when deployed from </p>
<p style="top:624.0pt;left:61.2pt;font-size:11.0pt">the Levy Pool.</p>
<p style="top:647.4pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.2 BLOCK TYPES</span></b></p>
<p style="top:668.0pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">3.21 Leaders</span></b></p>
<p style="top:682.5pt;left:135.0pt;font-size:11.0pt">Both sides have three (3) </p>
<p style="top:696.0pt;left:135.0pt;font-size:11.0pt">named leaders:</p>
<p style="top:713.2pt;left:135.0pt;font-size:11.0pt">Caesar, Antonius, Octavian</p>
<p style="top:730.5pt;left:135.0pt;font-size:11.0pt">Pompey, Scipio, Brutus.</p>
<p style="top:747.7pt;left:135.0pt;font-size:11.0pt">Leader blocks include their </p>
<p style="top:761.2pt;left:61.2pt;font-size:11.0pt">significant guards, generally elite cavalry. </p>
<p style="top:774.7pt;left:61.2pt;font-size:11.0pt">Players start the game with two leaders. The </p>
<p style="top:788.2pt;left:61.2pt;font-size:11.0pt">third may be brought into play if a leader is </p>
<p style="top:801.7pt;left:61.2pt;font-size:11.0pt">killed (see: 7.51).</p>
<p style="top:100.9pt;left:506.2pt;font-size:11.0pt"><b>Label Sheet</b></p>
<p style="top:113.9pt;left:506.2pt;font-size:9.7pt">The red labels on the die-cut sheet are for Caesar </p>
<p style="top:125.9pt;left:506.2pt;font-size:9.7pt">(tan blocks) and ochre labels for Pompey (green </p>
<p style="top:137.9pt;left:506.2pt;font-size:9.7pt">blocks). The Cleopatra label goes on the blue </p>
<p style="top:149.9pt;left:506.2pt;font-size:9.7pt">block.</p>
<p style="top:168.3pt;left:506.2pt;font-size:11.0pt"><b>Fog-of-War</b></p>
<p style="top:181.3pt;left:506.2pt;font-size:9.7pt">Surprise is an exciting aspect of this game. </p>
<p style="top:193.3pt;left:506.2pt;font-size:9.7pt">Except when fighting a battle, active blocks stand </p>
<p style="top:205.3pt;left:506.2pt;font-size:9.7pt">upright facing the owner. This promotes bluff and </p>
<p style="top:217.3pt;left:506.2pt;font-size:9.7pt">innovative strategies because players are uncertain </p>
<p style="top:229.3pt;left:506.2pt;font-size:9.7pt">of the strength or identity of an enemy block.</p>
<p style="top:263.4pt;left:506.2pt;font-size:11.0pt"><b><i>Equitatus</i></b></p>
<p style="top:276.4pt;left:506.2pt;font-size:9.7pt"><i>Romans were never considered exceptionally </i></p>
<p style="top:288.4pt;left:506.2pt;font-size:9.7pt"><i>good horsemen, at least not after the connection </i></p>
<p style="top:300.4pt;left:506.2pt;font-size:9.7pt"><i>between cavalry and the aristocracy was </i></p>
<p style="top:312.4pt;left:506.2pt;font-size:9.7pt"><i>abandoned. By the time of late Republic, the </i></p>
<p style="top:324.4pt;left:506.2pt;font-size:9.7pt"><i>Equitatus was generally made up of non-Roman </i></p>
<p style="top:336.4pt;left:506.2pt;font-size:9.7pt"><i>horsemen from Gallia, Germania, Hispania, </i></p>
<p style="top:348.4pt;left:506.2pt;font-size:9.7pt"><i>Numidia, Syria, and Thracia. Caesar used Germanic </i></p>
<p style="top:360.4pt;left:506.2pt;font-size:9.7pt"><i>cavalry to fight the Gauls and also to serve as his </i></p>
<p style="top:372.4pt;left:506.2pt;font-size:9.7pt"><i>formidable bodyguard. </i></p>
<p style="top:406.5pt;left:506.2pt;font-size:11.0pt"><b><i>Elephants</i></b></p>
<p style="top:419.5pt;left:506.2pt;font-size:9.7pt"><i>There is one Elephant block for </i><i>Pompey.</i><i> </i><i>Caesar</i><i> </i></p>
<p style="top:431.5pt;left:506.2pt;font-size:9.7pt"><i>would not have elephants in his army believing </i></p>
<p style="top:443.5pt;left:506.2pt;font-size:9.7pt"><i>them to be fragile and unpredictable. </i></p>
<p style="top:853.4pt;left:668.8pt;font-size:11.0pt"><b>COMBAT</b> </p>
<p style="top:866.5pt;left:680.6pt;font-size:11.0pt">(C3)</p>
<p style="top:705.1pt;left:639.5pt;font-size:11.0pt"><b>Strength I</b></p>
<p style="top:705.3pt;left:508.8pt;font-size:10.7pt"><b>Strength III </b></p>
<p style="top:705.1pt;left:575.7pt;font-size:11.0pt"><b>Strength II</b></p>
<p style="top:628.1pt;left:506.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">STEP REDUCTION</span></b></p>
<p style="top:739.7pt;left:632.4pt;font-size:11.0pt"><b>STRENGTH</b> </p>
<p style="top:752.8pt;left:626.9pt;font-size:11.0pt">(Maximum III)</p>
<p style="top:740.9pt;left:531.6pt;font-size:11.0pt"><b>LEGION</b> </p>
<p style="top:754.0pt;left:520.7pt;font-size:11.0pt"> (13)</p>
<p style="top:846.5pt;left:500.0pt;font-size:11.0pt"><b>LEVY CITY</b></p>
<p style="top:860.3pt;left:499.8pt;font-size:11.0pt">(RAVENNA)</p>
</div>
<div id="page3" style="background-image:url('rules3.jpg');width:765.0pt;height:990.0pt">
<p style="top:100.7pt;left:61.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">4.0 MAPBOARD</span></b></p>
<p style="top:122.5pt;left:80.0pt;font-size:11.0pt">The mapboard depicts the </p>
<p style="top:135.6pt;left:61.2pt;font-size:11.0pt">Mediterranean Sea and surrounding </p>
<p style="top:148.7pt;left:61.2pt;font-size:11.0pt">territory. The Caesar player sits at the north </p>
<p style="top:161.9pt;left:61.2pt;font-size:11.0pt">edge of the map, Pompey player at the south </p>
<p style="top:175.0pt;left:61.2pt;font-size:11.0pt">edge.</p>
<p style="top:198.4pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.1 LOCATIONS</span></b></p>
<p style="top:212.5pt;left:80.0pt;font-size:11.0pt">Blocks on the map must be located on </p>
<p style="top:225.6pt;left:61.2pt;font-size:11.0pt">cities or seas. Navis must be located on seas </p>
<p style="top:238.7pt;left:61.2pt;font-size:11.0pt">or in <b><i>port</i></b> cities. </p>
<p style="top:262.1pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.2 CITIES</span></b></p>
<p style="top:276.2pt;left:80.0pt;font-size:11.0pt">Cities govern the movement and </p>
<p style="top:289.4pt;left:61.2pt;font-size:11.0pt">location of blocks. Eleven cities have a value </p>
<p style="top:302.5pt;left:61.2pt;font-size:11.0pt">of 1 or 2. These numbers (total 13) are </p>
<p style="top:315.6pt;left:61.2pt;font-size:11.0pt"><b><i>Victory Points (VPs). </i></b>The numbers are also </p>
<p style="top:328.7pt;left:61.2pt;font-size:11.0pt">significant for Wintering (8.4). </p>
<p style="top:352.1pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.21 City Control</span></b></p>
<p style="top:366.2pt;left:80.0pt;font-size:11.0pt">The control status of a city can be: </p>
<p style="top:383.1pt;left:67.5pt;font-size:11.0pt"><b>Friendly: </b>Occupied by one or more of </p>
<p style="top:396.2pt;left:67.5pt;font-size:11.0pt">your blocks. </p>
<p style="top:413.1pt;left:67.5pt;font-size:11.0pt"><b>Enemy: </b>Friendly to your opponent. </p>
<p style="top:430.0pt;left:67.5pt;font-size:11.0pt"><b>Vacant: </b>Friendly to neither player.</p>
<p style="top:446.9pt;left:67.5pt;font-size:11.0pt"><b>Contested: </b>Contains blocks of both </p>
<p style="top:460.0pt;left:67.5pt;font-size:11.0pt">players, awaiting Battle Resolution. </p>
<p style="top:476.9pt;left:67.5pt;font-size:11.0pt"><b><i>IMPORTANT: </i></b><i>Changes to city control are </i></p>
<p style="top:490.0pt;left:67.5pt;font-size:11.0pt"><i>effective </i><b><i>immediately</i></b><i>. Friendly cities </i></p>
<p style="top:503.1pt;left:67.5pt;font-size:11.0pt"><i>become immediately neutral when left </i></p>
<p style="top:516.2pt;left:67.5pt;font-size:11.0pt"><i>Vacant. Similarly, attacking an Enemy city, </i></p>
<p style="top:529.4pt;left:67.5pt;font-size:11.0pt"><i>even with one block, immediately converts </i></p>
<p style="top:542.5pt;left:67.5pt;font-size:11.0pt"><i>it to </i><b><i>Contested</i></b><i> status until the battle is </i></p>
<p style="top:555.6pt;left:67.5pt;font-size:11.0pt"><i>resolved. </i></p>
<p style="top:579.0pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.3 ROADS</span></b></p>
<p style="top:593.1pt;left:80.0pt;font-size:11.0pt">Cities are connected by important roads </p>
<p style="top:606.2pt;left:61.2pt;font-size:11.0pt">of the period, some of them named for </p>
<p style="top:619.4pt;left:61.2pt;font-size:11.0pt">historical interest. Blocks move from one city </p>
<p style="top:632.5pt;left:61.2pt;font-size:11.0pt">to another via these roads.</p>
<p style="top:652.1pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.31 Road Classes</span></b></p>
<p style="top:666.2pt;left:80.0pt;font-size:11.0pt">Two classes of road are depicted, <b><i>Major</i></b> </p>
<p style="top:679.4pt;left:61.2pt;font-size:11.0pt">(solid line) and <b><i>Minor</i></b> (dotted line). In one </p>
<p style="top:692.5pt;left:61.2pt;font-size:11.0pt">game turn, four (4) blocks can move along a </p>
<p style="top:705.6pt;left:61.2pt;font-size:11.0pt">Major Road, but only two (2) along a Minor </p>
<p style="top:718.7pt;left:61.2pt;font-size:11.0pt">road. See 6.11. </p>
<p style="top:738.4pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.32 Straits</span></b></p>
<p style="top:752.5pt;left:80.0pt;font-size:11.0pt">Four straits appear on the map, each </p>
<p style="top:765.6pt;left:61.2pt;font-size:11.0pt">identified by a blue arrow: <i>Herculeum, </i></p>
<p style="top:778.7pt;left:61.2pt;font-size:11.0pt"><i>Messana, Hellespontus, and Bosphorus. </i>Each </p>
<p style="top:791.9pt;left:61.2pt;font-size:11.0pt">game turn, two (2) land blocks may cross </p>
<p style="top:805.0pt;left:61.2pt;font-size:11.0pt"><i>each</i> strait, but only one (1) land block when </p>
<p style="top:818.1pt;left:61.2pt;font-size:11.0pt">the city on the other side is defended. </p>
<p style="top:835.0pt;left:80.0pt;font-size:11.0pt">Navis ignore straits when moving from </p>
<p style="top:848.1pt;left:61.2pt;font-size:11.0pt">one sea to an adjacent sea. Control of cities </p>
<p style="top:861.2pt;left:61.2pt;font-size:11.0pt">on either side of a strait has no effect on </p>
<p style="top:874.4pt;left:61.2pt;font-size:11.0pt">Navis or Amphibious movement. </p>
<p style="top:100.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.4 SEAS</span></b></p>
<p style="top:115.0pt;left:301.2pt;font-size:11.0pt">There are nine (9) seas: <i>Atlanticus</i>, </p>
<p style="top:128.1pt;left:282.5pt;font-size:11.0pt"><i>Hispanum, Tyrrhenum, Internum, </i></p>
<p style="top:141.2pt;left:282.5pt;font-size:11.0pt"><i>Hadriaticum, Egypticum, Aegaeum, </i></p>
<p style="top:154.4pt;left:282.5pt;font-size:11.0pt"><i>Propontis, </i>and<i> Pontus Euxinus. </i>These seas </p>
<p style="top:167.5pt;left:282.5pt;font-size:11.0pt">can only be occupied and controlled by </p>
<p style="top:180.6pt;left:282.5pt;font-size:11.0pt">Navis.</p>
<p style="top:197.5pt;left:288.8pt;font-size:11.0pt"><b>Friendly: </b>Seas occupied by one or more of </p>
<p style="top:210.6pt;left:288.8pt;font-size:11.0pt">your Navis. </p>
<p style="top:227.5pt;left:288.8pt;font-size:11.0pt"><b>Enemy: </b>Seas occupied by one or more </p>
<p style="top:240.6pt;left:288.8pt;font-size:11.0pt">enemy Navis.</p>
<p style="top:257.5pt;left:288.8pt;font-size:11.0pt"><b>Vacant: </b>Friendly to neither player.</p>
<p style="top:274.4pt;left:288.8pt;font-size:11.0pt"><b>Contested: </b>Seas containing Navis of both </p>
<p style="top:287.5pt;left:288.8pt;font-size:11.0pt">players, awaiting Battle Resolution.</p>
<p style="top:304.4pt;left:288.8pt;font-size:11.0pt"><b><i>SEA CONTROL: </i></b><i>As with cities, changes to</i> </p>
<p style="top:317.5pt;left:288.8pt;font-size:11.0pt"><i>sea control are effective immediately. A </i></p>
<p style="top:330.6pt;left:288.8pt;font-size:11.0pt"><i>sea </i><b><i>immediately</i></b><i> becomes neutral when it </i></p>
<p style="top:343.7pt;left:288.8pt;font-size:11.0pt"><i>is left Vacant.</i></p>
<p style="top:363.4pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.41 Islands</span></b></p>
<p style="top:377.5pt;left:301.3pt;font-size:11.0pt">The islands of <i>Corsica</i>, <i>Sardinia</i>, </p>
<p style="top:390.6pt;left:282.5pt;font-size:11.0pt"><i>Sicilia</i>, <i>Creta</i>, and <i>Cyprus</i> are <b><i>playable</i></b>. </p>
<p style="top:403.7pt;left:282.5pt;font-size:11.0pt">All other islands are unplayable. Moves </p>
<p style="top:416.9pt;left:282.5pt;font-size:11.0pt">to-from playable islands requires a Navis or </p>
<p style="top:430.0pt;left:282.5pt;font-size:11.0pt">Amphibious Move (6.3).</p>
<p style="top:453.4pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">4.42 Ports</span></b></p>
<p style="top:467.5pt;left:301.3pt;font-size:11.0pt">All cities located on a coastline are </p>
<p style="top:480.6pt;left:282.5pt;font-size:11.0pt">ports. Some ports have a Navis symbol that </p>
<p style="top:493.7pt;left:282.5pt;font-size:11.0pt">designates a <b><i>major port</i></b>, which are essential </p>
<p style="top:506.9pt;left:282.5pt;font-size:11.0pt">for building Navis. </p>
<p style="top:523.7pt;left:301.3pt;font-size:11.0pt">Ports located on sea borders allow </p>
<p style="top:536.9pt;left:282.5pt;font-size:11.0pt">access to two (2) seas. <b><i>Utica and Creta have </i></b></p>
<p style="top:550.0pt;left:282.5pt;font-size:11.0pt"><b><i>access to three (3) seas.</i></b><b> </b>See sidebar for </p>
<p style="top:563.1pt;left:282.5pt;font-size:11.0pt">clarification. </p>
<p style="top:57.2pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:932.5pt;left:61.2pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:929.6pt;left:372.6pt;font-size:14.6pt"><b>3</b><b> </b></p>
<p style="top:932.5pt;left:639.2pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.9pt;left:506.2pt;font-size:11.0pt"><b>Battle Sites</b></p>
<p style="top:113.9pt;left:506.2pt;font-size:9.7pt">The main battle sites are shown on the map, red </p>
<p style="top:125.9pt;left:506.2pt;font-size:9.7pt">for victories by Caesar and green for Pompey. </p>
<p style="top:144.3pt;left:506.2pt;font-size:11.0pt"><b>Ports</b></p>
<p style="top:157.3pt;left:506.2pt;font-size:9.7pt">Below is a list of ports and their adjacent seas. </p>
<p style="top:169.3pt;left:506.2pt;font-size:9.7pt">Major ports are indicated in Caps. </p>
<p style="top:185.0pt;left:506.2pt;font-size:9.7pt"><b> </b></p>
<p style="top:185.0pt;left:551.5pt;font-size:9.7pt"><b>SEA PORTS</b></p>
<p style="top:201.0pt;left:506.2pt;font-size:9.5pt"> </p>
<p style="top:201.0pt;left:526.6pt;font-size:9.5pt"><b>Atlanticus:</b> Burdigala, Gades, Olisipo, Portus, </p>
<p style="top:213.0pt;left:576.2pt;font-size:9.5pt">Sala, Tingis. </p>
<p style="top:226.2pt;left:506.2pt;font-size:9.5pt"> </p>
<p style="top:226.2pt;left:526.0pt;font-size:9.5pt"><b>Hispanum: </b>Caralis, Carthago Nova, Genua, </p>
<p style="top:238.2pt;left:576.2pt;font-size:9.5pt">Iomnium, Massilia, Narbo, Siga, </p>
<p style="top:250.2pt;left:576.2pt;font-size:9.5pt">Tarraco, Tingis, Utica. </p>
<p style="top:263.5pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:263.5pt;left:522.7pt;font-size:9.5pt"><b>Tyrrhenum</b>: Aleria, Caralis, Genua, Lilybaeum, </p>
<p style="top:275.5pt;left:576.2pt;font-size:9.5pt">Messana, Neapolis, Rhegium, </p>
<p style="top:287.5pt;left:576.2pt;font-size:9.5pt">Rome, Utica.</p>
<p style="top:300.7pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:300.7pt;left:528.9pt;font-size:9.5pt"><b>Internum:</b><b><i> </i></b>Ambracia, Brundisium, Creta, </p>
<p style="top:312.7pt;left:576.2pt;font-size:9.5pt">Cyrene, Lilybaeum, Messana, </p>
<p style="top:324.7pt;left:576.2pt;font-size:9.5pt">Pylos, Rhegium, Syracuse, Tacape, </p>
<p style="top:336.7pt;left:576.2pt;font-size:9.5pt">Thubactus, Utica. </p>
<p style="top:350.0pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:350.0pt;left:517.8pt;font-size:9.5pt"><b>Hadriaticum:</b><b><i> </i></b>Aquileia,<b><i> </i></b>Brundisium, Dyrrachium, </p>
<p style="top:362.0pt;left:576.2pt;font-size:9.5pt">Ravenna, Salone, Sipontum. </p>
<p style="top:375.2pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:375.2pt;left:528.5pt;font-size:9.5pt"><b>Aegaeum:</b><b><i> </i></b>Aenos, Athena, Creta, Ephesus, </p>
<p style="top:387.2pt;left:576.2pt;font-size:9.5pt">Thessalonika. </p>
<p style="top:400.5pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:400.5pt;left:527.7pt;font-size:9.5pt"><b>Propontis:</b><b><i> </i></b>Byzantium, Nicomedia.</p>
<p style="top:413.7pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:413.7pt;left:535.0pt;font-size:9.5pt"><b>Euxinus:</b><b><i> </i></b>Byzantium, Sinope. </p>
<p style="top:427.0pt;left:506.2pt;font-size:9.5pt"><b><i> </i></b></p>
<p style="top:427.0pt;left:524.8pt;font-size:9.5pt"><b>Egypticum: </b>Alexandria, Antioch, </p>
<p style="top:439.0pt;left:576.2pt;font-size:9.5pt">Catabathmus, Creta, Perga, </p>
<p style="top:451.0pt;left:576.2pt;font-size:9.5pt">Pelusium, Salamis, Tarsus. </p>
<p style="top:469.3pt;left:506.2pt;font-size:11.0pt"><b>God Cards</b></p>
<p style="top:482.3pt;left:506.2pt;font-size:9.7pt"><b>Apollo: </b><b><i>Copy</i></b> the card played by your opponent </p>
<p style="top:494.3pt;left:518.8pt;font-size:9.7pt"><b><i>last</i></b> turn. The copied card determines who is </p>
<p style="top:506.3pt;left:518.8pt;font-size:9.7pt">player 1 <b><i>this</i></b> turn. When Apollo copies a God </p>
<p style="top:518.3pt;left:518.8pt;font-size:9.7pt">Card, it does <b><i>not</i></b> cancel the turn, however, two </p>
<p style="top:530.3pt;left:518.8pt;font-size:9.7pt">God Cards played <b><i>together</i></b> do cancel the turn.</p>
<p style="top:546.0pt;left:506.2pt;font-size:9.7pt"><b>Jupiter: </b>Roll to <b><i>randomly </i></b>cause the defection of 1 </p>
<p style="top:558.0pt;left:518.8pt;font-size:9.7pt">enemy block in a city adjacent to a friendly city. </p>
<p style="top:570.0pt;left:518.8pt;font-size:9.7pt">To determine <i>which</i> block defects, roll dice. A </p>
<p style="top:582.0pt;left:518.8pt;font-size:9.7pt">Leader or Navis does not defect; instead, reveal </p>
<p style="top:594.0pt;left:518.8pt;font-size:9.7pt">it and then reduce it by 1 step. Cleopatra is not </p>
<p style="top:606.0pt;left:518.8pt;font-size:9.7pt">a leader and may defect. <b><i>Examples:</i></b> For a group </p>
<p style="top:618.0pt;left:518.8pt;font-size:9.7pt">of 3, roll 1d6: 1-2 = 1st block, 3-4 = 2nd block, </p>
<p style="top:630.0pt;left:518.8pt;font-size:9.7pt">and 5-6 = 3rd. For a group of 5, roll 1d6 and </p>
<p style="top:642.0pt;left:518.8pt;font-size:9.7pt">reroll a 6.</p>
<p style="top:657.8pt;left:506.2pt;font-size:9.7pt"><b>Mars: </b>Make 1 group move (land units only). </p>
<p style="top:669.8pt;left:518.8pt;font-size:9.7pt">Choose 1 battle. During the <b><i>first</i></b> round, all </p>
<p style="top:681.8pt;left:518.8pt;font-size:9.7pt">attacking blocks in that battle fire before any </p>
<p style="top:693.8pt;left:518.8pt;font-size:9.7pt">defending blocks. <b><i>Caution:</i></b> the Defender may </p>
<p style="top:705.8pt;left:518.8pt;font-size:9.7pt">get two fires in a<b> </b>row (last in Round 1 and first </p>
<p style="top:717.8pt;left:518.8pt;font-size:9.7pt">in Round 2). You may start multiple battles, but </p>
<p style="top:729.8pt;left:518.8pt;font-size:9.7pt">only 1 gets the Mars effect.</p>
<p style="top:745.5pt;left:506.2pt;font-size:9.7pt"><b>Mercury: </b>The land blocks in 1 Group move 1 extra </p>
<p style="top:757.5pt;left:518.8pt;font-size:9.7pt">city. Blocks can move in multiple directions, </p>
<p style="top:769.5pt;left:518.8pt;font-size:9.7pt">and use the bonus (or not) as desired.</p>
<p style="top:785.3pt;left:506.2pt;font-size:9.7pt"><b>Neptune:</b> This is essentially a "Mars" card for </p>
<p style="top:797.3pt;left:518.8pt;font-size:9.7pt">ships. </p>
<p style="top:813.0pt;left:506.2pt;font-size:9.7pt"><b>Pluto: </b>Increases road limits for 1 Group Move for </p>
<p style="top:825.0pt;left:518.8pt;font-size:9.7pt">all Attacks, but not for other moves, nor for </p>
<p style="top:837.0pt;left:518.8pt;font-size:9.7pt">Retreats/Regroups. Land units only.</p>
<p style="top:852.8pt;left:506.2pt;font-size:9.7pt"><b>Vulcan: </b>reduces all blocks in a designated enemy </p>
<p style="top:864.8pt;left:518.8pt;font-size:9.7pt"><b><i>city</i></b> by 1 step. Blocks at strength I, including </p>
<p style="top:876.8pt;left:518.8pt;font-size:9.7pt">Navis and Leaders, are eliminated. Exception: </p>
<p style="top:888.8pt;left:518.8pt;font-size:9.7pt">Cleopatra is <b><i>not</i></b> reduced if at strength I.</p>
</div>
<div id="page4" style="background-image:url('rules4.jpg');width:765.0pt;height:990.0pt">
<p style="top:100.7pt;left:61.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">5.0 DEPLOYMENT</span></b></p>
<p style="top:129.0pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">5.1 HISTORICAL DEPLOYMENT</span></b></p>
<p style="top:143.1pt;left:80.0pt;font-size:11.0pt">Both players deploy blocks in cities as </p>
<p style="top:156.2pt;left:61.2pt;font-size:11.0pt">noted. Blocks are always deployed upright at </p>
<p style="top:169.4pt;left:61.2pt;font-size:11.0pt"><b>full</b> strength. </p>
<p style="top:192.8pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">5.2 LEVY POOL</span></b></p>
<p style="top:206.9pt;left:80.0pt;font-size:11.0pt">Each player maintains a <b><i>Levy Pool</i></b> off-</p>
<p style="top:220.0pt;left:61.2pt;font-size:11.0pt">map. Blocks in the Levy Pool stand upright to </p>
<p style="top:233.1pt;left:61.2pt;font-size:11.0pt">conceal their identity. Players expend Levy </p>
<p style="top:246.2pt;left:61.2pt;font-size:11.0pt">Points to deploy blocks from their pool to </p>
<p style="top:259.4pt;left:61.2pt;font-size:11.0pt">the map. Except for Leaders (see 7.51) blocks </p>
<p style="top:272.5pt;left:61.2pt;font-size:11.0pt">that are eliminated during play are returned </p>
<p style="top:285.6pt;left:61.2pt;font-size:11.0pt">to the Levy Pool, but are always placed <b><i>face-</i></b></p>
<p style="top:298.7pt;left:61.2pt;font-size:11.0pt"><b><i>up</i></b> until the current Year ends. These blocks </p>
<p style="top:311.9pt;left:61.2pt;font-size:11.0pt">cannot be levied until the next Year.</p>
<p style="top:335.3pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">5.3 FREE DEPLOYMENT</span></b></p>
<p style="top:349.4pt;left:80.0pt;font-size:11.0pt">An optional deployment method. Players </p>
<p style="top:362.5pt;left:61.2pt;font-size:11.0pt">deploy blocks as per historical OB, but may </p>
<p style="top:375.6pt;left:61.2pt;font-size:11.0pt">swap any blocks on the map as long as the </p>
<p style="top:388.7pt;left:61.2pt;font-size:11.0pt">original number of deployed blocks in each </p>
<p style="top:401.9pt;left:61.2pt;font-size:11.0pt">city is maintained. Blocks from the Friendly </p>
<p style="top:415.0pt;left:61.2pt;font-size:11.0pt">Levy Pool cannot be substituted. </p>
<p style="top:431.9pt;left:67.5pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>In the historical OB, Pompey </i></p>
<p style="top:445.0pt;left:67.5pt;font-size:11.0pt"><i>has three (3) blocks in Neapolis. For free </i></p>
<p style="top:458.1pt;left:67.5pt;font-size:11.0pt"><i>deployment, any three blocks from the </i></p>
<p style="top:471.2pt;left:67.5pt;font-size:11.0pt"><i>historical deployment can be there. </i></p>
<p style="top:100.8pt;left:282.8pt;font-size:14.6pt"><b><span style="color:#9d0a0e">CAESAR, 705 (49 BC)</span></b></p>
<p style="top:117.8pt;left:282.5pt;font-size:12.2pt"><b><i>Caesar</i></b><b>: </b><i>Ravenna</i> </p>
<p style="top:132.8pt;left:282.5pt;font-size:12.2pt"><b>Legio 13: </b><i>Ravenna </i></p>
<p style="top:147.8pt;left:282.5pt;font-size:12.2pt"><b>Navis 2: </b><i>Ravenna</i></p>
<p style="top:166.5pt;left:282.5pt;font-size:12.2pt"><b><i>Antonius</i></b><b>: </b><i>Genua</i> </p>
<p style="top:181.5pt;left:282.5pt;font-size:12.2pt"><b>Legio 8: </b><i>Genua </i></p>
<p style="top:196.5pt;left:282.5pt;font-size:12.2pt"><b>Legio 12: </b><i>Genua</i></p>
<p style="top:215.3pt;left:282.5pt;font-size:12.2pt"><b>Legio 11: </b><i>Massilia </i></p>
<p style="top:230.3pt;left:282.5pt;font-size:12.2pt"><b>Legio 14: </b><i>Massilia </i></p>
<p style="top:245.3pt;left:282.5pt;font-size:12.2pt"><b>Navis 1: </b><i>Massilia</i></p>
<p style="top:264.0pt;left:282.5pt;font-size:12.2pt"><b>Legio 7: </b><i>Narbo </i></p>
<p style="top:279.0pt;left:282.5pt;font-size:12.2pt"><b>Legio 9: </b><i>Narbo </i></p>
<p style="top:294.0pt;left:282.5pt;font-size:12.2pt"><b>Legio 10: </b><i>Narbo</i></p>
<p style="top:312.8pt;left:282.5pt;font-size:12.2pt"><b>Legio 16: </b><i>Lugdunum </i></p>
<p style="top:327.8pt;left:282.5pt;font-size:12.2pt"><b>Equitatus 1: </b><i>Lugdunum</i></p>
<p style="top:365.3pt;left:282.5pt;font-size:12.2pt"><b>LEVY POOL</b></p>
<p style="top:384.0pt;left:282.5pt;font-size:12.2pt"><b><i>Octavian</i></b></p>
<p style="top:402.8pt;left:282.5pt;font-size:12.2pt"><b>Legio 17, 18, 19, 20, 21</b></p>
<p style="top:421.5pt;left:282.5pt;font-size:12.2pt"><b>Auxilia 1, 2, 3, 4</b></p>
<p style="top:440.3pt;left:282.5pt;font-size:12.2pt"><b>Equitatus 2, 3, 4</b></p>
<p style="top:459.0pt;left:282.5pt;font-size:12.2pt"><b>Ballista </b></p>
<p style="top:477.8pt;left:282.5pt;font-size:12.2pt"><b>Navis 3, 4, 5</b></p>
<p style="top:57.2pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:935.0pt;left:65.0pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:932.1pt;left:376.4pt;font-size:14.6pt"><b>4</b><b> </b></p>
<p style="top:935.0pt;left:642.9pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.8pt;left:506.5pt;font-size:14.6pt"><b><span style="color:#9d0a0e">POMPEY, 705 (49 BC)</span></b></p>
<p style="top:117.8pt;left:506.2pt;font-size:12.2pt"><b><i>Pompey</i></b><b>: </b><i>Neapolis</i> </p>
<p style="top:132.8pt;left:506.2pt;font-size:12.2pt"><b>Legio 1: </b><i>Neapolis </i></p>
<p style="top:147.8pt;left:506.2pt;font-size:12.2pt"><b>Navis 1: </b><i>Neapolis</i></p>
<p style="top:166.5pt;left:506.2pt;font-size:12.2pt"><b>Legio 3: </b><i>Brundisium</i></p>
<p style="top:185.3pt;left:506.2pt;font-size:12.2pt"><b>Legio 37: </b><i>Syracuse</i></p>
<p style="top:204.0pt;left:506.2pt;font-size:12.2pt"><b><i>Scipio</i></b><b>: </b><i>Antioch</i> </p>
<p style="top:219.0pt;left:506.2pt;font-size:12.2pt"><b>Legio 34: </b><i>Antioch</i></p>
<p style="top:237.8pt;left:506.2pt;font-size:12.2pt"><b><i>Cleopatra: </i></b><i>Alexandria </i></p>
<p style="top:252.8pt;left:506.2pt;font-size:12.2pt"><b>Navis 2: </b><i>Alexandria</i></p>
<p style="top:271.5pt;left:506.2pt;font-size:12.2pt"><b>Legio 39: </b><i>Utica </i></p>
<p style="top:286.5pt;left:506.2pt;font-size:12.2pt"><b>Navis 3: </b><i>Utica</i></p>
<p style="top:305.3pt;left:506.2pt;font-size:12.2pt"><b>Legio 2: </b><i>Carthago Nova </i></p>
<p style="top:320.3pt;left:506.2pt;font-size:12.2pt"><b>Legio 4: </b><i>Carthago Nova</i></p>
<p style="top:339.0pt;left:506.2pt;font-size:12.2pt"><b>Legio 5: </b><i>Tarraco </i></p>
<p style="top:354.0pt;left:506.2pt;font-size:12.2pt"><b>Legio 6: </b><i>Tarraco </i></p>
<p style="top:369.0pt;left:506.2pt;font-size:12.2pt"><b>Equitatus 1: </b><i>Tarraco</i></p>
<p style="top:406.5pt;left:506.2pt;font-size:12.2pt"><b>LEVY POOL</b></p>
<p style="top:425.3pt;left:506.2pt;font-size:12.2pt"><b><i>Brutus</i></b></p>
<p style="top:444.0pt;left:506.2pt;font-size:12.2pt"><b>Legio 32, 33, 35, 36, 38</b></p>
<p style="top:462.8pt;left:506.2pt;font-size:12.2pt"><b>Auxilia 1, 2, 3, 4</b></p>
<p style="top:481.5pt;left:506.2pt;font-size:12.2pt"><b>Equitatus 2, 3, Elephant</b><i> </i></p>
<p style="top:500.3pt;left:506.2pt;font-size:12.2pt"><b>Ballista</b></p>
<p style="top:519.0pt;left:506.2pt;font-size:12.2pt"><b>Navis 4, 5</b></p>
</div>
<div id="page5" style="background-image:url('rules5.jpg');width:765.0pt;height:990.0pt">
<p style="top:55.9pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:932.5pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:929.6pt;left:380.1pt;font-size:14.6pt"><b>5</b><b> </b></p>
<p style="top:932.5pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.9pt;left:506.2pt;font-size:11.0pt"><b>Move Example</b></p>
<p style="top:113.9pt;left:506.2pt;font-size:9.7pt">For 1mp, a player may move any/all <i>Massilia </i>blocks </p>
<p style="top:125.9pt;left:506.2pt;font-size:9.7pt">to one or more of <i>Narbo</i>, <i>Lugdunum</i>, and <i>Genua</i>. </p>
<p style="top:137.9pt;left:506.2pt;font-size:9.7pt">If not attacking, blocks can move further to any/all </p>
<p style="top:149.9pt;left:506.2pt;font-size:9.7pt">of <i>Tarraco</i>, <i>Burdigala</i>, <i>Cenabum</i>, <i>Treveri</i>, <i>Ravenna</i>, </p>
<p style="top:161.9pt;left:506.2pt;font-size:9.7pt">or <i>Rome</i>. If some of the Massilia blocks are Navis, </p>
<p style="top:173.9pt;left:506.2pt;font-size:9.7pt">they can move to <i>Mare Hispanum</i>, then to an </p>
<p style="top:185.9pt;left:506.2pt;font-size:9.7pt">adjacent sea or port if not attacking. </p>
<p style="top:204.3pt;left:506.2pt;font-size:11.0pt"><b>Movement & Attacking</b></p>
<p style="top:217.3pt;left:506.2pt;font-size:9.7pt">Blocks can move only one city/sea when they </p>
<p style="top:229.3pt;left:506.2pt;font-size:9.7pt">attack. This has many subtle implications. For </p>
<p style="top:241.3pt;left:506.2pt;font-size:9.7pt">example, assuming 6 Caesar blocks located in </p>
<p style="top:253.3pt;left:506.2pt;font-size:9.7pt">Massilia and 3 Pompey blocks in Tarraco and 3 in </p>
<p style="top:265.3pt;left:506.2pt;font-size:9.7pt">Genua. The Caesar blocks cannot attack Tarraco </p>
<p style="top:277.3pt;left:506.2pt;font-size:9.7pt">since that is two moves away. Genua is adjacent </p>
<p style="top:289.3pt;left:506.2pt;font-size:9.7pt">and can therefore be attacked with 4 Caesar </p>
<p style="top:301.3pt;left:506.2pt;font-size:9.7pt">blocks (road limit). Unlike many other games, </p>
<p style="top:313.3pt;left:506.2pt;font-size:9.7pt">however, the remaining 2 Caesar blocks cannot </p>
<p style="top:325.3pt;left:506.2pt;font-size:9.7pt">also attack Genua via Lugdunum since that would </p>
<p style="top:337.3pt;left:506.2pt;font-size:9.7pt">be a move of two cities. Note however, the effect </p>
<p style="top:349.3pt;left:506.2pt;font-size:9.7pt">of the <b><i>Mercury</i></b> card which could allow an attack </p>
<p style="top:361.3pt;left:506.2pt;font-size:9.7pt">on Tarraco, and/or a two-pronged attack on </p>
<p style="top:373.3pt;left:506.2pt;font-size:9.7pt">Genua. </p>
<p style="top:391.7pt;left:506.2pt;font-size:11.0pt"><b>Pinning Example</b></p>
<p style="top:404.6pt;left:506.2pt;font-size:9.7pt">Five (5) blocks defend <i>Rome</i>. Four (4) blocks attack </p>
<p style="top:416.6pt;left:506.2pt;font-size:9.7pt">from <i>Genua</i> and two (2) from <i>Ravenna</i>, the latter </p>
<p style="top:428.6pt;left:506.2pt;font-size:9.7pt">being reserves. Assuming the Genua blocks are </p>
<p style="top:440.6pt;left:506.2pt;font-size:9.7pt">the Main Attack, a total of 4 blocks in Rome are </p>
<p style="top:452.6pt;left:506.2pt;font-size:9.7pt">pinned, but 1 is unpinned and may move except </p>
<p style="top:464.6pt;left:506.2pt;font-size:9.7pt">via the two roads being used by the Attacker.</p>
<p style="top:483.0pt;left:506.2pt;font-size:11.0pt"><b>Seapower</b></p>
<p style="top:496.0pt;left:506.2pt;font-size:9.7pt">The function of Navis are to win control of a Sea </p>
<p style="top:508.0pt;left:506.2pt;font-size:9.7pt">to enable amphibious movement. They can also </p>
<p style="top:520.0pt;left:506.2pt;font-size:9.7pt">attack and occupy enemy ports, or occupy Vacant </p>
<p style="top:532.0pt;left:506.2pt;font-size:9.7pt">ports. </p>
<p style="top:550.4pt;left:506.2pt;font-size:11.0pt"><b>Navis Move Examples</b></p>
<p style="top:563.4pt;left:506.2pt;font-size:9.7pt"><b>1. </b>Navis located in <i>Massilia</i> can move to a Friendly </p>
<p style="top:575.4pt;left:506.2pt;font-size:9.7pt">or Vacant <i>Mare Hispanum. </i>If not attacking, the </p>
<p style="top:587.4pt;left:506.2pt;font-size:9.7pt">Navis can then move to <i>Oceanus</i> <i>Atlanticus</i>, or </p>
<p style="top:599.4pt;left:506.2pt;font-size:9.7pt"><i>Mare Tyrrhenum, or </i>to any other Friendly or </p>
<p style="top:611.4pt;left:506.2pt;font-size:9.7pt">Vacant port on <i>Mare Hispanum</i> (Utica, Caralis, </p>
<p style="top:623.4pt;left:506.2pt;font-size:9.7pt">Iomnium, Siga, Tingis, Carthago Nova, Tarraco, </p>
<p style="top:635.4pt;left:506.2pt;font-size:9.7pt">Narbo, and Genua).</p>
<p style="top:651.1pt;left:506.2pt;font-size:9.7pt"><b>2. </b>Navis located on <i>Mare Internum</i> can move </p>
<p style="top:663.1pt;left:506.2pt;font-size:9.7pt">to <i>Mare</i> <i>Tyrrhenum, Mare Hadriaticum, Mare </i></p>
<p style="top:675.1pt;left:506.2pt;font-size:9.7pt"><i>Aegaeum, or Mare Egypticum. </i>If not attacking, </p>
<p style="top:687.1pt;left:506.2pt;font-size:9.7pt">a Navis that moved to <i>Mare Aegaeum </i>could </p>
<p style="top:699.1pt;left:506.2pt;font-size:9.7pt">move to another adjacent Friendly or Vacant sea </p>
<p style="top:711.1pt;left:506.2pt;font-size:9.7pt">(<i>Propontis or Mare Egypticum) or to </i>any Friendly </p>
<p style="top:723.1pt;left:506.2pt;font-size:9.7pt">or Vacant port on this sea, (Creta, Athena, </p>
<p style="top:735.1pt;left:506.2pt;font-size:9.7pt">Thessalonika, Aenos, or Ephesus). Note that the </p>
<p style="top:747.1pt;left:506.2pt;font-size:9.7pt">city of <i>Pergamum</i> is not a port. </p>
<p style="top:765.5pt;left:506.2pt;font-size:11.0pt"><b>Amphibious Move Example</b></p>
<p style="top:778.5pt;left:506.2pt;font-size:9.7pt">Caesar has 3 Navis, 1 each on <i>Mare Tyrrhenum</i>, </p>
<p style="top:790.5pt;left:506.2pt;font-size:9.7pt"><i>Mare Internum, </i>and <i>Mare Egypticum. </i>He elects to </p>
<p style="top:802.5pt;left:506.2pt;font-size:9.7pt">spend 2mp to make an amphibious move of two </p>
<p style="top:814.5pt;left:506.2pt;font-size:9.7pt">legions from Rome to Antioch, which is Vacant. </p>
<p style="top:826.5pt;left:506.2pt;font-size:9.7pt">This is possible because the three seas crossed are </p>
<p style="top:838.5pt;left:506.2pt;font-size:9.7pt">Friendly and adjacent, and the amphibious move </p>
<p style="top:850.5pt;left:506.2pt;font-size:9.7pt">is made before any other move. Note that an </p>
<p style="top:862.5pt;left:506.2pt;font-size:9.7pt">Amphibious move by Player 1 is completed in the </p>
<p style="top:875.6pt;left:506.2pt;font-size:9.7pt">Command Phase, before Player 2 moves.</p>
<p style="top:100.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.14 Response Movement</span></b></p>
<p style="top:115.0pt;left:301.2pt;font-size:11.0pt">Player 2 can expend MPs to move </p>
<p style="top:128.1pt;left:282.5pt;font-size:11.0pt"><b><i>unpinned</i></b> blocks to reinforce Defending </p>
<p style="top:141.2pt;left:282.5pt;font-size:11.0pt">blocks in Contested cities/seas. Blocks can </p>
<p style="top:154.4pt;left:282.5pt;font-size:11.0pt"><b><i>Respond</i></b> only from <b><i>adjacent</i></b> cities/seas.</p>
<p style="top:171.2pt;left:288.8pt;font-size:11.0pt"><b><i>IMPORTANT: </i></b><i>Responding blocks are </i></p>
<p style="top:184.4pt;left:288.8pt;font-size:11.0pt"><i>always placed in </i><b><i>Reserve (7.3)</i></b><i> and do not </i></p>
<p style="top:197.5pt;left:288.8pt;font-size:11.0pt"><i>alter the status of pinned blocks (6.13).</i></p>
<p style="top:220.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.15 Stacking</span></b></p>
<p style="top:235.0pt;left:301.2pt;font-size:11.0pt">There is no stacking limit for blocks </p>
<p style="top:248.1pt;left:282.5pt;font-size:11.0pt">during a Year. Stacking applies during the </p>
<p style="top:261.2pt;left:282.5pt;font-size:11.0pt"><b><i>Winter Turn.</i></b> See 8.4.</p>
<p style="top:284.6pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.2 NAVIS MOVEMENT</span></b></p>
<p style="top:298.7pt;left:301.2pt;font-size:11.0pt"><i>Navis</i> move from a port to an adjacent </p>
<p style="top:311.9pt;left:282.5pt;font-size:11.0pt">sea (or vice-versa), or from one sea to an </p>
<p style="top:325.0pt;left:282.5pt;font-size:11.0pt">adjacent sea. They can never move from one </p>
<p style="top:338.1pt;left:282.5pt;font-size:11.0pt">port directly to another port, except via the </p>
<p style="top:351.2pt;left:282.5pt;font-size:11.0pt">adjacent sea. </p>
<p style="top:368.1pt;left:301.2pt;font-size:11.0pt">When located with land blocks, Navis </p>
<p style="top:381.2pt;left:282.5pt;font-size:11.0pt">can move to sea as part of a group move for </p>
<p style="top:394.4pt;left:282.5pt;font-size:11.0pt">that city. See: Navis Move Examples. </p>
<p style="top:411.2pt;left:301.2pt;font-size:11.0pt">Navis can make one (1) move and attack, </p>
<p style="top:424.4pt;left:282.5pt;font-size:11.0pt">or two (2) moves and not attack. See sidebar </p>
<p style="top:437.5pt;left:282.5pt;font-size:11.0pt">for examples. </p>
<p style="top:454.4pt;left:301.2pt;font-size:11.0pt">Navis can attack/respond <b><i>only</i></b> from an </p>
<p style="top:467.5pt;left:282.5pt;font-size:11.0pt"><b><i>adjacent</i></b> sea/port. See 6.12 and 7.3 for more </p>
<p style="top:480.6pt;left:282.5pt;font-size:11.0pt">details about attacking and responding.</p>
<p style="top:504.0pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.3 AMPHIBIOUS MOVEMENT</span></b></p>
<p style="top:518.1pt;left:301.3pt;font-size:11.0pt">Land blocks may move from one port to </p>
<p style="top:531.2pt;left:282.5pt;font-size:11.0pt">any other <b><i>Friendly or Vacant</i></b> port across one </p>
<p style="top:544.4pt;left:282.5pt;font-size:11.0pt">or more <b><i>adjacent</i></b> <b><i>Friendly</i></b> <b><i>seas. </i></b>Cost is 1 MP </p>
<p style="top:557.5pt;left:282.5pt;font-size:11.0pt">per <b><i>block</i></b>.</p>
<p style="top:574.4pt;left:301.3pt;font-size:11.0pt">Amphibious movement must be made </p>
<p style="top:587.5pt;left:282.5pt;font-size:11.0pt"><b><i>before</i></b> any other moves are made that turn. </p>
<p style="top:600.6pt;left:282.5pt;font-size:11.0pt">Hence, a sea used in amphibious movement </p>
<p style="top:613.7pt;left:282.5pt;font-size:11.0pt">must already be Friendly before any other </p>
<p style="top:626.9pt;left:282.5pt;font-size:11.0pt">moves are made that turn. </p>
<p style="top:643.7pt;left:301.3pt;font-size:11.0pt">Blocks cannot move by land and sea in </p>
<p style="top:656.9pt;left:282.5pt;font-size:11.0pt">the same turn (or vice-versa). 1 Navis block </p>
<p style="top:670.0pt;left:282.5pt;font-size:11.0pt">must remain in the sea that was crossed for </p>
<p style="top:683.1pt;left:282.5pt;font-size:11.0pt">the entire Command Phase; other Navis may </p>
<p style="top:696.2pt;left:282.5pt;font-size:11.0pt">move as desired.</p>
<p style="top:713.1pt;left:301.3pt;font-size:11.0pt">Amphibious moves can <b><i>never</i></b> be made </p>
<p style="top:726.2pt;left:282.5pt;font-size:11.0pt">to Enemy or Contested ports. Unpinned </p>
<p style="top:739.4pt;left:282.5pt;font-size:11.0pt">(6.13) land blocks in a Contested city may </p>
<p style="top:752.5pt;left:282.5pt;font-size:11.0pt">conduct an amphibious move provided the </p>
<p style="top:765.6pt;left:282.5pt;font-size:11.0pt">adjacent sea is Friendly. </p>
<p style="top:100.7pt;left:61.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">6.0 COMMAND PHASE</span></b></p>
<p style="top:122.5pt;left:80.0pt;font-size:11.0pt">Player 1 Moves and then Levies with the </p>
<p style="top:135.6pt;left:61.2pt;font-size:11.0pt">values from his active card, then Player 2 </p>
<p style="top:148.7pt;left:61.2pt;font-size:11.0pt">does the same. </p>
<p style="top:172.1pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.1 GROUP MOVES</span></b></p>
<p style="top:186.2pt;left:80.0pt;font-size:11.0pt">Command cards have Move Points </p>
<p style="top:199.4pt;left:61.2pt;font-size:11.0pt">(MP) of 1 to 4. Each MP allows <b><i>any/all</i></b> </p>
<p style="top:212.5pt;left:61.2pt;font-size:11.0pt">block(s) in one location (city or sea) to move </p>
<p style="top:225.6pt;left:61.2pt;font-size:11.0pt">to adjacent cities/seas. If <b><i>not</i></b> attacking, </p>
<p style="top:238.7pt;left:61.2pt;font-size:11.0pt">blocks may continue to the next adjacent </p>
<p style="top:251.9pt;left:61.2pt;font-size:11.0pt">location(s).</p>
<p style="top:268.7pt;left:80.0pt;font-size:11.0pt">Blocks that move cannot move again this </p>
<p style="top:281.9pt;left:61.2pt;font-size:11.0pt">game turn, except to <i>Retreat</i> or <i>Regroup</i>. </p>
<p style="top:295.0pt;left:61.2pt;font-size:11.0pt">When a block has finished moving, turn it </p>
<p style="top:308.1pt;left:61.2pt;font-size:11.0pt">face-down to show that it cannot move again </p>
<p style="top:321.2pt;left:61.2pt;font-size:11.0pt">this turn.</p>
<p style="top:344.6pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.11 Road Limits</span></b></p>
<p style="top:358.7pt;left:80.0pt;font-size:11.0pt">The <i>maximum</i> number of blocks that </p>
<p style="top:371.9pt;left:61.2pt;font-size:11.0pt">can move along any road varies by type: </p>
<p style="top:388.7pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:388.7pt;left:76.4pt;font-size:11.0pt"><b>Major: </b>4 blocks</p>
<p style="top:403.1pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:403.1pt;left:76.1pt;font-size:11.0pt"><b>Minor:</b> 2 blocks</p>
<p style="top:417.5pt;left:61.2pt;font-size:11.0pt"> </p>
<p style="top:417.5pt;left:75.1pt;font-size:11.0pt"><b>Straits:</b> 2 blocks (1 if attacking)</p>
<p style="top:434.4pt;left:67.7pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>A maximum of 4 blocks may </i></p>
<p style="top:447.5pt;left:67.5pt;font-size:11.0pt"><i>move from </i><i>Genua</i><i> to </i><i>Rome</i><i>, and one or </i></p>
<p style="top:460.6pt;left:67.5pt;font-size:11.0pt"><i>two blocks may move from </i><i>Ravenna</i><i> to </i></p>
<p style="top:473.7pt;left:67.5pt;font-size:11.0pt"><i>Rome</i><i>.</i></p>
<p style="top:490.6pt;left:80.0pt;font-size:11.0pt">Road Limits apply to <b><i>each</i></b> player. Hence, </p>
<p style="top:503.7pt;left:61.2pt;font-size:11.0pt">both players can move two blocks along the </p>
<p style="top:516.9pt;left:61.2pt;font-size:11.0pt">same minor road in the same game turn. </p>
<p style="top:533.7pt;left:67.7pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>Player 1 moves 4 blocks from </i></p>
<p style="top:546.9pt;left:67.5pt;font-size:11.0pt"><i>Massilia</i><i> to </i><i>Genua</i><i> to </i><i>Ravenna</i><i>. Player 2 </i></p>
<p style="top:560.0pt;left:67.5pt;font-size:11.0pt"><i>now moves 4 blocks from </i><i>Rome</i><i> to </i><i>Genua</i><i> </i></p>
<p style="top:573.1pt;left:67.5pt;font-size:11.0pt"><i>to </i><i>Massilia</i><i>. Both players used the road </i></p>
<p style="top:586.2pt;left:67.5pt;font-size:11.0pt"><i>section between </i><i>Massilia</i><i> and </i><i>Genua</i><i>, but </i></p>
<p style="top:599.4pt;left:67.5pt;font-size:11.0pt"><i>at different times. Of course, if Player 1 </i></p>
<p style="top:612.5pt;left:67.5pt;font-size:11.0pt"><i>had left at least 1 block in </i><i>Genua</i><i>, Player 2 </i></p>
<p style="top:625.6pt;left:67.5pt;font-size:11.0pt"><i>could not have moved through this block </i></p>
<p style="top:638.7pt;left:67.5pt;font-size:11.0pt"><i>to </i><i>Massilia</i><i> without fighting a battle. </i></p>
<p style="top:659.6pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.12 Attacking</span></b></p>
<p style="top:673.7pt;left:80.0pt;font-size:11.0pt">Blocks entering an <b><i>Enemy</i></b> city/sea are </p>
<p style="top:686.9pt;left:61.2pt;font-size:11.0pt"><b><i>Attacking;</i></b> the enemy blocks are <b><i>Defending.</i></b></p>
<p style="top:702.5pt;left:80.0pt;font-size:11.0pt">Blocks may attack from adjacent cities/</p>
<p style="top:715.6pt;left:61.2pt;font-size:11.0pt">seas only. A player may attack via two or </p>
<p style="top:728.7pt;left:61.2pt;font-size:11.0pt">more roads, but each road will require a </p>
<p style="top:741.9pt;left:61.2pt;font-size:11.0pt">separate MP. The <b><i>first</i></b> road/border used is </p>
<p style="top:755.0pt;left:61.2pt;font-size:11.0pt">the <b><i>Main Attack. </i></b>Blocks using other roads/</p>
<p style="top:768.1pt;left:61.2pt;font-size:11.0pt">borders are <b><i>Reserves</i></b>. See 6.2 and 7.3. </p>
<p style="top:791.5pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.13 Pinning</span></b></p>
<p style="top:805.6pt;left:80.0pt;font-size:11.0pt">Attacking blocks<b><i> (</i></b><b>e</b><b><i>xcluding</i></b><i> </i><b><i>Reserves</i></b><b>) </b></p>
<p style="top:818.7pt;left:61.2pt;font-size:11.0pt">prevent an equal number of defending </p>
<p style="top:831.9pt;left:61.2pt;font-size:11.0pt">blocks from moving<i>.</i> The Defender chooses </p>
<p style="top:845.0pt;left:61.2pt;font-size:11.0pt">which blocks are pinned. The "unpinned" </p>
<p style="top:858.1pt;left:61.2pt;font-size:11.0pt">blocks may move normally and even attack, </p>
<p style="top:871.2pt;left:61.2pt;font-size:11.0pt"><b><i>but</i></b> cannot use any <b><i>road or sea border </i></b>used </p>
<p style="top:884.4pt;left:61.2pt;font-size:11.0pt">by the enemy that battle. </p>
</div>
<div id="page6" style="background-image:url('rules6.jpg');width:765.0pt;height:990.0pt">
<p style="top:55.9pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:935.0pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:932.1pt;left:380.1pt;font-size:14.6pt"><b>6</b><b> </b></p>
<p style="top:935.0pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.9pt;left:506.2pt;font-size:11.0pt"><b>Levies</b></p>
<p style="top:114.0pt;left:506.2pt;font-size:9.6pt">Although many blocks can only be deployed in </p>
<p style="top:126.0pt;left:506.2pt;font-size:9.6pt">specified cities, steps can be added to those blocks </p>
<p style="top:138.0pt;left:506.2pt;font-size:9.6pt">in <b>any</b> city. Elephants still cost 1LP per step and can </p>
<p style="top:150.0pt;left:506.2pt;font-size:9.6pt">be raised to full strength (IV) for a total of 2LP.</p>
<p style="top:185.2pt;left:506.2pt;font-size:11.0pt"><b>Battle Sequence</b></p>
<p style="top:200.8pt;left:506.2pt;font-size:9.6pt">Battle sequence (7.1) is controlled by Player 1. This </p>
<p style="top:212.8pt;left:506.2pt;font-size:9.6pt">can be significant because the results of a battle </p>
<p style="top:224.8pt;left:506.2pt;font-size:9.6pt">will change city or sea control from Contested to </p>
<p style="top:236.8pt;left:506.2pt;font-size:9.6pt">Friendly for the victor and that impacts Retreats and </p>
<p style="top:248.8pt;left:506.2pt;font-size:9.6pt">Regroups. </p>
<p style="top:280.2pt;left:506.2pt;font-size:11.0pt"><b>Battle Turns</b></p>
<p style="top:293.1pt;left:506.2pt;font-size:9.7pt">Caesar (A3) and Equitatus (B2) attack Pompey (B3) </p>
<p style="top:305.1pt;left:506.2pt;font-size:9.7pt">and Navis (D2). Battle Turn sequence:</p>
<p style="top:320.9pt;left:518.8pt;font-size:9.7pt">Caesar: attacking A3</p>
<p style="top:336.6pt;left:518.8pt;font-size:9.7pt">Pompey: defending B3</p>
<p style="top:352.4pt;left:518.8pt;font-size:9.7pt">Caesar Equitatus: attacking B2</p>
<p style="top:368.1pt;left:518.8pt;font-size:9.7pt">Pompey Navis: defending D2</p>
<p style="top:402.3pt;left:506.2pt;font-size:11.0pt"><b>Attacker/Defender</b></p>
<p style="top:415.3pt;left:506.2pt;font-size:9.7pt">Because both players move before combat, a </p>
<p style="top:427.3pt;left:506.2pt;font-size:9.7pt">player can be the Defender in some battles, and </p>
<p style="top:439.3pt;left:506.2pt;font-size:9.7pt">the Attacker in others. </p>
<p style="top:473.4pt;left:506.2pt;font-size:11.0pt"><b>Disruption</b></p>
<p style="top:486.5pt;left:506.2pt;font-size:9.6pt">The 1 step penalty applies to attacking and/or </p>
<p style="top:498.5pt;left:506.2pt;font-size:9.6pt">defending reserves. The step loss for reserves </p>
<p style="top:510.5pt;left:506.2pt;font-size:9.6pt">reflects the loss of morale that would be expected </p>
<p style="top:522.5pt;left:506.2pt;font-size:9.6pt">from seeing routed soldiers fleeing.</p>
<p style="top:557.7pt;left:506.2pt;font-size:11.0pt"><b>Battle Hits</b></p>
<p style="top:570.6pt;left:506.2pt;font-size:9.7pt">Each hit reduces the strongest enemy block at </p>
<p style="top:582.6pt;left:506.2pt;font-size:9.7pt">that instant. Hence, if two hits are scored on three </p>
<p style="top:594.6pt;left:506.2pt;font-size:9.7pt">enemy blocks at strength III, II, II, the first hit must </p>
<p style="top:606.6pt;left:506.2pt;font-size:9.7pt">be taken on the enemy III block. All three blocks </p>
<p style="top:618.6pt;left:506.2pt;font-size:9.7pt">are now at strength II, so the next hit can be on </p>
<p style="top:630.6pt;left:506.2pt;font-size:9.7pt">any enemy block (owner choice). </p>
<p style="top:664.8pt;left:506.2pt;font-size:11.0pt"><b>Pursuit</b></p>
<p style="top:677.8pt;left:506.2pt;font-size:9.7pt">Pursuit is naturally handled by the game system. </p>
<p style="top:689.8pt;left:506.2pt;font-size:9.7pt">A block wishing to retreat must await its normal </p>
<p style="top:701.8pt;left:506.2pt;font-size:9.7pt">battle turn which allows faster enemy troops </p>
<p style="top:713.8pt;left:506.2pt;font-size:9.7pt">to fire before they can retreat. If the Defender </p>
<p style="top:725.8pt;left:506.2pt;font-size:9.7pt">survives three Battle Rounds, the Attacker <b><i>must</i></b> </p>
<p style="top:737.8pt;left:506.2pt;font-size:9.7pt">retreat during round 4, but takes fire from </p>
<p style="top:749.8pt;left:506.2pt;font-size:9.7pt">defending blocks that have an equal or earlier </p>
<p style="top:761.8pt;left:506.2pt;font-size:9.7pt">battle turn. </p>
<p style="top:795.9pt;left:506.2pt;font-size:11.0pt"><b>Treachery</b></p>
<p style="top:808.9pt;left:506.2pt;font-size:9.7pt">Several legions switched sides during the war, This </p>
<p style="top:820.9pt;left:506.2pt;font-size:9.7pt">is represented by the Jupiter card, which switches </p>
<p style="top:832.9pt;left:506.2pt;font-size:9.7pt">one block to the enemy side. Even the famous </p>
<p style="top:844.9pt;left:506.2pt;font-size:9.7pt">13th legion, which crossed the Rubicon with </p>
<p style="top:856.9pt;left:506.2pt;font-size:9.7pt">Caesar, later rebelled and changed sides. </p>
<p style="top:100.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.3 BATTLE RESERVES</span></b></p>
<p style="top:115.0pt;left:301.2pt;font-size:11.0pt">When attacking via two or more roads </p>
<p style="top:128.1pt;left:282.5pt;font-size:11.0pt">or sea borders, the <b><i>first</i></b> road/border used is </p>
<p style="top:141.2pt;left:282.5pt;font-size:11.0pt">the <b><i>Main Attack. </i></b>Blocks using other roads/</p>
<p style="top:154.4pt;left:282.5pt;font-size:11.0pt">borders are <b><i>Reserves</i></b>.</p>
<p style="top:171.2pt;left:301.2pt;font-size:11.0pt">Blocks moved by <b><i>Player 2 </i></b>to <i>reinforce</i> a </p>
<p style="top:184.4pt;left:282.5pt;font-size:11.0pt">battle started by Player 1 are also <b><i>Reserves</i></b>.</p>
<p style="top:201.2pt;left:301.3pt;font-size:11.0pt"><b><i>Reserve</i></b> blocks may not fire, retreat, or </p>
<p style="top:214.4pt;left:282.5pt;font-size:11.0pt">take hits in Round 1. They are revealed and </p>
<p style="top:227.5pt;left:282.5pt;font-size:11.0pt">arrive at the start of Round 2 to take normal </p>
<p style="top:240.6pt;left:282.5pt;font-size:11.0pt">turns. </p>
<p style="top:257.5pt;left:289.0pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>Caesar</i><i> attacks Tarraco from </i></p>
<p style="top:270.6pt;left:288.8pt;font-size:11.0pt"><i>Narbo with 4 blocks (main attack) and </i></p>
<p style="top:283.7pt;left:288.8pt;font-size:11.0pt"><i>from Bilbilis with 2 blocks. </i><i>Pompey</i><i> has </i></p>
<p style="top:296.9pt;left:288.8pt;font-size:11.0pt"><i>3 blocks defending Tarraco, but moves 4 </i></p>
<p style="top:310.0pt;left:288.8pt;font-size:11.0pt"><i>blocks from Nova Carthago to Tarraco. </i></p>
<p style="top:323.1pt;left:288.8pt;font-size:11.0pt"><i>Round 1 has the 3 Tarraco blocks </i></p>
<p style="top:336.2pt;left:288.8pt;font-size:11.0pt"><i>defending against 4 </i><i>Caesar</i><i> blocks from </i></p>
<p style="top:349.4pt;left:288.8pt;font-size:11.0pt"><i>Narbo. </i><i>Caesar</i><i> blocks from Bilbilis and </i></p>
<p style="top:362.5pt;left:288.8pt;font-size:11.0pt"><i>Pompey</i><i> blocks from Nova Carthago are </i></p>
<p style="top:375.6pt;left:288.8pt;font-size:11.0pt"><b><i>Reserves</i></b><i> that arrive for Round 2. </i></p>
<p style="top:399.0pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.31 Disruption</span></b></p>
<p style="top:413.1pt;left:301.3pt;font-size:11.0pt"><b><i>Reserve</i></b> blocks are <b><i>Disrupted</i></b> if their </p>
<p style="top:426.2pt;left:282.5pt;font-size:11.0pt">main force is eliminated in Round 1. </p>
<p style="top:439.4pt;left:282.5pt;font-size:11.0pt">Disrupted blocks immediately lose one (1) </p>
<p style="top:452.5pt;left:282.5pt;font-size:11.0pt">step and then fight normally.</p>
<p style="top:469.4pt;left:288.8pt;font-size:11.0pt"><b><i>IMPORTANT: </i></b><i>If the disrupted player is the </i></p>
<p style="top:482.5pt;left:288.8pt;font-size:11.0pt"><i>Defender, the Attacker now becomes the </i></p>
<p style="top:495.6pt;left:288.8pt;font-size:11.0pt"><i>Defender for the rest of the battle. </i></p>
<p style="top:519.0pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.4 BATTLE HITS</span></b></p>
<p style="top:533.1pt;left:301.3pt;font-size:11.0pt">Each firing block in its Battle Turn rolls </p>
<p style="top:546.2pt;left:282.5pt;font-size:11.0pt">as many dice as its current <i>strength</i>. A hit </p>
<p style="top:559.4pt;left:282.5pt;font-size:11.0pt">is scored for each die roll equal to or lower </p>
<p style="top:572.5pt;left:282.5pt;font-size:11.0pt">than the block’s firepower.</p>
<p style="top:589.4pt;left:289.0pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>Caesar 3 rolls 3 dice. He has </i></p>
<p style="top:602.5pt;left:288.8pt;font-size:11.0pt"><i>A3 combat: rolls of 1, 2, 3 are hits. </i></p>
<p style="top:619.4pt;left:301.3pt;font-size:11.0pt"><b>Each</b> <b>hit</b> reduces the <i>strongest </i>enemy<i> </i></p>
<p style="top:632.5pt;left:282.5pt;font-size:11.0pt">block at that <b><i>instant</i></b>. When two or more </p>
<p style="top:645.6pt;left:282.5pt;font-size:11.0pt">blocks share the highest strength, the owner </p>
<p style="top:658.7pt;left:282.5pt;font-size:11.0pt">chooses which to reduce. Except for Leaders, </p>
<p style="top:671.9pt;left:282.5pt;font-size:11.0pt">when blocks are reduced below strength I, </p>
<p style="top:685.0pt;left:282.5pt;font-size:11.0pt">they are <i>immediately</i> eliminated (see 7.5) </p>
<p style="top:698.1pt;left:282.5pt;font-size:11.0pt">and returned to the Levy Pool. </p>
<p style="top:715.0pt;left:289.0pt;font-size:11.0pt"><b><i>NOTE: </i></b><i>Combat is not simultaneous. All </i></p>
<p style="top:728.1pt;left:288.8pt;font-size:11.0pt"><i>hits are applied immediately.</i></p>
<p style="top:749.0pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.41 Elephant</span></b></p>
<p style="top:763.1pt;left:301.3pt;font-size:11.0pt">The elephant block has two steps, IV and </p>
<p style="top:776.2pt;left:282.5pt;font-size:11.0pt">II. It drops <b><i>one step per hit</i></b> which means the </p>
<p style="top:789.4pt;left:282.5pt;font-size:11.0pt">block is powerful but fragile. </p>
<p style="top:812.8pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.42 Ballista</span></b></p>
<p style="top:826.9pt;left:301.3pt;font-size:11.0pt">The Ballista block fights at B4 when </p>
<p style="top:840.0pt;left:282.5pt;font-size:11.0pt">Defending, but at D4 when Attacking. </p>
<p style="top:100.9pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">6.4 LEVIES</span></b></p>
<p style="top:115.0pt;left:80.0pt;font-size:11.0pt">Command cards have 1, 2, or 3 Levy </p>
<p style="top:128.1pt;left:61.2pt;font-size:11.0pt">Points (LP). <b><i>Each</i></b> LP allows:</p>
<p style="top:145.4pt;left:67.5pt;font-size:11.0pt">• One (1) step to be added to one (1) </p>
<p style="top:158.9pt;left:73.8pt;font-size:11.0pt">existing block. Multiple steps can be </p>
<p style="top:172.4pt;left:73.8pt;font-size:11.0pt">added to the same block, each for LP1. </p>
<p style="top:185.9pt;left:73.8pt;font-size:11.0pt">Blocks that move can levy as long as </p>
<p style="top:199.4pt;left:73.8pt;font-size:11.0pt">they're in a friendly city (not contested).</p>
<p style="top:216.6pt;left:67.5pt;font-size:11.0pt">• One (1) new block can be chosen from </p>
<p style="top:230.1pt;left:73.8pt;font-size:11.0pt">a player's Levy Pool and deployed in a </p>
<p style="top:243.6pt;left:73.8pt;font-size:11.0pt">city at minimum strength. Steps can be </p>
<p style="top:257.1pt;left:73.8pt;font-size:11.0pt">added to a new block immediately, each </p>
<p style="top:270.6pt;left:73.8pt;font-size:11.0pt">step costing LP1 (including the elephant). </p>
<p style="top:284.1pt;left:73.8pt;font-size:11.0pt">Multiple new blocks can be deployed in </p>
<p style="top:297.6pt;left:73.8pt;font-size:11.0pt">the same city if desired.</p>
<p style="top:314.9pt;left:80.0pt;font-size:11.0pt"><b>Leaders</b> deploy in any Friendly city. </p>
<p style="top:332.1pt;left:80.0pt;font-size:11.0pt"><b>Legions</b> deploy in their <i>named</i> city, </p>
<p style="top:345.6pt;left:80.0pt;font-size:11.0pt">which must be Friendly. </p>
<p style="top:362.9pt;left:80.0pt;font-size:11.0pt"><b>Equitatae/Elephant</b> deploy in their </p>
<p style="top:376.4pt;left:80.0pt;font-size:11.0pt"><i>named</i> city, which must be Friendly. </p>
<p style="top:393.6pt;left:80.0pt;font-size:11.0pt"><b>Auxilia/Ballista</b> deploy in any Friendly </p>
<p style="top:407.1pt;left:80.0pt;font-size:11.0pt">city. </p>
<p style="top:424.4pt;left:80.0pt;font-size:11.0pt"><b>Navis</b> deploy in any Friendly <b><i>major</i></b> port. </p>
<p style="top:437.9pt;left:80.0pt;font-size:11.0pt">Steps can be added to existing Navis in </p>
<p style="top:451.4pt;left:80.0pt;font-size:11.0pt"><b>any</b> port, but never at sea.</p>
<p style="top:468.2pt;left:80.0pt;font-size:11.0pt"><b><i>IMPORTANT: </i></b><i>In all cases, new blocks and </i></p>
<p style="top:481.4pt;left:80.0pt;font-size:11.0pt"><i>steps must be raised in Friendly cities, </i></p>
<p style="top:494.5pt;left:80.0pt;font-size:11.0pt"><i>meaning a city currently occupied by at </i></p>
<p style="top:507.6pt;left:80.0pt;font-size:11.0pt"><i>least one Friendly block. New blocks and </i></p>
<p style="top:520.7pt;left:80.0pt;font-size:11.0pt"><i>steps can </i><b><i>never</i></b><i> be added to Vacant or </i></p>
<p style="top:533.9pt;left:80.0pt;font-size:11.0pt"><i>Contested cities. </i></p>
<p style="top:557.1pt;left:61.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">7.0 BATTLES</span></b></p>
<p style="top:580.4pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.1 BATTLE SEQUENCE</span></b></p>
<p style="top:594.5pt;left:80.0pt;font-size:11.0pt">Battles are fought one by one after all </p>
<p style="top:607.6pt;left:61.2pt;font-size:11.0pt">moves are completed. Player 1 determines </p>
<p style="top:620.7pt;left:61.2pt;font-size:11.0pt">which battle to fight first. Blocks are not </p>
<p style="top:633.9pt;left:61.2pt;font-size:11.0pt">revealed until a battle is fought. Reveal </p>
<p style="top:647.0pt;left:61.2pt;font-size:11.0pt">blocks (not Reserves) by tipping them </p>
<p style="top:660.1pt;left:61.2pt;font-size:11.0pt">forward at current <i>strength</i>. After the battle </p>
<p style="top:673.2pt;left:61.2pt;font-size:11.0pt">is completed, stand all blocks upright, then </p>
<p style="top:686.4pt;left:61.2pt;font-size:11.0pt">Player 1 selects the next battle. </p>
<p style="top:709.8pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.2 BATTLE TURNS</span></b></p>
<p style="top:723.9pt;left:80.0pt;font-size:11.0pt">Each block has one battle turn per </p>
<p style="top:737.0pt;left:61.2pt;font-size:11.0pt">Battle Round. In its turn, a block may <b><i>either</i></b> </p>
<p style="top:750.1pt;left:61.2pt;font-size:11.0pt">Fire, Retreat, or Pass, <b><i>except Retreat is not </i></b></p>
<p style="top:763.2pt;left:61.2pt;font-size:11.0pt"><b><i>allowed in Round 1. </i></b>The sequence of turns </p>
<p style="top:776.4pt;left:61.2pt;font-size:11.0pt">depends on combat ratings. “A” blocks go </p>
<p style="top:789.5pt;left:61.2pt;font-size:11.0pt">before “B” blocks, then “C” blocks, then </p>
<p style="top:802.6pt;left:61.2pt;font-size:11.0pt">"D" blocks. <b><i>Defending</i></b><i> </i>“A” blocks go before </p>
<p style="top:815.7pt;left:61.2pt;font-size:11.0pt">Attacking<i> </i>“A”<i> </i>blocks, and so on. </p>
<p style="top:832.6pt;left:80.0pt;font-size:11.0pt"> After all blocks have taken one Battle </p>
<p style="top:845.7pt;left:61.2pt;font-size:11.0pt">Turn, one Round<i> </i>has been fought. Battles are </p>
<p style="top:858.9pt;left:61.2pt;font-size:11.0pt">fought for a maximum of <b><i>four</i></b><b> </b><b><i>(4)</i></b> Rounds. </p>
<p style="top:872.0pt;left:61.2pt;font-size:11.0pt"><b><i>Attacking</i></b><b> </b>blocks <b><i>must retreat </i></b>during <b><i>Round </i></b></p>
<p style="top:885.1pt;left:61.2pt;font-size:11.0pt"><b><i>4 </i></b>in their normal battle turn.</p>
</div>
<div id="page7" style="background-image:url('rules7.jpg');width:765.0pt;height:990.0pt">
<p style="top:55.9pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:932.5pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:929.6pt;left:380.1pt;font-size:14.6pt"><b>7</b><b> </b></p>
<p style="top:932.5pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.9pt;left:301.2pt;font-size:11.0pt">If both players have an adjacent and </p>
<p style="top:114.0pt;left:282.5pt;font-size:11.0pt">Friendly sea and a Friendly destination, both </p>
<p style="top:127.2pt;left:282.5pt;font-size:11.0pt">can sea retreat.</p>
<p style="top:144.0pt;left:289.0pt;font-size:11.0pt"><b><i>EXAMPLE: </i></b><i>with a battle in Utica, if one </i></p>
<p style="top:157.2pt;left:288.8pt;font-size:11.0pt"><i>player has a Navis on Mare Internum, and </i></p>
<p style="top:170.3pt;left:288.8pt;font-size:11.0pt"><i>the other has a Navis on Mare Hispanum, </i></p>
<p style="top:183.4pt;left:288.8pt;font-size:11.0pt"><i>both players can Sea Retreat via their own </i></p>
<p style="top:196.5pt;left:288.8pt;font-size:11.0pt"><i>Friendly sea. </i></p>
<p style="top:219.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.7 REGROUPS</span></b></p>
<p style="top:234.0pt;left:301.2pt;font-size:11.0pt">When a battle ends the <b><i>victor</i></b> may </p>
<p style="top:247.2pt;left:282.5pt;font-size:11.0pt"><b><i>Regroup</i></b>. All victorious blocks (including any </p>
<p style="top:260.3pt;left:282.5pt;font-size:11.0pt">in Reserve) <b><i>can</i></b> move to any adjacent cities </p>
<p style="top:273.4pt;left:282.5pt;font-size:11.0pt">that are currently Friendly or Vacant. Road </p>
<p style="top:286.5pt;left:282.5pt;font-size:11.0pt">Limits (6.11) apply. </p>
<p style="top:303.4pt;left:301.2pt;font-size:11.0pt">Amphibious Movement cannot be used </p>
<p style="top:316.5pt;left:282.5pt;font-size:11.0pt">to Regroup. </p>
<p style="top:339.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.8 NAVIS BATTLES</span></b></p>
<p style="top:354.0pt;left:301.2pt;font-size:11.0pt">When enemy Navis occupy the same sea </p>
<p style="top:367.2pt;left:282.5pt;font-size:11.0pt">a Navis battle occurs. Navis have D2 or D3 </p>
<p style="top:380.3pt;left:282.5pt;font-size:11.0pt">combat, Defender first. As with land battles, </p>
<p style="top:393.4pt;left:282.5pt;font-size:11.0pt">the attacker must retreat during Round 4 if </p>
<p style="top:406.5pt;left:282.5pt;font-size:11.0pt">any defending ships remain.</p>
<p style="top:429.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.81 Shore Combat</span></b></p>
<p style="top:444.0pt;left:301.2pt;font-size:11.0pt">Navis can also be involved in battles </p>
<p style="top:457.2pt;left:282.5pt;font-size:11.0pt">ashore in ports, either as the Attacker or </p>
<p style="top:470.3pt;left:282.5pt;font-size:11.0pt">Defender. Navis can attack from an adjacent </p>
<p style="top:483.4pt;left:282.5pt;font-size:11.0pt">sea only. </p>
<p style="top:506.8pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.82 Navis Retreats</span></b></p>
<p style="top:520.9pt;left:301.2pt;font-size:11.0pt"> Navis may retreat in their normal "D" </p>
<p style="top:534.0pt;left:282.5pt;font-size:11.0pt">battle turn, starting in Round 2. </p>
<p style="top:551.3pt;left:288.8pt;font-size:11.0pt"><b>Attacking</b> Navis Retreat to:</p>
<p style="top:568.5pt;left:288.8pt;font-size:11.0pt">• Seas or Ports they came from, provided </p>
<p style="top:582.0pt;left:295.0pt;font-size:11.0pt">these locations are still Friendly or Vacant, </p>
<p style="top:595.5pt;left:295.0pt;font-size:11.0pt">or </p>
<p style="top:612.8pt;left:288.8pt;font-size:11.0pt">• Friendly adjacent seas, or </p>
<p style="top:630.0pt;left:288.8pt;font-size:11.0pt">• Friendly ports on the same sea. </p>
<p style="top:647.3pt;left:288.8pt;font-size:11.0pt"><b>Defending</b> Navis Retreat to:</p>
<p style="top:664.5pt;left:288.8pt;font-size:11.0pt">• Friendly adjacent seas, or </p>
<p style="top:681.8pt;left:288.8pt;font-size:11.0pt">• Vacant adjacent seas except where </p>
<p style="top:695.3pt;left:295.0pt;font-size:11.0pt">the Attacker came from, or </p>
<p style="top:712.5pt;left:288.8pt;font-size:11.0pt">• Friendly port on the <i>same</i> sea. </p>
<p style="top:729.4pt;left:301.2pt;font-size:11.0pt">If no Retreat is possible, Navis must win </p>
<p style="top:742.5pt;left:282.5pt;font-size:11.0pt">the fight or perish. </p>
<p style="top:765.9pt;left:282.5pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.83 Navis Regroups</span></b></p>
<p style="top:780.0pt;left:301.2pt;font-size:11.0pt">Navis that win a sea battle can <b><i>Regroup</i></b> </p>
<p style="top:793.2pt;left:282.5pt;font-size:11.0pt">to any adjacent sea that is Friendly or </p>
<p style="top:806.3pt;left:282.5pt;font-size:11.0pt">Vacant, or to any Friendly or Vacant port on </p>
<p style="top:819.4pt;left:282.5pt;font-size:11.0pt">the <b><i>same</i></b> sea. </p>
<p style="top:100.9pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.5 ELIMINATED BLOCKS</span></b></p>
<p style="top:115.0pt;left:80.0pt;font-size:11.0pt">Eliminated blocks are returned to their </p>
<p style="top:128.1pt;left:61.2pt;font-size:11.0pt">owner's Levy Pool, but are placed <b><i>face-up</i></b><i> (in </i></p>
<p style="top:141.2pt;left:61.2pt;font-size:11.0pt"><i>front of the upright blocks) </i>and <b><i>cannot</i></b> be </p>
<p style="top:154.4pt;left:61.2pt;font-size:11.0pt">levied again this Year. </p>
<p style="top:177.8pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.51 Leaders</span></b></p>
<p style="top:191.9pt;left:80.0pt;font-size:11.0pt">Leaders are <b><i>permanently</i></b> eliminated. </p>
<p style="top:205.0pt;left:61.2pt;font-size:11.0pt">Give the block as a "trophy" to the enemy </p>
<p style="top:218.1pt;left:61.2pt;font-size:11.0pt">player, who counts it as 1vp. </p>
<p style="top:235.0pt;left:80.0pt;font-size:11.0pt">When a player loses a leader, the </p>
<p style="top:248.1pt;left:61.2pt;font-size:11.0pt">third leader is added to the Levy Pool and </p>
<p style="top:261.2pt;left:61.2pt;font-size:11.0pt">becomes available to be built and deployed </p>
<p style="top:274.4pt;left:61.2pt;font-size:11.0pt">(normal cost) in any Friendly city.</p>
<p style="top:297.8pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.52 Cleopatra</span></b></p>
<p style="top:311.9pt;left:80.0pt;font-size:11.0pt">Cleopatra can fight for either side. If </p>
<p style="top:325.0pt;left:61.2pt;font-size:11.0pt">eliminated in battle she <i>immediately</i> joins </p>
<p style="top:338.1pt;left:61.2pt;font-size:11.0pt">the other side at strength I and fights for </p>
<p style="top:351.2pt;left:61.2pt;font-size:11.0pt">that side on her <b><i>next</i></b> battle turn.</p>
<p style="top:368.1pt;left:80.0pt;font-size:11.0pt">During each <b><i>Winter</i></b> turn, she must </p>
<p style="top:381.2pt;left:61.2pt;font-size:11.0pt">return to Alexandria. See 8.1.</p>
<p style="top:404.6pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.6 RETREATS</span></b></p>
<p style="top:418.7pt;left:80.0pt;font-size:11.0pt">Each block may retreat on its Battle </p>
<p style="top:432.2pt;left:61.2pt;font-size:11.0pt">Turn (instead of firing), except blocks can </p>
<p style="top:445.7pt;left:61.2pt;font-size:11.0pt"><b><i>never</i></b> retreat on <b><i>Battle Round 1.</i></b><i> </i>Blocks that </p>
<p style="top:459.2pt;left:61.2pt;font-size:11.0pt">cannot retreat when required are eliminated. </p>
<p style="top:482.6pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.61 Retreat Limits</span></b></p>
<p style="top:496.7pt;left:80.0pt;font-size:11.0pt">Road Limits (6.11) apply to all retreating </p>
<p style="top:509.9pt;left:61.2pt;font-size:11.0pt">blocks <b><i>each</i></b> Battle Round. Blocks can never </p>
<p style="top:523.0pt;left:61.2pt;font-size:11.0pt">retreat to <b><i>Enemy</i></b> or <b><i>Contested</i></b> cities/seas. </p>
<p style="top:539.9pt;left:80.0pt;font-size:11.0pt">Retreating across a <b><i>strait</i></b> has a limit of </p>
<p style="top:553.0pt;left:61.2pt;font-size:11.0pt">one (1) block per round. </p>
<p style="top:576.4pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.62 Attacker Retreats</span></b></p>
<p style="top:590.5pt;left:80.0pt;font-size:11.0pt">Attacking blocks can retreat on their </p>
<p style="top:603.6pt;left:61.2pt;font-size:11.0pt">battle turn starting in Round 2 and must </p>
<p style="top:616.7pt;left:61.2pt;font-size:11.0pt">retreat during Round 4. Blocks may Retreat </p>
<p style="top:629.9pt;left:61.2pt;font-size:11.0pt">to any adjacent <b><i>Vacant</i></b> cities via road(s) used </p>
<p style="top:643.0pt;left:61.2pt;font-size:11.0pt">to start or reinforce the battle, or to any </p>
<p style="top:656.1pt;left:61.2pt;font-size:11.0pt"><b><i>Friendly</i></b> adjacent cities. </p>
<p style="top:679.5pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.63 Defender Retreats</span></b></p>
<p style="top:693.6pt;left:80.0pt;font-size:11.0pt">Defending blocks can retreat on their </p>
<p style="top:706.7pt;left:61.2pt;font-size:11.0pt">battle turn starting on Round 2. Retreats </p>
<p style="top:719.9pt;left:61.2pt;font-size:11.0pt">are made to any adjacent cities, Friendly </p>
<p style="top:733.0pt;left:61.2pt;font-size:11.0pt">or Vacant, <b><i>but not along roads used by the </i></b></p>
<p style="top:746.1pt;left:61.2pt;font-size:11.0pt"><b><i>Attacker to enter the battle. </i></b></p>
<p style="top:769.5pt;left:61.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">7.64 Amphibious Retreats</span></b></p>
<p style="top:783.6pt;left:80.0pt;font-size:11.0pt"> Players can retreat land blocks by sea </p>
<p style="top:796.7pt;left:61.2pt;font-size:11.0pt">provided an adjacent sea is <b><i>Friendly</i></b>. A </p>
<p style="top:809.9pt;left:61.2pt;font-size:11.0pt">maximum of <b><i>one (1) block</i></b> <b><i>per Battle Round</i></b> </p>
<p style="top:823.0pt;left:61.2pt;font-size:11.0pt">can Sea Retreat. The destination port must </p>
<p style="top:836.1pt;left:61.2pt;font-size:11.0pt">be Friendly. Each block can Sea Retreat </p>
<p style="top:849.2pt;left:61.2pt;font-size:11.0pt">across <b><i>one (1) adjacent sea, </i></b>to a Friendly </p>
<p style="top:862.4pt;left:61.2pt;font-size:11.0pt">port(s) on that <b><i>same</i></b> sea only.</p>
<p style="top:99.9pt;left:505.0pt;font-size:9.5pt"><b>TIMELINE</b></p>
<p style="top:115.7pt;left:505.0pt;font-size:9.5pt"><b>60 BC: </b>First Triumvirate formed between Caesar, </p>
<p style="top:127.7pt;left:505.0pt;font-size:9.5pt">Crassius, and Pompey. Caesar is made proconsul of </p>
<p style="top:139.7pt;left:505.0pt;font-size:9.5pt">Gaul, Cisalpine Gaul, and Illyricum, commanding four </p>
<p style="top:151.7pt;left:505.0pt;font-size:9.5pt">legions. Pompey is made proconsul of Hispania, and </p>
<p style="top:163.7pt;left:505.0pt;font-size:9.5pt">Crassius proconsul of Syria.</p>
<p style="top:179.4pt;left:505.0pt;font-size:9.5pt"><b>53 BC: </b>Crassius is killed fighting in Parthia ending </p>
<p style="top:191.4pt;left:505.0pt;font-size:9.5pt">the First Triumvirate. Pompey governs Hispania from </p>
<p style="top:203.4pt;left:505.0pt;font-size:9.5pt">Rome while Caesar fights in Gaul.</p>
<p style="top:219.2pt;left:505.0pt;font-size:9.5pt"><b>52 BC: </b>Caesar commands ten legions and defeats </p>
<p style="top:231.2pt;left:505.0pt;font-size:9.5pt">Vercingetorix at Alesia, ending the Gallic Wars. Cato, </p>
<p style="top:243.2pt;left:505.0pt;font-size:9.5pt">Pompey, and Scipio lead a Senate faction opposed </p>
<p style="top:255.2pt;left:505.0pt;font-size:9.5pt">to Caesar's "populist policies". The Senate demands </p>
<p style="top:267.2pt;left:505.0pt;font-size:9.5pt">Caesar disband and return to Rome to answer charges </p>
<p style="top:279.2pt;left:505.0pt;font-size:9.5pt">of "war crimes". Caesar refuses to disband arguing he </p>
<p style="top:291.2pt;left:505.0pt;font-size:9.5pt">is proconsul of Gaul until 49BC. </p>
<p style="top:306.9pt;left:505.0pt;font-size:9.5pt"><b>50</b> <b>BC</b>: Caesar now has nine veteran legions, 3000 </p>
<p style="top:318.9pt;left:505.0pt;font-size:9.5pt">cavalry, and a 900 man bodyguard. Pompey has seven </p>
<p style="top:330.9pt;left:505.0pt;font-size:9.5pt">legions in Hispania, two in Italia, and two in Syria and </p>
<p style="top:342.9pt;left:505.0pt;font-size:9.5pt">Africa. Pompey has naval superiority. Senate declares </p>
<p style="top:354.9pt;left:505.0pt;font-size:9.5pt">Caesar an enemy of the state.</p>
<p style="top:370.7pt;left:505.0pt;font-size:9.5pt"><b>49 BC: </b>Caesar crosses Rubicon with XIII Legion in </p>
<p style="top:382.7pt;left:505.0pt;font-size:9.5pt">January. Pompey retreats from Rome to Brundisium. </p>
<p style="top:394.7pt;left:505.0pt;font-size:9.5pt">Caesar besieges Brundisium, but Pompey escapes by </p>
<p style="top:406.7pt;left:505.0pt;font-size:9.5pt">ship to Greece. Caesar now marches to Spain, where </p>
<p style="top:418.7pt;left:505.0pt;font-size:9.5pt">he forces five Pompey Legions to surrender at Llerda. </p>
<p style="top:434.4pt;left:505.0pt;font-size:9.5pt"><b>48 BC: </b>Caesar and Antonius assemble five legions at </p>
<p style="top:446.4pt;left:505.0pt;font-size:9.5pt">Brundisium and ship them to Greece. The Battle of </p>
<p style="top:458.4pt;left:505.0pt;font-size:9.5pt">Dyrrachium is fought in July, ending with a Pompey </p>
<p style="top:470.4pt;left:505.0pt;font-size:9.5pt">victory. Caesar retreats but then wins a decisive </p>
<p style="top:482.4pt;left:505.0pt;font-size:9.5pt">victory at Pharsalus in Thessaly. Pompey flees to </p>
<p style="top:494.4pt;left:505.0pt;font-size:9.5pt">Egypt where he is assassinated by command of </p>
<p style="top:506.4pt;left:505.0pt;font-size:9.5pt">Ptolemy XIII. Caesar now becomes involved in a civil </p>
<p style="top:518.4pt;left:505.0pt;font-size:9.5pt">war between Ptolemy XIII and his sister Cleopatra VII. </p>
<p style="top:530.4pt;left:505.0pt;font-size:9.5pt">Caesar supports Cleopatra and defeats Ptolemy XIII </p>
<p style="top:542.4pt;left:505.0pt;font-size:9.5pt">who drowns in the Nile. </p>
<p style="top:558.2pt;left:505.0pt;font-size:9.5pt"><b>47 BC: </b>Caesar attacks into Syria and Pontus, defeating </p>
<p style="top:570.2pt;left:505.0pt;font-size:9.5pt">Pharnaces II, a petty king who took advantage of the </p>
<p style="top:582.2pt;left:505.0pt;font-size:9.5pt">Roman Civil War to expand his power. Pharnaces </p>
<p style="top:594.2pt;left:505.0pt;font-size:9.5pt">is crushed at Battle of Zela, said to be the origin of </p>
<p style="top:606.2pt;left:505.0pt;font-size:9.5pt">the famous phrase "Veni, Vidi, Vici" (I came, I saw, I </p>
<p style="top:618.2pt;left:505.0pt;font-size:9.5pt">conquered).</p>
<p style="top:633.9pt;left:505.0pt;font-size:9.5pt"><b>46 BC: </b>Battle of Thapsus. Caesar invades Africa with </p>
<p style="top:645.9pt;left:505.0pt;font-size:9.5pt">10 legions and defeats Scipio's 14 legions. Scipio </p>
<p style="top:657.9pt;left:505.0pt;font-size:9.5pt">& Cato take their own lives. Pompey's son, Sextus </p>
<p style="top:669.9pt;left:505.0pt;font-size:9.5pt">Pompey, escapes to Hispania to continue the war.</p>
<p style="top:685.7pt;left:505.0pt;font-size:9.5pt"><b>45 BC: </b>Battle of Munda. Caesar invades Hispania by </p>
<p style="top:697.7pt;left:505.0pt;font-size:9.5pt">sea with 8 legions. He defeats Sextus (13 legions) who </p>
<p style="top:709.7pt;left:505.0pt;font-size:9.5pt">is killed, ending the war.</p>
<p style="top:725.4pt;left:505.0pt;font-size:9.5pt"><b>44 BC: </b>On the Ides of March, Caesar is assassinated </p>
<p style="top:737.4pt;left:505.0pt;font-size:9.5pt">in a conspiracy arranged by Brutus and Cassius. The </p>
<p style="top:749.4pt;left:505.0pt;font-size:9.5pt">assassins flee Rome; Antonius and Octavian assume </p>
<p style="top:761.4pt;left:505.0pt;font-size:9.5pt">command. </p>
<p style="top:777.2pt;left:505.0pt;font-size:9.5pt"><b>42 BC: </b>Battle of Phillipi. Octavian and Antonius defeat </p>
<p style="top:789.2pt;left:505.0pt;font-size:9.5pt">Brutus and Cassius, who both commit suicide. Eleven </p>
<p style="top:801.2pt;left:505.0pt;font-size:9.5pt">years later, the two victors fight for supremacy, a </p>
<p style="top:813.2pt;left:505.0pt;font-size:9.5pt">struggle that Octavian wins at Actium to become </p>
<p style="top:825.2pt;left:505.0pt;font-size:9.5pt">Augustus, the first Emperor of Imperial Rome. </p>
</div>
<div id="page8" style="background-image:url('rules8.jpg');width:765.0pt;height:990.0pt">
<p style="top:55.9pt;left:294.4pt;font-size:24.6pt"><b><span style="color:#ffffff">JULIUS CAESAR</span></b></p>
<p style="top:932.5pt;left:68.8pt;font-size:11.0pt"><b>Copyright © 2023 Columbia Games, Inc. </b></p>
<p style="top:929.6pt;left:380.1pt;font-size:14.6pt"><b>8</b><b> </b></p>
<p style="top:932.5pt;left:646.7pt;font-size:11.0pt"><b>Version 2.0</b></p>
<p style="top:100.7pt;left:62.2pt;font-size:17.1pt"><b><span style="color:#9d0a0e">8.0 WINTER TURN</span></b></p>
<p style="top:122.5pt;left:81.0pt;font-size:11.0pt">A Year ends when all five (5) cards have </p>
<p style="top:135.6pt;left:62.2pt;font-size:11.0pt">been played. A Winter Turn now occurs </p>
<p style="top:148.7pt;left:62.2pt;font-size:11.0pt">during which players determine if either has </p>
<p style="top:161.9pt;left:62.2pt;font-size:11.0pt">won. Play the winter events in the <b><i>exact</i></b> </p>
<p style="top:175.0pt;left:62.2pt;font-size:11.0pt">order given. </p>
<p style="top:198.4pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.1 CLEOPATRA GOES HOME</span></b></p>
<p style="top:212.5pt;left:81.0pt;font-size:11.0pt">Move Cleopatra to Alexandria. If </p>
<p style="top:225.6pt;left:62.2pt;font-size:11.0pt">enemy-occupied, she joins that side </p>
<p style="top:238.7pt;left:62.2pt;font-size:11.0pt">immediately at her current strength. </p>
<p style="top:262.1pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.2 VICTORY</span></b></p>
<p style="top:276.2pt;left:81.0pt;font-size:11.0pt">Determine if one player has won. </p>
<p style="top:289.4pt;left:62.2pt;font-size:11.0pt">See: 1.2.</p>
<p style="top:312.8pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.3 NAVIS TO PORT</span></b></p>
<p style="top:326.9pt;left:81.0pt;font-size:11.0pt">Move all Navis to a <b><i>Friendly</i></b> port on </p>
<p style="top:340.0pt;left:62.2pt;font-size:11.0pt">the <b><i>same</i></b> sea (Caesar first). Navis unable to </p>
<p style="top:353.1pt;left:62.2pt;font-size:11.0pt">move to a Friendly port are <b><i>disbanded</i></b>, but </p>
<p style="top:366.2pt;left:62.2pt;font-size:11.0pt">can be rebuilt in the upcoming Year. </p>
<p style="top:389.6pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.4 WINTER SUPPLY</span></b></p>
<p style="top:403.7pt;left:81.0pt;font-size:11.0pt">All cities can supply in winter a </p>
<p style="top:416.9pt;left:62.2pt;font-size:11.0pt">maximum of three (3) blocks without </p>
<p style="top:430.0pt;left:62.2pt;font-size:11.0pt">penalty. This limit is increased by the city </p>
<p style="top:443.1pt;left:62.2pt;font-size:11.0pt">value if any. Hence, <i>Genua</i> can support 3 </p>
<p style="top:456.2pt;left:62.2pt;font-size:11.0pt">blocks, <i>Massilia</i> can support 3+1=4, and </p>
<p style="top:469.4pt;left:62.2pt;font-size:11.0pt"><i>Rome</i> can support 3+2=5. </p>
<p style="top:486.2pt;left:81.0pt;font-size:11.0pt"><b><i>Each </i></b>surplus block (owner choice) is </p>
<p style="top:499.4pt;left:62.2pt;font-size:11.0pt"><b><i>disbanded</i></b> to the <b><i>Friendly</i></b> Levy Pool, but can </p>
<p style="top:512.5pt;left:62.2pt;font-size:11.0pt">be rebuilt in the upcoming Year. </p>
<p style="top:535.9pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.5 DISBANDING</span></b></p>
<p style="top:550.0pt;left:81.0pt;font-size:11.0pt">Players cannot <b>merge</b> blocks on the </p>
<p style="top:563.1pt;left:62.2pt;font-size:11.0pt">map. They may disband <b>any</b> block (except </p>
<p style="top:576.2pt;left:62.2pt;font-size:11.0pt">Cleopatra) to their <i>Levy Pool. </i>Steps on </p>
<p style="top:589.4pt;left:62.2pt;font-size:11.0pt">disbanded blocks are <b><i>forfeit</i></b>, but they can be </p>
<p style="top:602.5pt;left:62.2pt;font-size:11.0pt">rebuilt in the upcoming Year.</p>
<p style="top:625.9pt;left:62.2pt;font-size:12.2pt"><b><span style="color:#9d0a0e">8.6 YEAR RESET</span></b></p>
<p style="top:640.0pt;left:81.0pt;font-size:11.0pt">All face-up blocks in Levy Pools stand-</p>
<p style="top:653.1pt;left:62.2pt;font-size:11.0pt">up and are available to be recruited in the </p>
<p style="top:666.2pt;left:62.2pt;font-size:11.0pt">upcoming Year. </p>
<p style="top:683.1pt;left:81.0pt;font-size:11.0pt">Shuffle all 27 cards and deal six (6) cards </p>
<p style="top:696.2pt;left:62.2pt;font-size:11.0pt">to each player. Examine your cards and </p>
<p style="top:709.4pt;left:62.2pt;font-size:11.0pt">discard one (1). The discard is not revealed. </p>
<p style="top:101.4pt;left:505.3pt;font-size:14.6pt"><b><span style="color:#9d0a0e">INDEX</span></b></p>
<p style="top:120.6pt;left:517.5pt;font-size:11.0pt"><b>Amphibious Movement </b></p>
<p style="top:120.6pt;left:666.3pt;font-size:11.0pt"><b>6.3</b></p>
<p style="top:133.1pt;left:517.5pt;font-size:11.0pt"><b>Ballista </b></p>
<p style="top:133.1pt;left:636.4pt;font-size:11.0pt"><b>3.25, 7.42</b></p>
<p style="top:145.6pt;left:517.5pt;font-size:11.0pt"><b>Battles </b></p>
<p style="top:145.6pt;left:647.2pt;font-size:11.0pt"><b>2.3, 7.0</b></p>
<p style="top:158.1pt;left:517.5pt;font-size:11.0pt"> Disruption </p>
<p style="top:158.1pt;left:661.1pt;font-size:11.0pt">7.31</p>
<p style="top:170.6pt;left:517.5pt;font-size:11.0pt"> Hits </p>
<p style="top:170.6pt;left:666.5pt;font-size:11.0pt">7.4</p>
<p style="top:183.1pt;left:517.5pt;font-size:11.0pt"> Reserves </p>
<p style="top:183.1pt;left:666.5pt;font-size:11.0pt">7.3</p>
<p style="top:195.6pt;left:517.5pt;font-size:11.0pt"> Retreats </p>
<p style="top:195.6pt;left:666.5pt;font-size:11.0pt">7.6</p>
<p style="top:208.1pt;left:517.5pt;font-size:11.0pt"> Sequence </p>
<p style="top:208.1pt;left:666.5pt;font-size:11.0pt">7.1</p>
<p style="top:220.6pt;left:517.5pt;font-size:11.0pt"> Turns </p>
<p style="top:220.6pt;left:666.5pt;font-size:11.0pt">7.2</p>
<p style="top:233.1pt;left:517.5pt;font-size:11.0pt"><b>Cavalry </b></p>
<p style="top:233.1pt;left:660.9pt;font-size:11.0pt"><b>3.24</b></p>
<p style="top:245.6pt;left:517.5pt;font-size:11.0pt"><b>Cities </b></p>
<p style="top:245.6pt;left:666.3pt;font-size:11.0pt"><b>4.2</b></p>
<p style="top:258.1pt;left:517.5pt;font-size:11.0pt"> Control </p>
<p style="top:258.1pt;left:661.1pt;font-size:11.0pt">4.21</p>
<p style="top:270.6pt;left:517.5pt;font-size:11.0pt"> Victory </p>
<p style="top:270.6pt;left:666.5pt;font-size:11.0pt">1.2</p>
<p style="top:283.1pt;left:517.5pt;font-size:11.0pt"><b>Cleopatra </b></p>
<p style="top:283.1pt;left:617.3pt;font-size:11.0pt"><b>3.27, 7.52, 8.1</b></p>
<p style="top:295.6pt;left:517.5pt;font-size:11.0pt"><b>Combat Rating </b></p>
<p style="top:295.6pt;left:660.9pt;font-size:11.0pt"><b>3.12</b></p>
<p style="top:308.1pt;left:517.5pt;font-size:11.0pt"><b>Deployment </b></p>
<p style="top:308.1pt;left:666.3pt;font-size:11.0pt"><b>5.0</b></p>
<p style="top:320.6pt;left:517.5pt;font-size:11.0pt"> Historical </p>
<p style="top:320.6pt;left:666.5pt;font-size:11.0pt">5.1</p>
<p style="top:333.1pt;left:517.5pt;font-size:11.0pt"> Free Deployment </p>
<p style="top:333.1pt;left:666.5pt;font-size:11.0pt">5.3</p>
<p style="top:345.6pt;left:517.5pt;font-size:11.0pt"><b>Disbanding </b></p>
<p style="top:345.6pt;left:663.7pt;font-size:11.0pt"><b> 8.5</b></p>
<p style="top:358.1pt;left:517.5pt;font-size:11.0pt"><b>Disruption </b></p>
<p style="top:358.1pt;left:660.9pt;font-size:11.0pt"><b>7.31</b></p>
<p style="top:370.6pt;left:517.5pt;font-size:11.0pt"><b>Eliminations </b></p>
<p style="top:370.6pt;left:666.3pt;font-size:11.0pt"><b>7.5</b></p>
<p style="top:383.1pt;left:517.5pt;font-size:11.0pt"><b>Equitatus </b></p>
<p style="top:383.1pt;left:660.9pt;font-size:11.0pt"><b>3.24</b></p>
<p style="top:395.6pt;left:517.5pt;font-size:11.0pt"><b>Elephants </b></p>
<p style="top:395.6pt;left:660.9pt;font-size:11.0pt"><b>7.41</b></p>
<p style="top:408.1pt;left:517.5pt;font-size:11.0pt"><b>Friendly </b></p>
<p style="top:408.1pt;left:660.9pt;font-size:11.0pt"><b>4.21</b></p>
<p style="top:420.6pt;left:517.5pt;font-size:11.0pt"><b>Game Turns </b></p>
<p style="top:420.6pt;left:666.3pt;font-size:11.0pt"><b>2.0</b></p>
<p style="top:433.1pt;left:517.5pt;font-size:11.0pt"><b>Islands </b></p>
<p style="top:433.1pt;left:660.9pt;font-size:11.0pt"><b>4.41</b></p>
<p style="top:445.6pt;left:517.5pt;font-size:11.0pt"><b>Leaders </b></p>
<p style="top:445.6pt;left:617.3pt;font-size:11.0pt"><b>1.2, 3.21, 7.51</b></p>
<p style="top:458.1pt;left:517.5pt;font-size:11.0pt"><b>Levy </b></p>
<p style="top:458.1pt;left:647.2pt;font-size:11.0pt"><b>2.3, 6.4</b></p>
<p style="top:470.6pt;left:517.5pt;font-size:11.0pt"> Levy Pool </p>
<p style="top:470.6pt;left:666.5pt;font-size:11.0pt">5.2</p>
<p style="top:483.1pt;left:517.5pt;font-size:11.0pt"><b>Movement </b></p>
<p style="top:483.1pt;left:666.3pt;font-size:11.0pt"><b>6.0</b></p>
<p style="top:495.6pt;left:517.5pt;font-size:11.0pt"><b> </b>Group Move </p>
<p style="top:495.6pt;left:666.5pt;font-size:11.0pt">6.1</p>
<p style="top:508.1pt;left:517.5pt;font-size:11.0pt"><b> </b>Navis Move </p>
<p style="top:508.1pt;left:666.5pt;font-size:11.0pt">6.2</p>
<p style="top:520.6pt;left:517.5pt;font-size:11.0pt"><b> </b>Amphibious Move </p>
<p style="top:520.6pt;left:666.5pt;font-size:11.0pt">6.3</p>
<p style="top:533.1pt;left:517.5pt;font-size:11.0pt"><b>Navis </b></p>
<p style="top:533.1pt;left:660.9pt;font-size:11.0pt"><b>3.26</b></p>
<p style="top:545.6pt;left:517.5pt;font-size:11.0pt"><b> </b>Navis Move </p>
<p style="top:545.6pt;left:666.5pt;font-size:11.0pt">6.2</p>
<p style="top:558.1pt;left:517.5pt;font-size:11.0pt"><b> </b>Navis Battles </p>
<p style="top:558.1pt;left:666.5pt;font-size:11.0pt">7.8</p>
<p style="top:570.6pt;left:517.5pt;font-size:11.0pt"> Navis Wintering </p>
<p style="top:570.6pt;left:666.5pt;font-size:11.0pt">8.3</p>
<p style="top:583.1pt;left:517.5pt;font-size:11.0pt"><b>Pinning </b></p>
<p style="top:583.1pt;left:660.9pt;font-size:11.0pt"><b>6.13</b></p>
<p style="top:595.6pt;left:517.5pt;font-size:11.0pt"><b>Ports </b></p>
<p style="top:595.6pt;left:641.8pt;font-size:11.0pt"><b>4.42, 6.3</b></p>
<p style="top:608.1pt;left:517.5pt;font-size:11.0pt"><b>Regroups </b></p>
<p style="top:608.1pt;left:666.3pt;font-size:11.0pt"><b>7.7</b></p>
<p style="top:620.6pt;left:517.5pt;font-size:11.0pt"> Navis Regroups </p>
<p style="top:620.6pt;left:661.1pt;font-size:11.0pt">7.83</p>
<p style="top:633.1pt;left:517.5pt;font-size:11.0pt"><b>Reserves </b></p>
<p style="top:633.1pt;left:666.3pt;font-size:11.0pt"><b>7.3</b></p>
<p style="top:645.6pt;left:517.5pt;font-size:11.0pt"><b>Retreats </b></p>
<p style="top:645.6pt;left:666.3pt;font-size:11.0pt"><b>7.6</b></p>
<p style="top:658.1pt;left:517.5pt;font-size:11.0pt"> Attacker Retreats </p>
<p style="top:658.1pt;left:661.1pt;font-size:11.0pt">7.62</p>
<p style="top:670.6pt;left:517.5pt;font-size:11.0pt"> Defender Retreats </p>
<p style="top:670.6pt;left:661.1pt;font-size:11.0pt">7.63</p>
<p style="top:683.1pt;left:517.5pt;font-size:11.0pt"> Navis Retreats </p>
<p style="top:683.1pt;left:661.1pt;font-size:11.0pt">7.82</p>
<p style="top:695.6pt;left:517.5pt;font-size:11.0pt"> Retreat Limits </p>
<p style="top:695.6pt;left:661.1pt;font-size:11.0pt">7.61</p>
<p style="top:708.1pt;left:517.5pt;font-size:11.0pt"> Sea Retreats </p>
<p style="top:708.1pt;left:661.1pt;font-size:11.0pt">7.64</p>
<p style="top:720.6pt;left:517.5pt;font-size:11.0pt"><b>Roads </b></p>
<p style="top:720.6pt;left:666.3pt;font-size:11.0pt"><b>4.3</b></p>
<p style="top:733.1pt;left:517.5pt;font-size:11.0pt"> Major & Minor Roads </p>
<p style="top:733.1pt;left:661.1pt;font-size:11.0pt">4.31</p>
<p style="top:745.6pt;left:517.5pt;font-size:11.0pt"><b>Sea Moves </b></p>
<p style="top:745.6pt;left:666.3pt;font-size:11.0pt"><b>6.2</b></p>
<p style="top:758.1pt;left:517.5pt;font-size:11.0pt"><b>Seas </b></p>
<p style="top:758.1pt;left:666.3pt;font-size:11.0pt"><b>4.4</b></p>
<p style="top:770.6pt;left:517.5pt;font-size:11.0pt"><b>Straits </b></p>
<p style="top:770.6pt;left:660.9pt;font-size:11.0pt"><b>4.32</b></p>
<p style="top:783.1pt;left:517.5pt;font-size:11.0pt"><b>Supply (Winter) </b></p>
<p style="top:783.1pt;left:666.3pt;font-size:11.0pt"><b>8.4</b></p>
<p style="top:795.6pt;left:517.5pt;font-size:11.0pt"><b>Victory </b></p>
<p style="top:795.6pt;left:666.3pt;font-size:11.0pt"><b>1.2</b></p>
<p style="top:808.1pt;left:517.5pt;font-size:11.0pt"><b>Winter </b></p>
<p style="top:808.1pt;left:666.3pt;font-size:11.0pt"><b>8.0</b></p>
<p style="top:100.7pt;left:282.8pt;font-size:17.1pt"><b><span style="color:#9d0a0e">GAME CREDITS</span></b></p>
<p style="top:118.7pt;left:282.5pt;font-size:11.0pt"><b>Game Design:</b> </p>
<p style="top:118.7pt;left:365.0pt;font-size:11.0pt"><i>Justin Thompson </i></p>
<p style="top:131.9pt;left:282.5pt;font-size:11.0pt"> </p>
<p style="top:131.9pt;left:365.0pt;font-size:11.0pt"><i>Grant Dalgliesh</i></p>
<p style="top:152.5pt;left:282.5pt;font-size:11.0pt"><b>Developer:</b> </p>
<p style="top:152.5pt;left:365.0pt;font-size:11.0pt"><i>Tom Dalgliesh</i></p>
<p style="top:173.1pt;left:282.5pt;font-size:11.0pt"><b>Art/Graphics:</b> </p>
<p style="top:173.1pt;left:365.0pt;font-size:11.0pt"><i>Karim Chakroun </i></p>
<p style="top:186.2pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:186.2pt;left:365.0pt;font-size:11.0pt"><i>Mark Churms</i></p>
<p style="top:206.9pt;left:282.5pt;font-size:11.0pt"><b>Contributors:</b><i> </i></p>
<p style="top:206.9pt;left:365.0pt;font-size:11.0pt"><i>Mark Adams </i></p>
<p style="top:220.4pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:220.4pt;left:365.0pt;font-size:11.0pt"><i>Bill Alderman </i></p>
<p style="top:233.9pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:233.9pt;left:365.0pt;font-size:11.0pt"><i>Tor Andersson </i></p>
<p style="top:247.0pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:247.0pt;left:365.0pt;font-size:11.0pt"><i>Clayton Baisch </i></p>
<p style="top:260.1pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:260.1pt;left:365.0pt;font-size:11.0pt"><i>Kevin Duke </i></p>
<p style="top:273.2pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:273.2pt;left:365.0pt;font-size:11.0pt"><i>Stan Hilinski </i></p>
<p style="top:286.7pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:286.7pt;left:365.0pt;font-size:11.0pt"><i>Steve Koleszar </i></p>
<p style="top:300.2pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:300.2pt;left:365.0pt;font-size:11.0pt"><i>Gerald Lientz </i></p>
<p style="top:313.7pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:313.7pt;left:365.0pt;font-size:11.0pt"><i>Stuart Pierce </i></p>
<p style="top:327.2pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:327.2pt;left:365.0pt;font-size:11.0pt"><i>Dave Platnick </i></p>
<p style="top:340.7pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:340.7pt;left:365.0pt;font-size:11.0pt"><i>Bill Powers </i></p>
<p style="top:354.2pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:354.2pt;left:365.0pt;font-size:11.0pt"><i>Bruce Reiff </i></p>
<p style="top:367.7pt;left:282.5pt;font-size:11.0pt"><i> </i></p>
<p style="top:367.7pt;left:365.0pt;font-size:11.0pt"><i>George Seary</i></p>
<p style="top:799.0pt;left:344.8pt;font-size:11.0pt"><b>COLUMBIA GAMES, INC </b></p>
<p style="top:812.2pt;left:344.8pt;font-size:11.0pt"><b>POB 1600, BLAINE </b></p>
<p style="top:825.3pt;left:344.8pt;font-size:11.0pt"><b>WA 98231 USA</b></p>
<p style="top:838.4pt;left:344.6pt;font-size:11.0pt">800/636-3631 (toll free)</p>
<p style="top:872.2pt;left:301.2pt;font-size:11.0pt">For rule updates, see:</p>
<p style="top:889.0pt;left:301.2pt;font-size:11.0pt">www.columbiagames.com</p>
</div>
</body>
</html>
|