forked from SirYaro/18xx-maker-games
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1845.json
More file actions
4077 lines (4077 loc) · 74 KB
/
1845.json
File metadata and controls
4077 lines (4077 loc) · 74 KB
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
{
"info": {
"title": "1845",
"designer": "Kevin Dykman",
"background": "bg",
"extraStationTokens": 4,
"currency": "#Fr"
},
"links": {
"bgg": "https://boardgamegeek.com/boardgame/299156/1845",
"rules": "https://boardgamegeek.com/filepage/194802/1845-rules"
},
"ipo": true,
"colors": {
"bg": "#a39971",
"short": "pink",
"other_country": "#ffdab4",
"GCF_yellow": "#ffcc42",
"BB_yellow": "#ffde29",
"BS_red": "#9c3335",
"BA_purple": "#7f5aa3",
"OR_green": "#abe0b6",
"CR_blue": "#0065af",
"CM_yellow": "#fffca8",
"Nord_grey": "#544843",
"AL_blue": "#172978",
"AC_red": "#a31600",
"Cent_green": "#b2d600",
"OB_blue": "#97e1fc",
"RGB_lavendar": "#ebc0df",
"Scx_teal": "#2aadad",
"FP_orange": "#c94414",
"Midi_red": "#d61e00",
"market_blue": "#00b3ff",
"par_value": "#dcebf7"
},
"tokens": [
"Round",
{
"icon": "port",
"label": "$10"
},
{
"icon": "port",
"label": "$10"
},
{
"icon": "port",
"label": "$10"
},
{
"icon": "port",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "coal",
"label": "$10"
},
{
"icon": "bridge",
"label": "$10"
},
{
"icon": "bridge",
"label": "$10"
},
{
"icon": "bridge",
"label": "$10"
},
{
"icon": "bridge",
"label": "$10"
}
],
"bank": "∞",
"players": [
{
"number": 3,
"certLimit": 28,
"capital": 547
},
{
"number": 4,
"certLimit": 22,
"capital": 459
},
{
"number": 5,
"certLimit": 18,
"capital": 377
},
{
"number": 6,
"certLimit": 16,
"capital": 316
},
{
"number": 6,
"certLimit": 14,
"capital": 244
}
],
"shareTypes": {
"default": [
{
"quantity": 1,
"label": "President",
"percent": "100/20/10",
"shares": 2
},
{
"quantity": 8,
"percent": "20/10",
"shares": 1
},
{
"quantity": 10,
"percent": 10,
"shares": 1
},
{
"quantity": 5,
"backgroundColor": "short",
"subtext": "Short",
"percent": "20/10",
"shares": 1
},
{
"quantity": 5,
"backgroundColor": "short",
"subtext": "Short",
"percent": 10,
"shares": 1
}
]
},
"phases": [
{
"name": "2",
"limit": 4,
"tiles": "yellow",
"notes": "Only 2-share companies may be started."
},
{
"name": "2+",
"limit": 4,
"tiles": "yellow"
},
{
"name": "3",
"limit": 3,
"tiles": "green",
"notes": "Only 2-/5-share companies may be started."
},
{
"name": "3+",
"limit": 3,
"tiles": "green"
},
{
"name": "4",
"limit": 3,
"tiles": "green",
"notes": "Only 5-share companies may be started."
},
{
"name": "4+",
"limit": 3,
"tiles": "green"
},
{
"name": "5",
"limit": 3,
"tiles": "brown",
"notes": "Only 5-/10-share companies may be started."
},
{
"name": "6",
"limit": 2,
"tiles": "brown",
"notes": "Only 10-share companies may be started."
},
{
"name": "3D",
"limit": 2,
"tiles": "gray"
},
{
"name": "4D",
"limit": 2,
"tiles": "gray"
}
],
"pools": [
{
"name": "Bank Pool",
"notes": [
{
"color": "brown",
"icon": "exclamation",
"note": "A share cannot be sold if 5 shares of that public company are in the bank pool."
},
{
"color": "red",
"icon": "times",
"note": "At the end of the stock round, a company's stock price is moved one space down per share in the bank pool."
}
]
}
],
"rounds": [
{
"name": "stock"
},
{
"name": "OR1"
},
{
"name": "export train"
},
{
"name": "M&A"
},
{
"name": "OR2"
},
{
"name": "M&A"
}
],
"privates": [
{
"id": "P1",
"name": "Bridge Builders",
"price": 20,
"token": {
"icon": "bridge",
"label": "$10"
},
"description": "allows the owning company to place a yellow tile on river hexes without paying the usual 10 fee. Also includes a bridge token which may be placed on a river to increase a route's value by $10."
},
{
"id": "P2",
"name": "Small Mail Contract",
"price": 30,
"revenue": 5,
"token": {
"icon": "mail",
"label": "$5"
},
"description": "If the owning company has a train, it receives $5 at the start of each Operating Round."
},
{
"id": "P3",
"name": "Minor Coal Mine",
"price": 30,
"token": {
"icon": "coal",
"label": "$10"
},
"description": "When the owning company lays yellow track tile in any mountain hex it may also place one of its coal mine tokens. If it does so, it does not pay the usual $15 mountain tile fee. Mines may be placed on any tile with a mountain symbol. The yellow tile underlying the coal mine may not be upgraded. The coal mine increases the value of any company's route through the hex by $10."
},
{
"id": "P4",
"name": "Coastal Port",
"price": 40,
"token": {
"icon": "port",
"label": "$10"
},
"description": "The owning company receives a port token which may be placed in any coastal city marked by an anchor. This token increases the value of a route through that port by $10. No connection is required to place the token."
},
{
"id": "P5",
"name": "Coastal Port",
"price": 40,
"token": {
"icon": "port",
"label": "$10"
},
"description": "The owning company receives a port token which may be placed in any coastal city marked by an anchor. This token increases the value of a route through that port by $10. No connection is required to place the token."
},
{
"id": "P6",
"name": "Bridge Builders",
"price": 40,
"token": {
"icon": "bridge",
"label": "$10"
},
"description": "allows the owning company to place a yellow tile on river hexes without paying the usual 10 fee. Also includes a bridge token which may be placed on a river to increase a route's value by $10."
},
{
"id": "P7",
"name": "Bridge Builders",
"price": 40,
"token": {
"icon": "bridge",
"label": "$10"
},
"description": "allows the owning company to place a yellow tile on river hexes without paying the usual 10 fee. Also includes a bridge token which may be placed on a river to increase a route's value by $10."
},
{
"id": "P8",
"name": "Tunnel Company",
"price": 40,
"icon": "tunnel",
"description": "The owning company earns $20 every time the it lays a yellow tile in a mountain hex. The company must first pay any applicable fee for placing the tile prior to collecting the $20."
},
{
"id": "P9",
"name": "Société anonyme des Mines de la Loire",
"price": 40,
"tile": "116|45",
"token": {
"icon": "coal",
"label": "$10"
},
"description": "Upon floating, the owning company may place the reserved Sainte-Étienne yellow tile. There is no connectivity requirement to lay this tile. No other company may start in that hex. The owning Company also receives one Coal Mine token."
},
{
"id": "P10",
"name": "Minor Mail Contract",
"price": 60,
"revenue": 10,
"token": {
"icon": "mail",
"label": "$10"
},
"description": "If the owning company has a train, it receives $10 at the start of each Operating Round."
},
{
"id": "P11",
"name": "Coastal Port",
"price": 60,
"token": {
"icon": "port",
"label": "$10"
},
"description": "The owning company receives a port token which may be placed in any coastal city marked by an anchor. This token increases the value of a route through that port by $10. No connection is required to place the token."
},
{
"id": "P12",
"name": "Bridge Builders",
"price": 60,
"token": {
"icon": "bridge",
"label": "$10"
},
"description": "allows the owning company to place a yellow tile on river hexes without paying the usual 10 fee. Also includes a bridge token which may be placed on a river to increase a route's value by $10."
},
{
"id": "P13",
"name": "Medium Coal Mine",
"price": 60,
"token": {
"icon": "coal",
"label": "$10"
},
"description": "When the owning company lays yellow track tile in any mountain hex it may also place one of its coal mine tokens. If it does so, it does not pay the usual $15 mountain tile fee. Mines may be placed on any tile with a mountain symbol. The yellow tile underlying the coal mine may not be upgraded. The coal mine increases the value of any company's route through the hex by $10."
},
{
"id": "P14",
"name": "Medium Coal Mine",
"price": 60,
"token": {
"icon": "coal",
"label": "$10"
},
"description": "When the owning company lays yellow track tile in any mountain hex it may also place one of its coal mine tokens. If it does so, it does not pay the usual $15 mountain tile fee. Mines may be placed on any tile with a mountain symbol. The yellow tile underlying the coal mine may not be upgraded. The coal mine increases the value of any company's route through the hex by $10."
},
{
"id": "P15",
"name": "Railway Construction",
"price": 60,
"icon": "tracks",
"description": "The owning company may, during the track laying phase, lay one extra yellow track anywhere that it can legally reach. This counts as one yellow tile, not a build point."
},
{
"id": "P16",
"name": "Paris Pullman",
"price": 80,
"image": "Pullman",
"description": "The owning company receives one Pullman."
},
{
"id": "P17",
"name": "Coastal Port",
"price": 80,
"token": {
"icon": "port",
"label": "$10"
},
"description": "The owning company receives a port token which may be placed in any coastal city marked by an anchor. This token increases the value of a route through that port by $10. No connection is required to place the token."
},
{
"id": "P18",
"name": "Large Mail Contract",
"price": 90,
"revenue": 15,
"token": {
"icon": "mail",
"label": "$15"
},
"description": "If the owning company has a train, it receives $15 at the start of each Operating Round."
},
{
"id": "P19",
"name": "Major Coal Mine",
"price": 90,
"token": {
"icon": "coal",
"label": "$10"
},
"description": "When the owning company lays yellow track tile in any mountain hex it may also place one of its coal mine tokens. If it does so, it does not pay the usual $15 mountain tile fee. Mines may be placed on any tile with a mountain symbol. The yellow tile underlying the coal mine may not be upgraded. The coal mine increases the value of any company's route through the hex by $10."
},
{
"id": "P20",
"name": "Major Coal Mine",
"price": 90,
"token": {
"icon": "coal",
"label": "$10"
},
"description": "When the owning company lays yellow track tile in any mountain hex it may also place one of its coal mine tokens. If it does so, it does not pay the usual $15 mountain tile fee. Mines may be placed on any tile with a mountain symbol. The yellow tile underlying the coal mine may not be upgraded. The coal mine increases the value of any company's route through the hex by $10."
},
{
"id": "P21",
"name": "City Expansion",
"price": 110,
"token": {
"icon": "token",
"color": "white",
"iconColor": "white"
},
"description": "Provides an additional station marker for the owning company. When this is acquired by a company, place a station marker on the company charter. This company is still limited to 8 total station markers."
},
{
"id": "P22",
"name": "Major Mail Contract",
"price": 120,
"revenue": 20,
"token": {
"icon": "mail",
"label": "$20"
},
"description": "If the owning company has a train, it receives $20 at the start of each Operating Round."
},
{
"id": "P23",
"name": "Le Grande Train",
"price": 120,
"icon": "train",
"description": "The owning company immediately receives a permanent 2-train which may be used in the first Operating Round of the game. This train does not rust, does not count against the train limit, or fulfill the requirement of owning a train to prevent liquidation."
}
],
"tokenTypes": {
"four": ["Home", 50, 50, 50]
},
"companies": [
{
"name": "Compagnie du chemin de Fer Grand-Central de France",
"abbrev": "GCF",
"color": "GCF_yellow",
"tokens": "four"
},
{
"name": "Chemin de Fer de Boulogne a Bonningues",
"abbrev": "BB",
"color": "BB_yellow",
"tokens": "four"
},
{
"name": "Chemin de Fer de la Baie de Somme",
"abbrev": "BS",
"color": "BS_red",
"tokens": "four"
},
{
"name": "Chemin de Fer du Blanc-Argent",
"abbrev": "BA",
"color": "BA_purple",
"tokens": "four"
},
{
"name": "Société Nationale des Chemins de Fer Français",
"abbrev": "SNCF",
"color": "black",
"tokens": "four"
},
{
"name": "Chemins de Fer de Paris à Lyon et a la Méditerranée",
"abbrev": "PLM",
"color": "white",
"tokens": "four"
},
{
"name": "Compagnie du Chemin de Fer d'Orléans à Rouen",
"abbrev": "OR",
"color": "OR_green",
"tokens": "four"
},
{
"name": "Chemin de Fer du Finistére",
"abbrev": "FF",
"color": "blue",
"tokens": "four"
},
{
"name": "Chemin de Fer du Cambrésis",
"abbrev": "Cam",
"color": "gray",
"tokens": "four"
},
{
"name": "Chemins de Fer du Calvados",
"abbrev": "Cal",
"color": "green",
"tokens": "four"
},
{
"name": "Colas Rail",
"abbrev": "CR",
"color": "CR_blue",
"tokens": "four"
},
{
"name": "Compagnie des Chemins de Fer de Grande Banlieue",
"abbrev": "GB",
"color": "pink",
"tokens": "four"
},
{
"name": "Compagnie du Chemin de Fer de Caen à la Mer",
"abbrev": "CM",
"color": "CM_yellow",
"tokens": "four"
},
{
"name": "Chemin de Fer du Nord",
"abbrev": "Nord",
"color": "Nord_grey",
"tokens": "four"
},
{
"name": "Chemins de Fer d'Alsace et de Lorraine",
"abbrev": "AL",
"color": "AL_blue",
"tokens": "four"
},
{
"name": "Chemins de Fer de Provence",
"abbrev": "FP",
"color": "FP_orange",
"tokens": "four"
},
{
"name": "Chemin de Fer d'Anvin à Calais",
"abbrev": "AC",
"color": "AC_red",
"tokens": "four"
},
{
"name": "Chemin de Fer du Midi",
"abbrev": "Midi",
"color": "Midi_red",
"tokens": "four"
},
{
"name": "Chemins de Fer des Ardennes",
"abbrev": "Ard",
"color": "yellow",
"tokens": "four"
},
{
"name": "Compagnie du Centre",
"abbrev": "Cent",
"color": "Cent_green",
"tokens": "four"
},
{
"name": "Chemins de Fer de l'Ouest",
"abbrev": "Oue",
"color": "orange",
"tokens": "four"
},
{
"name": "Compagnie du Chemin de Fer d'Orléans à Bordeaux",
"abbrev": "OB",
"color": "OB_blue",
"tokens": "four"
},
{
"name": "Chemins de Fer d'Aire à Fruges et de Rimeux-Gournay à Berck",
"abbrev": "RGB",
"color": "RGB_lavendar",
"tokens": "four"
},
{
"name": "Compagnie du Chemin de Fer de Tours à Nantes",
"abbrev": "TN",
"color": "blue",
"tokens": "four"
},
{
"name": "Ligne de Sceaux",
"abbrev": "Scx",
"color": "Scx_teal",
"tokens": "four"
},
{
"name": "Chemin de Fer de l'Est",
"abbrev": "Est",
"color": "green",
"tokens": "four"
},
{
"name": "Chemin de Fer Paris-Orléans",
"abbrev": "PO",
"color": "natural",
"tokens": "four"
}
],
"stock": {
"type": "2D",
"display": {
"legend": {
"reverse": true,
"verticalAlign": "bottom",
"x": 10,
"y": 23
}
},
"par": {
"color": "par_value"
},
"legend": [
{
"color": "market_blue",
"description": "only 10-share companies may enter"
},
{
"color": "yellow",
"icon": "times",
"description": "Shares of this corporation do not count toward the certificate limit."
},
{
"color": "red",
"icon": "exclamation",
"description": "LIQUIDATION"
},
{
"color": "par_value",
"description": "par value"
}
],
"movement": {
"up": ["sold out"],
"down": ["president sells", "share in open market at end of SR"],
"left": ["each loan taken", "dividend zero or withheld"],
"right": [
"each loan paid off",
"dividend >= share price",
"two if divident >= double share price"
]
},
"market": [
[
{
"value": 115,
"arrow": "down"
},
130,
145,
160,
175,
200,
225,
250,
275,
300,
325,
350,
375,
400,
435,
470,
505,
540,
{
"value": 575,
"legend": 0
},
{
"value": 610,
"legend": 0
},
{
"value": 650,
"legend": 0
}
],
[
{
"value": 100,
"arrow": "down"
},
115,
130,
145,
160,
175,
200,
225,
250,
275,
300,
325,
350,
375,
400,
435,
470,
505,
{
"value": 540,
"legend": 0
},
{
"value": 575,
"legend": 0
},
{
"value": 610,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 90,
"arrow": "down"
},
100,
115,
130,
145,
160,
175,
200,
225,
250,
275,
300,
325,
350,
375,
{
"value": 400,
"par": true
},
435,
470,
{
"value": 505,
"legend": 0
},
{
"value": 540,
"legend": 0
},
{
"value": 575,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 80,
"arrow": "down"
},
90,
100,
115,
130,
145,
160,
175,
200,
225,
250,
275,
300,
325,
{
"value": 350,
"par": true
},
{
"value": 375,
"par": true
},
400,
435,
{
"value": 470,
"legend": 0
},
{
"value": 505,
"legend": 0
},
{
"value": 540,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 70,
"arrow": "down"
},
80,
90,
100,
115,
130,
145,
160,
175,
200,
225,
250,
275,
{
"value": 300,
"par": true
},
{
"value": 325,
"par": true
},
350,
375,
400,
{
"value": 435,
"legend": 0
},
{
"value": 470,
"legend": 0
},
{
"value": 505,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 65,
"arrow": "down"
},
70,
80,
90,
100,
115,
130,
145,
160,
175,
200,
225,
{
"value": 250,
"par": true
},
{
"value": 275,
"par": true
},
300,
325,
350,
375,
{
"value": 400,
"legend": 0
},
{
"value": 435,
"legend": 0
},
{
"value": 470,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 60,
"arrow": "down"
},
65,
70,
80,
90,
100,
115,
130,
145,
160,
175,
{
"value": 200,
"par": true
},
{
"value": 225,
"par": true
},
250,
275,
300,
325,
350,
{
"value": 375,
"legend": 0
},
{
"value": 400,
"legend": 0
},
{
"value": 435,
"legend": 0,
"arrow": "up"
}
],
[
{
"value": 55,
"arrow": "down"
},
60,
65,
70,
80,
90,
100,
115,
130,
145,
{
"value": 160,
"par": true
},
{
"value": 175,
"par": true
},
200,
225,
250,
275,
300,
325,
{
"value": 350,
"legend": 0
},
{
"value": 375,