-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescr_strat.txt
4574 lines (4050 loc) · 126 KB
/
descr_strat.txt
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
; Custom campaign script generated by Romans Campaign Map Editor
campaign imperial_campaign
playable
romans_julii
romans_brutii
romans_scipii
egypt
seleucid
carthage
parthia
gauls
germans
britons
greek_cities
armenia
dacia
numidia
scythia
spain
thrace
romans_senate
slave
end
unlockable
end
nonplayable
macedon
pontus
end
start_date -270 summer
end_date 14 summer
brigand_spawn_value 10
pirate_spawn_value 28
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; >>>> start of landmarks section <<<<
landmark pyramids_and_sphinx 181, 12
landmark pharos 178, 21
landmark colossus 160, 44
landmark temple 157, 53
landmark statue 134, 49
landmark gardens 237, 46
landmark mausoleum 160, 50
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; >>>> start of resources section <<<<
; Resource Type Quantity X Y
resource iron, 1, 83, 128
resource wine, 1, 53, 63
resource marble, 1, 55, 63
resource timber, 1, 201, 39
resource glass, 1, 199, 37
resource gold, 1, 45, 135
resource gold, 1, 20, 84
resource gold, 1, 140, 64
resource grain, 1, 103, 44
resource grain, 1, 84, 41
resource lead, 1, 52, 143
resource lead, 1, 52, 139
resource amber, 1, 96, 137
resource amber, 1, 98, 138
resource amber, 1, 93, 136
resource timber, 1, 86, 145
resource timber, 1, 124, 140
resource camels, 1, 246, 140
resource silver, 1, 216, 108
resource lead, 1, 45, 133
resource lead, 1, 44, 137
resource amber, 1, 113, 136
resource silver, 1, 107, 132
resource iron, 1, 105, 133
resource iron, 1, 105, 134
resource iron, 1, 49, 129
resource iron, 1, 50, 130
resource iron, 1, 83, 127
resource iron, 1, 108, 124
resource iron, 1, 107, 125
resource textiles, 1, 69, 122
resource textiles, 1, 56, 129
resource pottery, 1, 66, 123
resource grain, 1, 190, 115
resource hides, 1, 84, 113
resource timber, 1, 41, 110
resource glass, 1, 46, 111
resource iron, 1, 110, 111
resource iron, 1, 109, 110
resource iron, 1, 173, 113
resource iron, 1, 171, 111
resource iron, 1, 54, 104
resource iron, 1, 53, 103
resource lead, 1, 54, 99
resource lead, 1, 54, 98
resource gold, 1, 136, 98
resource iron, 1, 142, 98
resource iron, 1, 141, 99
resource timber, 1, 160, 99
resource grain, 1, 174, 101
resource wine, 1, 47, 91
resource wine, 1, 45, 89
resource pottery, 1, 65, 89
resource iron, 1, 54, 90
resource iron, 1, 55, 90
resource gold, 1, 214, 92
resource glass, 1, 96, 91
resource textiles, 1, 91, 90
resource textiles, 1, 49, 85
resource wine, 1, 65, 86
resource wine, 1, 55, 82
resource wine, 1, 57, 83
resource silver, 1, 59, 85
resource iron, 1, 112, 85
resource wine, 1, 106, 89
resource wine, 1, 107, 88
resource wine, 1, 108, 89
resource gold, 1, 148, 79
resource iron, 1, 16, 89
resource iron, 1, 18, 89
resource tin, 1, 23, 87
resource timber, 1, 24, 82
resource gold, 1, 117, 77
resource olive_oil, 1, 121, 73
resource olive_oil, 1, 123, 73
resource iron, 1, 223, 81
resource iron, 1, 225, 82
resource wine, 1, 220, 86
resource wine, 1, 221, 88
resource pottery, 1, 86, 83
resource timber, 1, 78, 84
resource timber, 1, 197, 81
resource iron, 1, 188, 74
resource iron, 1, 189, 75
resource silver, 1, 201, 79
resource iron, 1, 31, 74
resource iron, 1, 32, 74
resource lead, 1, 30, 80
resource lead, 1, 31, 81
resource iron, 1, 90, 77
resource iron, 1, 91, 76
resource marble, 1, 91, 82
resource silver, 1, 47, 77
resource marble, 1, 50, 72
resource wine, 1, 44, 79
resource wine, 1, 40, 81
resource pottery, 1, 99, 79
resource iron, 1, 240, 67
resource iron, 1, 240, 64
resource elephants, 1, 253, 75
resource camels, 1, 250, 68
resource timber, 1, 140, 66
resource timber, 1, 155, 70
resource wine, 1, 163, 69
resource wine, 1, 166, 70
resource textiles, 1, 171, 64
resource lead, 1, 196, 68
resource silver, 1, 38, 68
resource pottery, 1, 40, 65
resource copper, 1, 108, 67
resource copper, 1, 108, 66
resource timber, 1, 115, 65
resource camels, 1, 217, 58
resource elephants, 1, 216, 62
resource textiles, 1, 218, 60
resource wine, 1, 18, 54
resource wine, 1, 19, 57
resource olive_oil, 1, 16, 58
resource olive_oil, 1, 12, 54
resource gold, 1, 16, 54
resource timber, 1, 156, 65
resource silver, 1, 160, 63
resource textiles, 1, 158, 58
resource wine, 1, 161, 65
resource silver, 1, 195, 60
resource lead, 1, 47, 60
resource wine, 1, 54, 61
resource silver, 1, 167, 56
resource timber, 1, 156, 55
resource marble, 1, 165, 57
resource textiles, 1, 160, 54
resource iron, 1, 202, 58
resource iron, 1, 201, 58
resource camels, 1, 206, 54
resource elephants, 1, 201, 50
resource wine, 1, 201, 53
resource wine, 1, 203, 55
resource textiles, 1, 198, 56
resource elephants, 1, 238, 55
resource camels, 1, 240, 49
resource silver, 1, 142, 53
resource olive_oil, 1, 142, 55
resource olive_oil, 1, 146, 54
resource camels, 1, 251, 43
resource elephants, 1, 254, 43
resource iron, 1, 251, 53
resource iron, 1, 252, 54
resource timber, 1, 135, 46
resource olive_oil, 1, 166, 50
resource olive_oil, 1, 167, 49
resource textiles, 1, 164, 51
resource camels, 1, 2, 23
resource timber, 1, 15, 44
resource copper, 1, 26, 39
resource copper, 1, 27, 39
resource camels, 1, 215, 42
resource elephants, 1, 58, 39
resource camels, 1, 60, 31
resource marble, 1, 64, 38
resource timber, 1, 58, 45
resource timber, 1, 86, 42
resource elephants, 1, 73, 42
resource camels, 1, 80, 40
resource olive_oil, 1, 76, 44
resource olive_oil, 1, 78, 44
resource timber, 1, 104, 45
resource camels, 1, 209, 47
resource elephants, 1, 206, 45
resource camels, 1, 233, 21
resource camels, 1, 81, 30
resource olive_oil, 1, 85, 37
resource purple_dye, 1, 150, 36
resource purple_dye, 1, 145, 37
resource purple_dye, 1, 151, 36
resource iron, 1, 150, 38
resource iron, 1, 152, 37
resource camels, 1, 209, 30
resource purple_dye, 1, 199, 31
resource purple_dye, 1, 196, 24
resource olive_oil, 1, 200, 34
resource wine, 1, 202, 35
resource wine, 1, 200, 27
resource elephants, 1, 64, 26
resource camels, 1, 105, 14
resource purple_dye, 1, 94, 21
resource purple_dye, 1, 99, 21
resource purple_dye, 1, 89, 23
resource timber, 1, 132, 17
resource camels, 1, 139, 16
resource camels, 1, 190, 20
resource glass, 1, 180, 19
resource grain, 1, 182, 17
resource textiles, 1, 184, 22
resource camels, 1, 195, 19
resource camels, 1, 167, 13
resource camels, 1, 181, 9
resource grain, 1, 185, 9
resource gold, 1, 192, 4
resource camels, 1, 181, 3
resource copper, 1, 185, 43
resource purple_dye, 1, 191, 45
resource purple_dye, 1, 192, 48
resource purple_dye, 1, 187, 42
resource wine, 1, 105, 64
resource wine, 1, 78, 57
resource wine, 1, 79, 59
resource incense, 1, 211, 26
resource incense, 1, 207, 8
resource incense, 1, 206, 10
resource incense, 1, 207, 12
resource incense, 1, 217, 47
resource incense, 1, 216, 45
resource incense, 1, 218, 44
resource silk, 1, 241, 56
resource silk, 1, 205, 59
resource silk, 1, 204, 58
resource silk, 1, 205, 58
resource tin, 1, 38, 126
resource tin, 1, 40, 126
resource wild_animals, 1, 79, 26
resource wild_animals, 1, 82, 25
resource wild_animals, 1, 79, 22
resource wild_animals, 1, 191, 1
resource wild_animals, 1, 193, 1
resource wild_animals, 1, 189, 0
resource incense, 1, 187, 10
resource incense, 1, 183, 12
resource incense, 1, 187, 7
resource wild_animals, 1, 133, 148
resource wild_animals, 1, 129, 143
resource wild_animals, 1, 136, 137
resource wild_animals, 1, 41, 42
resource wild_animals, 1, 53, 43
resource wild_animals, 1, 45, 41
resource wild_animals, 1, 103, 122
resource wild_animals, 1, 110, 122
resource wild_animals, 1, 112, 120
resource wine, 1, 101, 67
resource textiles, 1, 94, 93
resource iron, 1, 106, 99
resource iron, 1, 106, 98
resource incense, 1, 212, 21
resource incense, 1, 212, 16
resource iron, 1, 145, 56
resource timber, 1, 191, 57
resource pottery, 1, 195, 57
resource timber, 1, 161, 44
resource purple_dye, 1, 197, 25
resource gold, 1, 187, 43
resource timber, 1, 186, 46
resource copper, 1, 184, 42
resource timber, 1, 110, 80
resource iron, 1, 111, 85
resource gold, 1, 114, 84
resource marble, 1, 136, 49
resource iron, 1, 139, 55
resource iron, 1, 141, 55
resource gold, 1, 151, 69
resource pottery, 1, 196, 58
resource olive_oil, 1, 200, 32
resource camels, 1, 201, 24
resource slaves, 1, 35, 141
resource slaves, 1, 57, 140
resource slaves, 1, 59, 129
resource slaves, 1, 48, 138
resource slaves, 1, 60, 117
resource slaves, 1, 47, 112
resource slaves, 1, 47, 98
resource slaves, 1, 58, 83
resource slaves, 1, 68, 81
resource slaves, 1, 67, 91
resource slaves, 1, 65, 105
resource slaves, 1, 85, 126
resource slaves, 1, 86, 141
resource slaves, 1, 89, 119
resource slaves, 1, 79, 113
resource slaves, 1, 95, 129
resource slaves, 1, 111, 138
resource slaves, 1, 116, 124
resource slaves, 1, 134, 136
resource slaves, 1, 147, 127
resource slaves, 1, 188, 155
resource slaves, 1, 181, 138
resource slaves, 1, 248, 150
resource slaves, 1, 231, 132
resource slaves, 1, 188, 114
resource slaves, 1, 175, 97
resource slaves, 1, 156, 98
resource slaves, 1, 159, 106
resource slaves, 1, 148, 83
resource slaves, 1, 158, 73
resource slaves, 1, 140, 68
resource slaves, 1, 135, 58
resource slaves, 1, 132, 54
resource slaves, 1, 143, 53
resource slaves, 1, 140, 49
resource slaves, 1, 138, 45
resource slaves, 1, 147, 37
resource slaves, 1, 160, 43
resource slaves, 1, 124, 65
resource slaves, 1, 107, 91
resource slaves, 1, 116, 99
resource slaves, 1, 98, 103
resource slaves, 1, 130, 105
resource slaves, 1, 139, 100
resource slaves, 1, 136, 76
resource slaves, 1, 93, 89
resource slaves, 1, 97, 81
resource slaves, 1, 89, 80
resource slaves, 1, 83, 92
resource slaves, 1, 95, 69
resource slaves, 1, 101, 69
resource slaves, 1, 113, 65
resource slaves, 1, 79, 60
resource slaves, 1, 105, 46
resource slaves, 1, 96, 48
resource slaves, 1, 107, 50
resource slaves, 1, 54, 62
resource slaves, 1, 42, 77
resource slaves, 1, 25, 74
resource slaves, 1, 18, 87
resource slaves, 1, 8, 70
resource slaves, 1, 16, 59
resource slaves, 1, 38, 59
resource slaves, 1, 11, 45
resource slaves, 1, 57, 40
resource slaves, 1, 80, 46
resource slaves, 1, 81, 34
resource slaves, 1, 63, 1
resource slaves, 1, 40, 17
resource slaves, 1, 97, 17
resource slaves, 1, 130, 17
resource slaves, 1, 168, 4
resource slaves, 1, 186, 4
resource slaves, 1, 183, 10
resource slaves, 1, 177, 18
resource slaves, 1, 207, 16
resource slaves, 1, 213, 25
resource slaves, 1, 239, 23
resource slaves, 1, 203, 34
resource slaves, 1, 199, 44
resource slaves, 1, 199, 53
resource slaves, 1, 188, 45
resource slaves, 1, 193, 57
resource slaves, 1, 190, 67
resource slaves, 1, 191, 78
resource slaves, 1, 173, 68
resource slaves, 1, 167, 72
resource slaves, 1, 156, 61
resource slaves, 1, 161, 56
resource slaves, 1, 159, 51
resource slaves, 1, 226, 89
resource slaves, 1, 215, 90
resource slaves, 1, 214, 59
resource slaves, 1, 211, 48
resource slaves, 1, 243, 53
resource slaves, 1, 251, 49
resource slaves, 1, 251, 78
resource slaves, 1, 238, 82
resource slaves, 1, 206, 42
resource slaves, 1, 113, 59
resource slaves, 1, 85, 84
resource slaves, 1, 116, 76
resource slaves, 1, 113, 113
resource amber, 1, 108, 137
resource amber, 1, 114, 137
resource gold, 1, 192, 155
resource silk, 1, 254, 81
resource silk, 1, 254, 76
resource silk, 1, 252, 77
resource silk, 1, 220, 60
resource silk, 1, 222, 61
resource silk, 1, 224, 63
resource silk, 1, 239, 57
resource silk, 1, 243, 55
resource lead, 1, 197, 68
resource wine, 1, 159, 64
resource olive_oil, 1, 83, 38
resource elephants, 1, 80, 32
resource elephants, 1, 13, 42
resource camels, 1, 43, 20
resource camels, 1, 60, 5
resource wine, 1, 41, 80
resource wine, 1, 63, 87
resource hides, 1, 68, 109
resource hides, 1, 80, 129
resource silver, 1, 112, 55
resource silver, 1, 111, 82
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; >>>> start of sound emitters section <<<<
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; >>>> start of events section <<<<
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; >>>> start of factions section <<<<
faction romans_julii, comfortable_caesar
superfaction romans_senate
denari 5000
settlement
{
level large_town
region Etruria
year_founded 0
population 4000
plan_set default_set
faction_creator romans_julii
building
{
type barracks militia_barracks
}
building
{
type core_building governors_villa
}
building
{
type port_buildings port
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_farms farms
}
building
{
type hinterland_roads roads
}
}
settlement
{
level large_town
region Umbria
year_founded 0
population 3500
plan_set default_set
faction_creator romans_julii
building
{
type barracks muster_field
}
building
{
type core_building governors_villa
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms
}
}
character Flavius Julius, named character, leader, age 47, , x 89, y 82
traits GoodCommander 2 , NaturalMilitarySkill 1 , GoodDefender 1 , PoliticsSkill 3 , GoodAdministrator 2 , Austere 1
ancillaries aged_retainer
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman triarii exp 1 armour 0 weapon_lvl 0
unit roman archer exp 1 armour 0 weapon_lvl 0
character Lucius Julius, named character, heir, age 31, , x 91, y 80
traits GoodCommander 1 , PoliticsSkill 2 , GoodAdministrator 3 , Energetic 2
ancillaries freeman_clerk
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
character Quintus Julius, named character, age 29, , x 96, y 82
traits NaturalMilitarySkill 3 , GoodAttacker 1 , Energetic 1
ancillaries drillmaster
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman city militia exp 0 armour 0 weapon_lvl 0
unit roman city militia exp 0 armour 0 weapon_lvl 0
character Sextus Antio, diplomat, age 29, , x 93, y 78
traits GoodDiplomat 3
character Decius Curtius, spy, age 29, , x 95, y 83
traits GoodSpy 4
character Oppius Clausus, admiral, age 29, , x 86, y 78
army
unit naval biremes exp 0 armour 0 weapon_lvl 0
unit naval biremes exp 0 armour 0 weapon_lvl 0
character Vibius Julius, named character, age 28, , x 88, y 81
traits GoodCommander 1 , PoliticsSkill 2 , GoodAdministrator 2 , MathematicsSkill 1
ancillaries merchant
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman velite exp 1 armour 0 weapon_lvl 0
character_record Amulius Julius, male, command 0, influence 0, management 0, subterfuge 0, age 13, alive, never_a_leader
character_record Manius Julius, male, command 0, influence 0, management 0, subterfuge 0, age 10, alive, never_a_leader
character_record Decius Julius, male, command 0, influence 0, management 0, subterfuge 0, age 7, alive, never_a_leader
character_record Marcus Julius, male, command 0, influence 0, management 0, subterfuge 0, age 3, alive, never_a_leader
character_record Faustina, female, command 0, influence 0, management 0, subterfuge 0, age 48, alive, never_a_leader
character_record Poppaea, female, command 0, influence 0, management 0, subterfuge 0, age 29, alive, never_a_leader
character_record Alypia, female, command 0, influence 0, management 0, subterfuge 0, age 29, alive, never_a_leader
character_record Claudia, female, command 0, influence 0, management 0, subterfuge 0, age 28, alive, never_a_leader
character_record Fadia, female, command 0, influence 0, management 0, subterfuge 0, age 13, alive, never_a_leader
relative Flavius Julius, Faustina, Lucius Julius, Quintus Julius, Vibius Julius, end
relative Lucius Julius, Poppaea, Fadia, Decius Julius, Marcus Julius, end
relative Quintus Julius, Alypia, Amulius Julius, end
relative Vibius Julius, Claudia, Manius Julius, end
faction romans_brutii, balanced_stalin
superfaction romans_senate
denari 5000
settlement
{
level large_town
region Apulia
year_founded 0
population 4500
plan_set default_set
faction_creator romans_julii
building
{
type core_building governors_villa
}
building
{
type equestrian stables
}
building
{
type barracks muster_field
}
building
{
type port_buildings port
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms
}
}
settlement
{
level large_town
region Bruttium
year_founded 0
population 4300
plan_set default_set
faction_creator romans_julii
building
{
type barracks muster_field
}
building
{
type core_building governors_villa
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms
}
}
character Tiberius Brutus, named character, leader, age 52, , x 114, y 57
traits GoodCommander 1 , NaturalMilitarySkill 1 , GoodAttacker 1 , PoliticsSkill 2 , Intelligent 1
ancillaries drillmaster
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman velite exp 1 armour 0 weapon_lvl 0
character Aulus Brutus, named character, heir, age 34, , x 111, y 68
traits GoodCommander 1 , PoliticsSkill 2 , Rabblerouser 2 , GoodAdministrator 2
ancillaries quartermaster
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman velite exp 0 armour 0 weapon_lvl 0
character Marcus Attius, admiral, age 29, , x 120, y 64
army
unit naval biremes exp 0 armour 0 weapon_lvl 0
unit naval biremes exp 0 armour 0 weapon_lvl 0
unit naval biremes exp 0 armour 0 weapon_lvl 0
character Luca Antonius, spy, age 23, , x 116, y 62
traits GoodSpy 4
character Caius Flaminius, diplomat, age 23, , x 112, y 63
traits GoodDiplomat 3
character Amulius Brutus, named character, age 31, , x 116, y 64
traits GoodCommander 1 , NaturalMilitarySkill 2 , PoliticsSkill 1 , Intelligent 2
ancillaries doctor
army
unit roman generals guard cavalry early exp 0 armour 0 weapon_lvl 0
unit roman light cavalry exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 0 armour 0 weapon_lvl 0
unit roman hastati exp 0 armour 0 weapon_lvl 0
unit roman velite exp 0 armour 0 weapon_lvl 0
character Vibius Brutus, named character, age 30, , x 114, y 63
traits GoodCommander 1 , GoodAdministrator 2 , PoliticsSkill 1 , Intelligent 2 , MathematicsSkill 2
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 0 armour 0 weapon_lvl 0
unit roman velite exp 0 armour 0 weapon_lvl 0
character_record Cassius Brutus, male, command 0, influence 0, management 0, subterfuge 0, age 14, alive, never_a_leader
character_record Titus Brutus, male, command 0, influence 0, management 0, subterfuge 0, age 10, alive, never_a_leader
character_record Cornelius Brutus, male, command 0, influence 0, management 0, subterfuge 0, age 7, alive, never_a_leader
character_record Oppius Brutus, male, command 0, influence 0, management 0, subterfuge 0, age 3, alive, never_a_leader
character_record Galla, female, command 0, influence 0, management 0, subterfuge 0, age 50, alive, never_a_leader
character_record Hostia, female, command 0, influence 0, management 0, subterfuge 0, age 30, alive, never_a_leader
character_record Lucilla, female, command 0, influence 0, management 0, subterfuge 0, age 28, alive, never_a_leader
character_record Paulina, female, command 0, influence 0, management 0, subterfuge 0, age 12, alive, never_a_leader
relative Tiberius Brutus, Galla, Aulus Brutus, Amulius Brutus, Vibius Brutus, end
relative Aulus Brutus, Hostia, Paulina, Titus Brutus, Oppius Brutus, end
relative Amulius Brutus, Lucilla, Cassius Brutus, Cornelius Brutus, end
faction romans_scipii, bureaucrat_napoleon
superfaction romans_senate
denari 5000
settlement
{
level large_town
region Campania
year_founded 0
population 4800
plan_set default_set
faction_creator romans_julii
building
{
type barracks militia_barracks
}
building
{
type core_building governors_villa
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms+1
}
}
settlement
{
level large_town
region Sicilia_Romanus
year_founded 0
population 3500
plan_set default_set
faction_creator romans_julii
building
{
type barracks muster_field
}
building
{
type core_building governors_villa
}
building
{
type defenses wooden_pallisade
}
building
{
type hinterland_roads roads
}
}
character Cornelius Scipio, named character, leader, age 54, , x 106, y 51
traits GoodCommander 2 , PoliticsSkill 2 , GoodAdministrator 2 , Austere 1 , GoodInfantryGeneral 1
ancillaries aged_retainer
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 2 armour 0 weapon_lvl 0
character Julianus Scipio, named character, heir, age 36, , x 102, y 68
traits GoodCommander 1 , NaturalMilitarySkill 3 , PoliticsSkill 1 , GoodRiskyAttacker 1
ancillaries drillmaster
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
character Quintus Scipio, named character, age 35, , x 106, y 50
traits NaturalMilitarySkill 1 , PoliticsSkill 1 , Intelligent 1 , Generous 1
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 2 armour 0 weapon_lvl 0
unit roman archer exp 2 armour 0 weapon_lvl 0
unit roman velite exp 0 armour 0 weapon_lvl 0
character Quintus Caecus, diplomat, age 26, , x 103, y 67
traits GoodDiplomat 2
character Aulus Ovidius, spy, age 20, , x 106, y 48
traits GoodSpy 3
character Aulus Volesus, admiral, age 22, , x 101, y 64
army
unit naval biremes exp 1 armour 0 weapon_lvl 0
unit naval biremes exp 0 armour 0 weapon_lvl 0
character Gaius Scipio, named character, age 29, , x 101, y 67
traits NaturalMilitarySkill 3 , PoliticsSkill 1 , Intelligent 1 , Generous 1 , AuthoritarianRomanVirtue 2
army
unit roman generals guard cavalry early exp 1 armour 0 weapon_lvl 0
unit roman hastati exp 1 armour 0 weapon_lvl 0
character_record Aulus Scipio, male, command 0, influence 0, management 0, subterfuge 0, age 14, alive, never_a_leader
character_record Flavius Scipio, male, command 0, influence 0, management 0, subterfuge 0, age 11, alive, never_a_leader
character_record Lucius Scipio, male, command 0, influence 0, management 0, subterfuge 0, age 8, alive, never_a_leader
character_record Publius Scipio, male, command 0, influence 0, management 0, subterfuge 0, age 2, alive, never_a_leader
character_record Metella, female, command 0, influence 0, management 0, subterfuge 0, age 52, alive, never_a_leader
character_record Antistia, female, command 0, influence 0, management 0, subterfuge 0, age 30, alive, never_a_leader
character_record Crispina, female, command 0, influence 0, management 0, subterfuge 0, age 30, alive, never_a_leader
character_record Placidia, female, command 0, influence 0, management 0, subterfuge 0, age 6, alive, never_a_leader
relative Cornelius Scipio, Metella, Julianus Scipio, Quintus Scipio, Gaius Scipio, Aulus Scipio, end
relative Julianus Scipio, Antistia, Flavius Scipio, Lucius Scipio, end
relative Quintus Scipio, Crispina, Placidia, Publius Scipio, end
faction romans_senate, comfortable_napoleon
denari 5000
settlement
{
level city
region Latium
year_founded 0
population 7500
plan_set default_set
faction_creator romans_julii
building
{
type core_building governors_palace
}
building
{
type defenses stone_wall
}
building
{
type amphitheatres stone_amphitheatre
}
building
{
type barracks city_barracks
}
building
{
type missiles practice_field
}
building
{
type smith blacksmith
}
building
{
type market forum
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms+2
}
building
{
type hinterland_mines mines+1
}
}
character Decius Maxentius, named character, leader, age 60, , x 95, y 71
traits GoodCommander 1 , PoliticsSkill 2 , GoodAdministrator 2 , Austere 1
ancillaries doctor
army
unit roman generals guard cavalry early exp 0 armour 0 weapon_lvl 0
unit roman hastati exp 3 armour 1 weapon_lvl 0
unit roman hastati exp 3 armour 1 weapon_lvl 0
unit roman princeps exp 3 armour 1 weapon_lvl 0
unit roman princeps exp 3 armour 1 weapon_lvl 0
unit roman velite exp 3 armour 1 weapon_lvl 0
unit roman velite exp 3 armour 1 weapon_lvl 0
unit roman triarii exp 3 armour 1 weapon_lvl 0
character Marcus Maxentius, named character, heir, age 30, , x 93, y 73
traits GoodCommander 2 , NaturalMilitarySkill 2 , PoliticsSkill 1 , GoodAdministrator 1 , Intelligent 1
ancillaries bodyguard
army
unit roman generals guard cavalry early exp 0 armour 0 weapon_lvl 0
unit roman triarii exp 3 armour 1 weapon_lvl 0
unit roman velite exp 3 armour 1 weapon_lvl 0
unit roman hastati exp 3 armour 1 weapon_lvl 0
character Flavius Nepos, diplomat, age 30, , x 96, y 69
traits GoodDiplomat 5
character Servius Maxentius, named character, age 36, , x 94, y 69
traits GoodCommander 1 , NaturalMilitarySkill 1 , PublicFaith 2 , GoodAdministrator 1 , Intelligent 1
ancillaries scribe_ancillary
army
unit roman generals guard cavalry early exp 0 armour 0 weapon_lvl 0
unit roman velite exp 3 armour 1 weapon_lvl 0
unit roman hastati exp 3 armour 0 weapon_lvl 0
unit roman princeps exp 3 armour 1 weapon_lvl 0
unit roman triarii exp 3 armour 0 weapon_lvl 0
character_record Gaius Maxentius, male, command 0, influence 0, management 0, subterfuge 0, age 11, alive, never_a_leader
character_record Lentulus Maxentius, male, command 0, influence 0, management 0, subterfuge 0, age 7, alive, never_a_leader
character_record Publius Maxentius, male, command 0, influence 0, management 0, subterfuge 0, age 13, alive, never_a_leader
character_record Honoria, female, command 0, influence 0, management 0, subterfuge 0, age 50, alive, never_a_leader
character_record Licinia, female, command 0, influence 0, management 0, subterfuge 0, age 29, alive, never_a_leader
character_record Marciana, female, command 0, influence 0, management 0, subterfuge 0, age 34, alive, never_a_leader
character_record Papiria, female, command 0, influence 0, management 0, subterfuge 0, age 5, alive, never_a_leader
character_record Prisca, female, command 0, influence 0, management 0, subterfuge 0, age 19, alive, never_a_leader
relative Decius Maxentius, Honoria, Servius Maxentius, Marcus Maxentius, Prisca, end
relative Marcus Maxentius, Licinia, Publius Maxentius, Gaius Maxentius, end
relative Servius Maxentius, Marciana, Lentulus Maxentius, Papiria, end
faction macedon, fortified_napoleon
denari 5000
settlement
{
level city
region Macedonia
year_founded 0
population 6000
plan_set default_set
faction_creator macedon
building
{
type core_building governors_palace
}
building
{
type equestrian stables
}
building
{
type defenses wooden_pallisade
}
building
{
type barracks militia_barracks
}
building
{
type hinterland_roads roads
}
building
{
type hinterland_farms farms
}
building
{
type port_buildings port
}
}
settlement
{
level town
region Paionia
year_founded 0
population 2700
plan_set default_set
faction_creator macedon
building
{
type barracks muster_field
}
building
{
type core_building governors_house
}
building
{