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
|
<!DOCTYPE html>
<title>Algeria - Charts & Tables</title>
<meta name="viewport" content="width=600">
<link rel="stylesheet" href="/fonts/fonts.css">
<style>
html {
font-family: Source Serif
}
body {
max-width: 80ch;
margin: 0 auto;
padding: 36px
}
h1,
h2,
h3,
h4,
p,
ul,
li {
margin: 0;
padding: 0;
font-size: 16px;
line-height: 1.5;
}
h2 a,
h3 a,
h4 a {
color: black
}
ul {
padding-left: 18px;
}
h1 {
font-size: 36px;
margin: 36px;
}
h2,
h3 {
font-size: 18px;
margin: 24px 0 12px 0;
}
h4,
p,
ul,
li,
aside {
margin: 12px 0;
}
aside {
margin: 18px 0;
}
nav ul,
nav li {
margin: 0;
list-style: none;
}
h1 {
text-align: center
}
h2 {
border-bottom: 2px solid green;
}
dl {
margin: 0;
display: grid;
grid-template-columns: max-content auto;
}
dt {
grid-column-start: 1;
font-weight: bold;
}
dd {
margin-left: 6px;
grid-column-start: 2;
}
img.big {
display: block;
margin: 0 auto;
max-width: calc(100% - 4px)
}
img.square {
border: 1px solid black;
border-radius: 12px;
margin: 4px 4px;
}
img.round {
border: 1px solid black;
border-radius: 50%;
margin: 4px 4px;
}
aside {
background-color: #e4ded0;
padding: 6px 12px;
}
var {
font-style: normal;
font-variant: small-caps;
}
a {
text-decoration: none;
color: blue
}
a:hover {
text-decoration: underline
}
.note {
font-style: italic
}
.example {
font-style: italic
}
div.imglist {
display: flex;
gap: 36px;
justify-content: center;
}
div.imglist div {
text-align: center;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
border: 1px solid black;
padding: 0 5px;
margin: 0;
vertical-align: top;
}
th {
background-color: gainsboro;
}
th,
td,
td li {
font-family: "Source Serif SmText";
font-size: 10pt;
line-height: normal;
}
td ul,
td li {
margin: 0;
}
ul.drm {
list-style-type: none;
padding: 0;
}
.small {
font-size: small;
}
.center {
text-align: center
}
.nowrap {
white-space: nowrap;
}
</style>
</head>
<body>
<h1>Algeria: The War of Independence 1954 - 1962</h1>
<h1>CHARTS & TABLES</h1>
<h2>Table of Contents</h2>
<nav>
<ul>
<li><a href="#fln">A. FLN Player Charts and Tables</a>
<ul>
<li><a href="#fln-reinforcement">A.1 Reinforcement Phase Actions</a>
<li><a href="#fln-missions">A.2 Operations Phase Missions</a>
<li><a href="#fln-mst">A.3 Mission Success Table</a>
<li><a href="#fln-ap-sources">A.4 FLN AP Sources</a>
</ul>
<li><a href="#gov">B. Government Player Charts and Tables</a>
<ul>
<li><a href="#gov-reinforcement">B.1 Government Mobilization and Activation Table</a>
<li><a href="#gov-coup">B.2 Coup Table</a>
<li><a href="#gov-missions">B.3 Operations Phase Missions</a>
<li><a href="#gov-mst">B.4 Mission Success Table</a>
</ul>
<li><a href="#common">C. Common Charts and Tables</a>
<ul>
<li><a href="#phases">C.1 Sequence of Play</a>
<li><a href="#events">C.2 Random Events Table</a>
<li><a href="#crt">C.3 Combat Results Table</a>
<li><a href="#depreciation">C.4 Depreciation Table</a>
<li><a href="#recovery">C.5 Recovery Table</a>
<li><a href="#psl-adjustment">C.6 PSL Adjustments Summary</a>
<li><a href="#units">C.7 Unit Identification Chart</a>
<li><a href="#scenarios">C.8 Scenarios</a>
</ul>
</ul>
</nav>
<h2>
<a href="#fln" id="fln">A. FLN Player Charts and Tables</a>
</h2>
<h3><a href="#fln-reinforcement" id="fln-reinforcement">A.1 Reinforcement Phase Actions</a></h3>
<table>
<tr>
<th>Activity
<th>AP
<th>Notes
<th>Result
<tr>
<td class="nowrap">Build Cadre or Band
<td class="center nowrap">3 (2)
<td>
<ul>
<li>Non-neutralized Front
<li>Only 2 AP to build in Morocco / Tunisia
</ul>
<td>Place in UG box of same area or country as Front
<tr>
<td class="nowrap">Convert Cadre to Front
<td class="center">3
<td>
<ul>
<li>Non-neutralized Cadre
<li>Only 1 Front per area
<li>Not in Remote areas
</ul>
<td>Exchange counters
<tr>
<td class="nowrap">Convert Cadre to Band
<td class="center">1
<td>
<ul>
<li>Non-neutralized Cadre
<li>Does not require presence of a Front
</ul>
<td>Exchange counters
<tr>
<td class="nowrap">Convert Band to Failek
<td class="center">2
<td>
<ul>
<li>Only possible in Morocco / Tunisia
</ul>
<td>Exchange counters
</table>
<h3><a href="#fln-missions" id="fln-missions">A.2 Operations Phase Missions</a></h3>
<table>
<tr>
<th>Activity
<th>AP
<th>Notes
<th>Result
<th>DRM
<tr>
<td>Propaganda
<td class="center">1
<td>
<ul>
<li>Front or Cadre may do
<li>Only 1 mission/area/turn
<li>Not in Remote areas
</ul>
<td>
<dl class="result">
<dt># =</dt>
<dd>PSP added to FLN or subtracted from Govt PSL (any combo, FLN chooses; x2 if Urban area)</dd>
<dt>+ =</dt>
<dd>unit eliminated or reduced</dd>
</dl>
<td>
<ul class="drm">
<li>-1 x # units on Patrol
<li>-1 area is Terrorized
</ul>
<tr>
<td>Strike
<td class="center">3
<td>
<ul>
<li>Uses Front, Cadres may assist for DRM
<li>Urban area only; only 1 mission/area/turn
<li>Penalty if Government player does not React
</ul>
<td>
<dl class="result">
<dt># =</dt>
<dd>#d6 added to FLN or subtracted from Govt PSL (any combo; FLN chooses)</dd>
<dt>+ =</dt>
<dd>all FLN units conducting mission eliminated / reduced</dd>
<dt>@ =</dt>
<dd>all Police units in area neutralized</dd>
<dt>-1d6</dt>
<dd>Gov PSL if no React</dd>
</dl>
<td>
<ul class="drm">
<li>-1 x # units on Patrol
<li>-1 area is Terrorized
<li>+1 x # Cadre assisting
</ul>
<tr>
<td>Move
<td class="center">0
<td>
<ul>
<li>1 mobile unit attempt at a time; any distance within current
<i>wilaya</i>, if crossing <i>wilaya</i> or int'l border may move
only to area sharing border with current <i>wilaya</i> or country
</ul>
<td>
<dl class="result">
<dt>+ =</dt>
<dd>unit eliminated</dd>
</dl>
<td>
<ul class="drm">
<li>-1 x # units on Patrol in area moved to
<li>-? = Border Zone DRM, if crossed international border
</ul>
<tr>
<td>Raid
<td class="center">1
<td>
<ul>
<li>Band/Failek may do (extra units give + DRM)
<li>Only 1 mission/area/turn
<li>Not in Remote area
</ul>
<td>
<dl class="result">
<dt># =</dt>
<dd>AP gained (x2 if Urban area)</dd>
<dt>+ =</dt>
<dd>1 Band/Failek neutralized, area is Terrorized</dd>
<dt>@ =</dt>
<dd>1 Police unit neutralized, area is Terrorized</dd>
</dl>
<td>
<ul class="drm">
<li>+1 x (# units-1)
<li>-1 x # units on Patrol
</ul>
<tr>
<td>Harass
<td class="center">0
<td>
<ul>
<li>Band/Failek may do (units attack singly unless Failek present, they may combine)
<li>Choose one Govt unit for target
</ul>
<td>
Roll on Combat Results Table; Govt unit fires back at HALF firepower (round up).
<td>
</table>
<h3><a href="#fln-mst" id="fln-mst">A.3 Mission Success Table</a></h3>
<table>
<tr>
<th>Roll (1d6)
<td>-1
<td>0
<td>1
<td>2
<td>3
<td>4
<td>5
<td>6
<td>7
<td>8
<tr>
<th>Result
<td>0+
<td>0+
<td>1+
<td>1
<td>1
<td>2
<td>2
<td>3@
<td>4@
<td>5@
</table>
<h3><a href="#fln-ap-sources" id="fln-ap-sources">A.4 FLN AP Sources</a></h3>
<table>
<tr>
<th>Source
<th>Urban
<th>Rural
<th>Remote
<tr>
<td>Areas under FLN Control<br />(-1 AP if area is terrorized)
<td>5 if controlled, 2 if contested but non-neutralized FLN units are present
<td>2 if controlled, 1 if contested but non-neutralized FLN units are present
<td>0
<tr>
<td>FLN PSL
<td colspan="3">AP = FLN PSL x 10% (round fractions up) MINUS # of Govt Naval Points
<tr>
<td>Raid missions
<td colspan="3">As determined by Mission Success Table rolls
<tr>
<td>Random Events
<td colspan="3">As determined by random event rolled
</table>
<h2>
<a href="#gov" id="gov">B. Government Player Charts and Tables</a>
</h2>
<h3><a href="#gov-reinforcement" id="gov-reinforcement">B.1 Government Mobilization and Activation Table</a></h3>
<table>
<tr>
<th>Item
<th>PSP to Mobilize
<th>PSP to Activate (unit moves to OC if not Activated)
<tr>
<td>French division
<td class="center">5
<td class="center">1
<tr>
<td>French brigade
<td class="center">2
<td class="center">1/2
<tr>
<td>French Elite brigade
<td class="center">3
<td class="center">1/2
<tr>
<td>Algerian brigade
<td class="center">2
<td class="center">0
<tr>
<td>Police unit
<td class="center">1 (place in PTL box)
<td class="center">0
<tr>
<td>1 Air Point
<td class="center">2
<td class="center">0
<tr>
<td>1 Naval / Helo Point
<td class="center">3
<td class="center">0
<tr>
<td>Border Zone
<td class="center">6 (per DRM, including initial "0")
<td class="center">1 (flip Status marker to "inactive" if not Activated)
</table>
<h3><a href="#gov-coup" id="gov-coup">B.2 Coup Table</a></h3>
<p class="small">(use if Government PSL <= 30; coup attempt if roll 6 on a 1d6; DRM +1 = if OAS is deployed in
France)</p>
<table>
<tr>
<th>Die Roll (2d6)
<th>Result (DRM +1 = if OAS is deployed in France)
<tr>
<td>2
<td>wild success: +3d6 PSP, mobilize 2d6 PSP of units for free
<tr>
<td>3-4
<td>big success: +2d6 PSP, mobilize 1d6 PSP of units for free
<tr>
<td>5-6
<td>success: +1d6 PSP
<tr>
<td>7
<td>fizzle: -1d6 PSP
<tr>
<td>8-9
<td>failure: -2d6 PSP, remove 1 elite unit from the game
<tr>
<td>10-12
<td>abject failure: -3d6 PSP, remove 1d6 elite units from the game
</table>
<h3><a href="#gov-missions" id="gov-missions">B.3 Operations Phase Missions</a></h3>
<table>
<tr>
<th>Mission
<th>PSP
<th>Notes
<th>Result
<th>DRM
<tr>
<td>Patrol
<td class="center">0
<td>
<ul>
<li>Place in Deployment Phase
<li>Only mission Police units can do
</ul>
<td>Patrolling mobile units may React or join a Flush in their area
<td>
<tr>
<td>Flush
<td class="center">0
<td>
<ul>
<li>Uses mobile units in OPS/PTL box in <b>same</b> area (airmobile units may travel any distance)
<li>Only versus units in OPS or OC box
<li>Units may combine only if all Elite, or Division is in Area
</ul>
<td>Roll d6 per FLN unit: <= total Contact rating: unit Contacted. Contacted FLN units, then Government,
fire on CRT. Place surviving FLN units and Government units in OC box
<td>
<ul class="drm">
<li>+1 Evasion rating of unit is higher than total Contact rating
<li>+1 in Remote area
<li>+1 area is Terrorized
<li>-1 in Urban area
</ul>
<tr>
<td>React
<td class="center">0
<td>
<ul>
<li>Use Mobile units in OPS/PTL box in <b>same</b> area (airmobile units may travel any distance)
<li>Only vs. units that just performed mission
<li>Units may combine only if all Elite, or Division is in Area
</ul>
<td>Contact automatic. Roll d6 per FLN unit: <= Evasion rating: unit moves to UG box. Remaining FLN
units, then Government, fire on CRT. Place surviving FLN units and Government units in OC box.
<td>
<tr>
<td>Intelligence
<td class="center">1
<td>
<ul>
<li>Need non-neutralized Police unit or units in area
<li>Only vs. units in UG box
</ul>
<td>Roll d6 per FLN unit: <= total Contact rating of non-neutralized Police units: unit moves to OC box
<td>
<ul class="drm">
<li>+1 Evasion rating of unit is higher than total Contact ratings
<li>+1 in Remote area
<li>+1 area is Terrorized
<li>-1 in Urban area
</ul>
<tr>
<td>Civil Affairs
<td class="center">1
<td>
<ul>
<li>Need non-neutralized Police unit in area
<li>Only 1 Mission/Area/turn
<li>Roll on Mission Success Table
<li>Not in Remote areas
</ul>
<td># = PSP subtracted from FLN PSL<br>+ @ = remove Terror marker in area, if present
<td>+1 if Amnesty random event in effect
<tr>
<td>Suppression
<td class="center">1
<td>
<ul>
<li>Need non-neutralized Police unit in area
<li>Only 1 Mission/Area/turn
<li>Roll on Mission Success Table
<li>Elite units may assist for DRM
</ul>
<td># = number of FLN Bands/Faileks neutralized<br>@ = area Terrorized; all Cadres and Fronts are
neutralized<br>+ = area Terrorized; -1d6 Government PSP
<td>
<ul class="drm">
<li>+1 x # Elite units assisting
<li>+1 if Amnesty random event in effect
</ul>
<tr>
<td>Population Resettlement
<td class="center">1
<td>
<ul>
<li>Need non-neutralized Police unit in area
<li>Rural area only
<li>Govt must afterwards "pay" 1 PSP per turn per area resetled
</ul>
<td>Area automatically and permanently becomes Remote and Terrorized (Fronts convert to Cadres); FLN +3d6
PSP
<td>
</table>
<h3><a href="#gov-mst" id="gov-mst">B.4 Mission Success Table</a></h3>
<table>
<tr>
<th>Roll (1d6)
<td>-1
<td>0
<td>1
<td>2
<td>3
<td>4
<td>5
<td>6
<td>7
<td>8
<tr>
<th>Result
<td>0+
<td>0+
<td>1+
<td>1
<td>1
<td>2
<td>2
<td>3@
<td>4@
<td>5@
</table>
<h2>
<a href="#common" id="common">C. Common Charts and Tables</a>
</h2>
<h3><a href="#phases" id="phases">C.1 Sequence of Play</a></h3>
<table>
<tr>
<th class="nowrap">Random Events Phase
<td>one player rolls on Random Events Table, implement result, see who controls OAS (1-3=FLN)
<tr>
<th>Reinforcement Phase
<td>Both sides accrue and spend AP or PSL to build, convert, mobilize, activate units/ Border Zone.
Government player goes first. OAS activates if Government PSL =< 30.
<tr>
<th>Deployment Phase
<td>Government changes Division modes, puts mobile units in PTL box of same area, or in OPS box of any area
in Algeria. FLN moves units from UG to OPS box of same area (may deploy 1 Cadre to France).
<tr>
<th>Operations Phase
<td>FLN chooses whether to act, or let Government act. Either player may pass. Consecutive Passes end the
phase. Players' PSLs may be adjusted during this Phase, depending on events.
<tr>
<th>Turn Interphase
<td>
<tr>
<td colspan="2">
<ul>
<li>Control/Depreciation Segment: Determine Controlled and Contested areas. Roll for Depreciation of
unspent AP and against maximum Air Points and Helo Points. Reset Air/Helo Available markers to
maximum points.
<li>Recovery Segment: Neutralized units and Terrorized areas roll to recover.
<li>Redeployment Segment: Government mobile units replaced in OPS box of same area; FLN units
replaced in UG box.
<li>Final PSL Adjustment Segment: Check for Coup d'etat; adjust Political Support Levels as
required.
</ul>
<h4>Control</h4>
<ul>
<li>both sides sum up Control Points in each area. 3 Control Points for each FLN Front or Dispersed
mode Division, 1 for each other unit. Neutralized units don't count.
<li>If one side has 2x or more Points than the other, then it gets Control: place Control marker.
<li>If more but less than 2x as many, take the difference and both sides try to score less than or
equal to this # on 1d6. If one player makes it he gets Control. If nether or both do, area is
Contested.
</ul>
</table>
<h3><a href="#events" id="events">C.2 Random Events Table</a></h3>
<p class="small">(roll 1d6 twice in succession)</p>
<table>
<tr>
<td class="nowrap">11-26
<td><b>No event.</b> Lucky you.
<tr>
<td class="nowrap">31-33
<td><b>FLN Foreign Arms shipment.</b> The FLN player adds 2d6 AP, minus the current number of Naval Points.
<tr>
<td class="nowrap">34-36
<td><b>Jealousy and Paranoia.</b> FLN units may not Move across <i>wilaya</i> borders this turn only (they
may move across international borders).
<tr>
<td class="nowrap">41-42
<td><b>Elections in France.</b> Government player rolls on the Coup Table (no DRM) and adds or subtracts the
number of PSP indicated: no units are mobilized or removed.
<tr>
<td class="nowrap">43-44
<td><b>UN Debates Algerian Independence.</b> Player with higher PSL raises FLN or lowers Government PSL by
1d6.
<tr>
<td class="nowrap">45-46
<td><b>FLN Factional Purge.</b> The Government player chooses one <i>wilaya</i> and rolls 1d6, neutralizing
that number of FLN units there (the FLN player's choice which ones).
<tr>
<td class="nowrap">51-54
<td><b>Morocco and Tunisia Gain Independence.</b> Raise both FLN and Government PSL by 2d6; FLN player may
now Build/Convert units in these two countries as if a Front were there and Government may begin to
mobilize the Border Zone. See 11.22.<br>
If this event is rolled again, or if playing the 1958 or 1960 scenarios, FLN player instead rolls on the
Mission Success Table (no DRM) and gets that number of AP (represents infiltration of small numbers of
weapons and troops through the borders).
<tr>
<td class="nowrap">55-56
<td><b>NATO pressures France to boost European defense.</b> The Government player rolls 1d6 and must remove
that number of French Army brigades (a division counts as three brigades) from the map. The units may be
re-mobilized at least one turn later.
<tr>
<td class="nowrap">61-62
<td><b>Suez Crisis.</b> The Government player must remove 1d6 elite units from the map, up to the number
actually available: they will return in the Reinforcement Phase of the next turn automatically - they do
not need to be mobilized again but do need to be activated. Treat as "No Event" if rolled again, or
playing 1958 or 1960 scenarios.
<tr>
<td class="nowrap">63-64
<td><b>Amnesty.</b> The French government offers "the peace of the brave" to FLN rebels. All Government
Civil Affairs or Suppression missions get a +1 DRM this turn.
<tr>
<td class="nowrap">65-66
<td><b>Jean-Paul Sartre writes article condemning the war.</b> Reduce Government PSL by 1 PSP.
</table>
<h3><a href="#crt" id="crt">C.3 Combat Results Table</a></h3>
<table>
<tr>
<th>Die Roll
<th>1
<th>2-4
<th>5-8
<th>9-15
<th>16-24
<th>25-36+
<tr>
<td>1
<td>-
<td>-
<td>1
<td>1
<td>2
<td>3
<tr>
<td>2
<td>-
<td>-
<td>1
<td>2
<td>4
<td>5
<tr>
<td>3
<td>-
<td>-
<td>2
<td>3
<td>5
<td>7
<tr>
<td>4
<td>-
<td>1
<td>2
<td>3
<td>5
<td>8
<tr>
<td>5
<td>-
<td>1
<td>2
<td>4
<td>6
<td>10
<tr>
<td>6
<td>1
<td>2
<td>3
<td>5
<td>8
<td>12
</table>
<p class="small">
Total Firepower Ratings involved (+1d6 for each Air Point used: no Air Points in Urban areas) read across to
correct
column, and roll 1d6. Result is the number of 'hits' on enemy units. Each 'hit' on Government units is -1 PSP to
the
Government PSL or +1 to the FLN PSL: each 'hit' on FLN units eliminates one Cadre or Band, or reduces a Front to
a
Cadre, or reduces a Failek to a Band (FLN player chooses how to distribute his losses). Excess "hits" on FLN
units
are not implemented. Remaining involved units of the side that received the largest number of 'hits' (according
to
the table, whether implemented or not) are Neutralized (no one is neutralized if equal results). When units fire
at
half Firepower Rating, round fractions up.
</p>
<h3><a href="#depreciation" id="depreciation">C.4 Depreciation Table (10.11)</a></h3>
<p class="small">Roll 1d6. DRM: -1 for PSL <= 30, +1 for PSL => 70.<br>
If (roll) <= Loss Number; then deduct the indicated numer of Points</p>
<table>
<tr>
<th>Points
<td>1-5
<td>6-10
<td>11-15
<td>16-20
<td>21-24
<td>≥ 25</td>
<tr>
<th>Loss Number
<td>-1
<td>-2
<td>-3
<td>-4
<td>-5
<td>-6
</tr>
</table>
<h3><a href="#recovery" id="recovery">C.5 Recovery Table (10.2)</a></h3>
<table>
<tr>
<td>
<th>Neutralized Unit
<th>Terrorized Area
<tr>
<td>Die roll
<td>DRM:<br>
+1 elite unit or PSL => 70<br>
-1 PSL <= 30
<td>DRM:<br>
+1 no non-neutralized FLN units in area
<tr>
<td><1-4
<td>--
<td>--
<tr>
<td>5-6+
<td>Recovers
<td>Recovers
</table>
<h3><a href="#psl-adjustment" id="psl-adjustment">C.6 PSL Adjustments Summary</a></h3>
<table>
<tr>
<th>Who
<th>#PSP
<th>Why
<th>When
<tr>
<td>Both sides<td>+/-?<td>As demanded by Random Event<td>Random Events Phase
<tr>
<td>Government<td>-?<td>For units newly mobilized or activated<td>Reinforcement Phase
<tr>
<td>FLN<br>Government<td>+?<br>-?<td>Propaganda or Strike mission (FLN choice, any combination)<td>Operations Phase
<tr>
<td>FLN<td>-?<td>Civil Affairs mission<td>Operations Phase
<tr>
<td>FLN<td>+3d6<td>Population Resettlement mission<td>Operations Phase
<tr>
<td>Government<td>-1d6<td>failed Suppression mission<td>Operations Phase
<tr>
<td>Government<br>FLN<td>+1 OR<br>-1<td>for each FLN Cadre or Band eliminated (Government player's choice)<td>Operations Phase
<tr>
<td>Government<br>FLN<td class="nowrap">+2 AND<br>-1<td>for each Front reduced to a Cadre, or Failek reduced to a Band<td>Operations Phase
<tr>
<td>Government<br>FLN<td>-1 OR<br>+1<td>for each 'hit' inflicted on Government mobile units, OR for each Police unit neutralized (FLN player's choice)<td>Operations Phase
<tr>
<td>Government<td>-1d6<td>did not React to Strike<td>Operations Phase
<tr>
<td>Government<td>+/-?d6<td>Coup d'etat: see Coup Table<td>final PSL Adjst Segment
<tr>
<td>Government<td>-1<br>-2<td>OAS deployed in Algeria<br>OAS deployed in France<td>final PSL Adjst Segment
<tr>
<td>Government<td>-1<td>for each area currently Terrorized or ever Resettled<td>final PSL Adjst Segment
<tr>
<td>FLN<td>-3d6<td>No non-neutralized FLN mobile units in Algeria<td>final PSL Adjst Segment
<tr>
<td>FLN<td>+?<td>Total Firepower of FLN mobile units in Morocco and/or Tunisia x 10% (round fractions down)<td>final PSL Adjst Segment
<tr>
<td>either side<td>+?<td>side that Controls more areas gets PSP equal to HALF the difference between them (round fractions down)<td>final PSL Adjst Segment
</table>
<h3><a href="#units" id="units">C.7 Unit Identification Chart</a></h3>
<p class="small">Mobile units have their Evasion (for FLN) or Contact (for Government) rating printed to the left of the
symbol box, while the Firepower rating is printed underneath the symbol box. Static units have one number, which is
their Firepower and Contact or Evasion rating, printed underneath their icon.</p>
<div style="display: flex; flex-direction: row;gap: 10px;">
<div style="flex-basis: 45%;">
<table>
<tr><th>Unit<th>Colour
<tr><td>FLN<td>green
<tr><td>French Army regular<td>light blue
<tr><td>French Army elite<td>light red
<tr><td>Algerian or Police<td>light beige [turquoise]
<tr><td>game markers<td>white
</table>
</div>
<div style="flex-basis: 55%;">
<table>
<tr><th>Unit<th>Type
<tr><td>box with cross or "L"<td>Infantry (I = Band, II = Failek, X = brigade, XX = division)
<tr><td>box with cross and "wings" or anchor<td>Elite infantry unit
<tr><td>box with infinity sign and "HELO"<td>Airmobilized unit
<tr><td>empty box<td>Dispersed mode division
<tr><td>box with megaphone<td>Cadre (mobile unit)
<tr><td>cop icon<td>Police (static unit)
<tr><td>fist icon<td>Front (static unit)
</table>
</div>
</div>
<h3><a href="#scenarios" id="scenarios">C.8 Scenarios</a></h3>
<p class="small">
Players begin by selecting a scenario. They then place units and set markers as required by the scenario, Government
player first. Units may set up in any areas of the <i>wilaya</i> indicated (remember Urban areas are part of <i>wilayas</i>),
Divisions may set up in either mode, Police units set up in PTL boxes. Play then begins with the Random Event Phase
of Turn 1. All areas are considered to be Contested until the Turn Interphase of the first turn: the FLN player begins with 2d6 AP as a compensation.
</p>
<table>
<tr>
<th>Wilaya
<th>1954
<th>1958
<th>1960
<tr>
<td class="center">I
<td>Government: nothing<br>FLN: 1 Front, 1 Cadre
<td>Government: 2 French XX, 1 French X<br>FLN: 1 Front, 2 Cadres, 2 Bands
<td>Government: 2 French XX, 1 Algerian X<br>FLN: 2 Cadres, 2 Bands
<tr>
<td class="center">II
<td>Government: 1 French X, 1 Algerian X, 1 Police<br>
FLN: 1 Front, 2 Cadres
<td>Government: 2 French XX, 1 French X, 3 Elite X, 1 Algerian X, 2 Police<br>
FLN: 1 Front, 2 Cadres, 2 Bands
<td>Government: 2 French XX, 4 Elite X, 2 Algerian X, 2 Police<br>
FLN: 1 Front, 2 Cadres, 2 Bands
<tr>
<td class="center">III
<td>Government: nothing<br>FLN: 1 Front, 1 Cadre
<td>Government: 2 French XX, 1 Algerian X, 2 Police<br>
FLN: 1 Front, 2 Cadres, 2 Bands
<td>Government: 2 French XX, 1 French X, 1 Algerian X<br>
FLN: 2 Fronts, 2 Cadres, 2 Bands
<tr>
<td class="center">IV
<td>Government: 1 French X, 1 Algerian X, 1 Police<br>
FLN: 1 Cadre
<td>Government: 2 French XX, 3 Elite X, 2 Algerian X, 2 Police<br>
FLN: 2 Fronts, 2 Cadres, 2 Bands
<td>Government: 2 French XX, 3 Elite X, 2 Algerian X, 2 Police<br>
FLN: 1 Front, 1 Cadre, 1 Band
<tr>
<td class="center">V
<td>Government: 1 French X, 1 Elite X, 1 Algerian X, 1 Police<br>
FLN: 1 Front, 2 Cadres
<td>Government: 3 French XX, 1 French X, 1 Elite X, 1 Algerian X, 2 Police<br>
FLN: 1 Front, 1 Cadre, 1 Band
<td>Government: 5 French XX, 1 Algerian X, 2 Police<br>
FLN: 1 Cadre, 1 Band
<tr>
<td class="center">VI
<td>Government: nothing<br>
FLN: nothing
<td>Government: nothing<br>
FLN: 1 Front, 1 Cadre, 1 Band
<td>Government: nothing<br>
FLN: nothing
<tr>
<td class="center">Morocco
<td>Not independent yet
<td>FLN: 1 Band
<td>FLN: 4 Bands
<tr>
<td class="center">Tunisia
<td>Not independent yet
<td>FLN: 4 Bands, 1 Failek
<td>FLN: 4 Bands, 3 Faileks
<tr>
<td>
<td>Government PSL = 65<br>
Points: 0 Air, 0 Helo, O Naval<br>
FLN PSL = 50<br>
FLN AP = 2d6<br>
Border Zone = n/a
<td>Government PSL = 50<br>
Points: 6 Air, 4 Helo, 2 Naval<br>
FLN PSL = 60<br>
FLN AP = 2d6<br>
Border Zone = -2
<td>Government PSL = 45<br>
Points: 7 Air, 5 Helo, 3 Naval<br>
FLN PSL = 45<br>
FLN AP = 2d6<br>
Border Zone = -3
</table>
<p>(Algeria V2-140, this version 28 August 2015, edits 23 December 2015)</p>
</body>
|