forked from SirYaro/18xx-maker-games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path18Ireland.json
2385 lines (2385 loc) · 59.9 KB
/
18Ireland.json
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": "18Ireland",
"designer": "Ian Scrivins",
"publisher": "aag",
"background": "water",
"titleY": 0,
"titleX": 75,
"titleSize": 50,
"currency": "£#",
"orientation": "horizontal"
},
"links": {
"bgg": "https://boardgamegeek.com/boardgame/196217/18ireland",
"rules": "https://docs.google.com/viewer?a=v&pid=sites&srcid=YWxsLWFib2FyZGdhbWVzLmNvbXxhYWdsbGN8Z3g6NWU3M2ExZjkyZDFhZDY4Yg"
},
"wip": true,
"tokens": ["Round", "+£10", "+£10", "+£20", "+£20"],
"ipo": true,
"bank": 4000,
"players": [
{
"number": 3,
"certLimit": 16,
"capital": 330
},
{
"number": 4,
"certLimit": 12,
"capital": 250
},
{
"number": 5,
"certLimit": 10,
"capital": 200
},
{
"number": 6,
"certLimit": 8,
"capital": 160
}
],
"tokenTypes": {
"minor": ["Free"],
"default": ["Free", 20, 50]
},
"shareTypes": {
"minor": [
{
"quantity": 1,
"label": "President's Certificate",
"percent": 40,
"shares": 2
},
{
"quantity": 3,
"percent": 20,
"shares": 1
}
],
"default": [
{
"quantity": 1,
"label": "President's Certificate",
"percent": 20,
"shares": 2
},
{
"quantity": 8,
"percent": 10,
"shares": 1
}
]
},
"floatPercent": 20,
"companies": [
{
"name": "Central Ireland Railway",
"abbrev": "CIR",
"color": "green",
"token": {
"color": "green",
"bar": "white"
},
"minor": true
},
{
"name": "Cork, Blackrock & Passage Railway",
"abbrev": "CBPR",
"color": "black",
"token": {
"color": "black",
"bar": "white"
},
"minor": true
},
{
"name": "Dublin & Drogheda Railway",
"abbrev": "DDR",
"color": "lime",
"token": {
"color": "lime",
"bar": "white"
},
"minor": true
},
{
"name": "Dundalk & Enniskillen Railway",
"abbrev": "DER",
"color": "pink",
"token": {
"color": "pink",
"bar": "white"
},
"minor": true
},
{
"name": "Dublin & Kingstown Railway",
"abbrev": "DKR",
"color": "purple",
"token": {
"color": "purple",
"bar": "white"
},
"minor": true
},
{
"name": "Enniskillen, Bundoran & Sligo Railway",
"abbrev": "EBSR",
"color": "yellow",
"token": {
"color": "yellow",
"bar": "white"
},
"minor": true
},
{
"name": "Grand Junction Railway",
"abbrev": "GJR",
"color": "white",
"token": {
"color": "white",
"bar": "white"
},
"minor": true
},
{
"name": "Great Northern & Western Railway",
"abbrev": "GNWR",
"color": "navyBlue",
"token": {
"color": "navyBlue",
"bar": "white"
},
"minor": true
},
{
"name": "Kilkenny Junction Railway",
"abbrev": "KJR",
"color": "red",
"token": {
"color": "red",
"bar": "white"
},
"minor": true
},
{
"name": "Londonderry & Enniskillen Railway",
"abbrev": "LER",
"color": "brown",
"token": {
"color": "brown",
"bar": "white"
},
"minor": true
},
{
"name": "Sligo, Leitrim & Northern Counties Railway",
"abbrev": "SLNCR",
"color": "gray",
"token": {
"color": "gray",
"bar": "white"
},
"minor": true
},
{
"name": "Ulster Railway",
"abbrev": "UR",
"color": "tan",
"token": {
"color": "tan",
"bar": "white"
},
"minor": true
},
{
"name": "Waterford & Kilkenny Railway",
"abbrev": "WKR",
"color": "lightBlue",
"token": {
"color": "lightBlue",
"bar": "white"
},
"minor": true
},
{
"name": "Waterford & Limerick Railway",
"abbrev": "WLR",
"color": "orange",
"token": {
"color": "orange",
"bar": "white"
},
"minor": true
},
{
"name": "Cork, Brandon & South Coast Railway",
"color": "gold",
"abbrev": "CBSCR"
},
{
"name": "Dublin & South Eastern Railway",
"color": "black",
"abbrev": "DSER"
},
{
"name": "Great Northern Railway (Ireland)",
"color": "blue",
"abbrev": "GNR"
},
{
"name": "Great Southern & Western Railway",
"abbrev": "GSWR",
"color": "red"
},
{
"name": "Midland Great Western Railway",
"abbrev": "MGWR",
"color": "green"
},
{
"name": "Midland Railway Northern Counties Committee",
"abbrev": "NCC",
"color": "pink"
},
{
"name": "Waterford, Limerick & Western Railway",
"abbrev": "WLW",
"color": "yellow"
}
],
"trains": [
{
"name": "2H",
"quantity": 7,
"price": 80,
"color": "yellow",
"rust": "6H",
"obsolete": "8H"
},
{
"name": "4H",
"quantity": 5,
"price": 180,
"color": "green",
"rust": "8H",
"obsolete": "10H"
},
{
"name": "6H",
"quantity": 4,
"price": 300,
"color": "green",
"rust": "10H",
"obsolete": "D"
},
{
"name": "8H",
"quantity": 3,
"price": 440,
"color": "brown"
},
{
"name": "10H",
"quantity": 2,
"price": 550,
"color": "brown"
},
{
"name": "D",
"quantity": "∞",
"print": 11,
"price": 770,
"color": "gray"
}
],
"privates": [
{
"name": "Dalkey Atmospheric Railway",
"price": 20,
"revenue": 5,
"sym": "DAR",
"description": "No Corporation can build in the Wicklow hex until this company is bought by a Corporation or closed."
},
{
"name": "Donegal Railway",
"price": 30,
"revenue": 7,
"sym": "DR",
"description": "The owning Corporation can place two connected narrow gauge yellow tiles in the Donegal hex and on adjacent hex. This action closes the company."
},
{
"name": "Board of Works",
"price": 40,
"revenue": 9,
"sym": "BoW",
"description": "The owning Corporation can place a yellow tile without payment of terrain costs. The company closes once this ability has been used twice."
},
{
"name": "City of Dublin Steam Packet Company",
"price": 45,
"revenue": 10,
"sym": "CDSPC",
"description": "The owning Corporation can place the +£10 token on any port. This action closes the company, but the Corporation adds £10 to the port’s revenue until the end of the game."
},
{
"name": "Tralee & Dingle Railway",
"price": 50,
"revenue": 10,
"description": "The owning Corporation can place two connected narrow gauge yellow tiles in the Tralee and Dingle hexes. This action closes the company.",
"sym": "TDR"
},
{
"name": "Drumglass Colliery Railway",
"price": 60,
"revenue": 12,
"description": "No Corporation can build in the DCR hex until this company is bought by any Corporation or closed. The owning Corporation can then place a yellow tile in that hex without using a tile action or paying terrain costs."
},
{
"name": "Trans-Atlantic Steam Packet Station",
"price": 75,
"revenue": 15,
"description": "The owning Corporation can place the +£20 token on Galway. This action closes the company, but the Corporation adds £20 to the city’s revenue until the end of the game."
},
{
"name": "River Shannon Shipping Co",
"price": 80,
"revenue": 10,
"description": "The owning Corporation controls a river link between Dromod and Limerick and adds the value of the other city to one train ending at either Dromod or Limerick."
},
{
"name": "William Dargan Esq.",
"price": 90,
"revenue": 10,
"description": "The owning Corporation can upgrade a second track tile during each OR at a cost of £30 from the Corporation’s Treasury."
},
{
"name": "The Irish Mail",
"price": 110,
"revenue": 20,
"description": "The owning Corporation can place an off-board location tile adjacent to one of: Londonderry, Kingstown, or Waterford. This action closes the company, but any Corporation may run to the tile for the rest of the game."
},
{
"name": "Dublin & Kingstown Railway",
"price": 120,
"revenue": 0,
"description": "The owner of this company: Takes the D&KR directorship; sets the share price at half bid; places a 2H-Train on the charter; places the winning bid in the D&KR treasury less the cost of the train and discards this card."
}
],
"phases": [
{
"minor": true,
"name": "2H",
"limit": 2,
"rounds": 2,
"tiles": "yellow",
"notes": "5-Share Companies can start."
},
{
"minor": true,
"name": "4H",
"limit": 2,
"rounds": 2,
"tiles": "green",
"on": "4H",
"buy_companies": true,
"notes": "10-Share Companies can form by merger."
},
{
"minor": true,
"name": "6H",
"limit": 2,
"rounds": 2,
"on": "6H",
"tiles": "green",
"buy_companies": true,
"notes": "10-Share Companies can start."
},
{
"minor": true,
"name": "8H",
"limit": 1,
"rounds": 2,
"tiles": "brown",
"on": "8H",
"events": {
"close_companies": true
},
"notes": "Unstarted 5-Share Companies are removed."
},
{
"minor": true,
"name": "10H",
"limit": 1,
"rounds": 2,
"on": "10H",
"tiles": "brown"
},
{
"minor": true,
"name": "D",
"limit": 1,
"rounds": 2,
"on": "D",
"tiles": "gray"
},
{
"name": "4H",
"limit": 4,
"rounds": 2,
"tiles": "green",
"on": "4H",
"buy_companies": true,
"notes": "10-Share Companies can form by merger."
},
{
"name": "6H",
"limit": 3,
"rounds": 2,
"on": "6H",
"tiles": "green",
"buy_companies": true,
"notes": "10-Share Companies can start."
},
{
"name": "8H",
"limit": 2,
"rounds": 2,
"tiles": "brown",
"on": "8H",
"events": {
"close_companies": true
},
"notes": "Unstarted 5-Share Companies are removed."
},
{
"name": "10H",
"limit": 2,
"rounds": 2,
"on": "10H",
"tiles": "brown"
},
{
"name": "D",
"limit": 2,
"rounds": 2,
"on": "D",
"tiles": "gray"
}
],
"pools": [
{
"name": "Market",
"notes": [
{
"color": "orange",
"note": "IPO shares pay dividends to the corporation. Shares in the market do not pay."
},
{
"color": "brown",
"icon": "exclamation",
"note": "No more than 50% of a corporation's shares may be in the market at any time"
},
{
"color": "red",
"icon": "times",
"note": "Shares cannot be sold during the first stock round"
}
]
}
],
"rounds": [
{
"name": "SR",
"color": "gray"
},
{
"name": "OR1",
"color": "yellow"
},
{
"name": "OR2",
"color": "yellow"
},
{
"name": "MR",
"color": "gray"
}
],
"turns": [
{
"name": "Stock Round",
"steps": [
"Sell any number of shares",
"Buy one share",
"Sell any number of shares"
],
"ordered": true
},
{
"name": "Operating Round",
"steps": [
"Lay or upgrade track",
"Purchase a station",
"Run trains",
"Pay dividends or withhold revenue",
"Purchase trains"
],
"ordered": true,
"optional": ["Purchase private companies"]
}
],
"stock": {
"type": "2D",
"par": {
"values": [50, 60, 70, 85, 100]
},
"movement": {
"up": ["Sold out"],
"down": ["Every share sold"],
"left": ["Withheld revenue"],
"right": ["Paid dividends ≥ current share price"]
},
"market": [
[
{
"value": 62,
"label": 62,
"arrow": "down"
},
68,
76,
84,
92,
{
"value": 100,
"label": 100,
"par": true
},
110,
122,
134,
148,
170,
196,
225,
{
"value": 260,
"label": 260,
"legend": 1
}
],
[
{
"value": 58,
"label": 58,
"arrow": "down"
},
64,
70,
78,
{
"value": 85,
"label": 85,
"par": true
},
94,
102,
112,
124,
136,
150,
172,
{
"value": 198,
"label": 198,
"arrow": "up"
}
],
[
{
"value": 55,
"label": 55,
"arrow": "down"
},
60,
65,
{
"value": 70,
"label": 70,
"par": true
},
78,
86,
95,
104,
114,
125,
{
"value": 138,
"label": 138,
"arrow": "up"
}
],
[
{
"value": 50,
"label": 50,
"arrow": "down"
},
55,
{
"value": 60,
"label": 60,
"par": true
},
66,
72,
80,
88,
96,
{
"value": 106,
"label": 106,
"arrow": "up"
}
],
[
{
"value": 38,
"label": 38,
"arrow": "down",
"legend": 0
},
{
"value": 50,
"label": 50,
"par": true
},
55,
60,
66,
72,
{
"value": 80,
"label": 80,
"arrow": "up"
}
],
[
{
"value": 30,
"label": 30,
"arrow": "down",
"legend": 0
},
{
"value": 38,
"label": 38,
"legend": 0
},
50,
58,
{
"value": 60,
"label": 60,
"arrow": "up"
}
],
[
{
"value": 24,
"label": 24,
"arrow": "down",
"legend": 0
},
{
"value": 30,
"label": 30,
"legend": 0
},
{
"value": 38,
"label": 38,
"legend": 0
},
{
"value": 50,
"label": 50,
"arrow": "up"
}
],
[
{
"value": 20,
"label": 20,
"legend": 0
},
{
"value": 24,
"label": 24,
"legend": 0
},
{
"value": 30,
"label": 30,
"legend": 0
},
{
"value": 38,
"label": 38,
"arrow": "up",
"legend": 0
}
]
],
"legend": [
{
"color": "yellow",
"description": "Shares of this corporation do not count toward the certificate limit",
"icon": "certificate"
},
{
"color": "black",
"description": "Game End"
}
]
},
"tiles": {
"1": 1,
"3": 5,
"4": 5,
"5": 1,
"7": 14,
"8": 18,
"9": 18,
"55": 1,
"58": 5,
"69": 1,
"77": 8,
"78": 14,
"79": 14,
"631": 1,
"644": 1,
"645": 1,
"657": 1,
"658": 1,
"659": 1,
"IR1": {
"quantity": 2,
"color": "yellow",
"labels": [
{ "label": "BC", "angle": 90, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "straight", "end": 0.25 }
],
"cities": [
{ "size": 1, "angle": 180, "percent": 0.4 },
{ "size": 1, "angle": 0, "percent": 0.4 }
],
"values": [
{ "value": 30, "angle": 270, "percent": 0.7 }
]
},
"IR2": {
"quantity": 1,
"color": "yellow",
"labels": [
{ "label": "DD", "angle": 270, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "straight", "end": 0.25 },
{ "side": 3, "type": "sharp" }
],
"terrain": [
{ "cost": 40, "angle": 220, "percent": 0.8 }
],
"cities": [
{ "size": 1, "angle": 150, "percent": 0.5 }
],
"towns": [
{ "angle": 0, "percent": 0.5 }
],
"values": [
{ "value": 10, "angle": 40, "percent": 0.7 },
{ "value": 10, "angle": 90, "percent": 0.7 }
]
},
"IR3": {
"quantity": 1,
"color": "yellow",
"labels": [
{ "label": "EM", "angle": 215, "percent": 0.75 }
],
"track": [
{ "side": 1, "gauge": "narrow" },
{ "side": 2 },
{ "side": 4 }
],
"cities": [
{ "size": 2 }
],
"values": [
{ "value": 10, "angle": 150, "percent": 0.8 }
]
},
"IR4": {
"quantity": 1,
"color": "yellow",
"labels": [
{ "label": "EM", "angle": 35, "percent": 0.75 }
],
"track": [
{ "side": 1 },
{ "side": 3 },
{ "side": 4, "gauge": "narrow" }
],
"cities": [
{ "size": 2 }
],
"values": [
{ "value": 10, "angle": 210, "percent": 0.8 }
]
},
"IR5": {
"quantity": 14,
"color": "yellow",
"towns": [
{}
],
"values": [
{ "value": 10, "angle": 180, "percent": 0.5 }
],
"track": [
{ "side": 1, "gauge": "narrow" }
]
},
"19": 1,
"20": 1,
"80": {
"quantity": 1,
"color": "green",
"track": [
{"side": 1, "type": "gentle"},
{"side": 1, "type": "sharp"},
{"side": 2, "type": "sharp"}
]
},
"81": {
"quantity": 1,
"color": "green",
"track": [
{"side": 1, "type": "gentle"},
{"side": 3, "type": "gentle"},
{"side": 5, "type": "gentle"}
]
},
"82": {
"quantity": 3,
"color": "green",
"track": [
{"side": 1, "type": "straight"},
{"side": 1, "type": "sharp"},
{"side": 2, "type": "gentle"}
]
},
"83": {
"quantity": 3,
"color": "green",
"track": [
{"side": 1, "type": "straight"},
{"side": 1, "type": "gentle"},
{"side": 3, "type": "sharp"}
]
},
"710": 1,
"711": 1,
"712": 1,
"713": 1,
"714": 1,
"715": 1,
"IR6": {
"quantity": 1,
"color": "green",
"labels": [
{ "label": "BC", "angle": 130, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "sharp", "end": 0.25 },
{ "side": 4, "type": "sharp", "end": 0.25 }
],
"cities": [
{ "size": 1, "angle": 30, "percent": 0.5 },
{ "size": 1, "angle": 210, "percent": 0.5 }
],
"values": [
{ "value": 40, "angle": 90, "percent": 0.8 },
{ "value": 40, "angle": 270, "percent": 0.8 }
]
},
"IR7": {
"quantity": 1,
"color": "green",
"labels": [
{ "label": "DD", "angle": 270, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "straight" },
{ "side": 1, "type": "gentle" },
{ "side": 3, "type": "sharp" }
],
"cities": [
{ "size": 1, "angle": 120, "percent": 0.6 }
],
"centerTowns": [
{ "angle": 185, "percent": 0.2 }
],
"values": [
{ "value": 20, "angle": 60, "percent": 0.7 },
{ "value": 10, "angle": 210, "percent": 0.7 }
]
},
"IR8": {
"quantity": 1,
"color": "green",
"labels": [
{ "label": "DD", "angle": 270, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "straight" },
{ "side": 1, "type": "gentle" },
{ "side": 3, "type": "sharp" }
],
"cities": [
{ "size": 1, "angle": 180, "percent": 0.5 }
],
"centerTowns": [
{ "angle": 90, "percent": 0.35 }
],
"values": [
{ "value": 10, "angle": 60, "percent": 0.7 },
{ "value": 20, "angle": 230, "percent": 0.75 }
]
},
"IR9": {
"quantity": 1,
"color": "green",
"labels": [
{ "label": "DUB", "angle": 90, "percent": 0.7 }
],
"track": [
{ "side": 1, "type": "straight", "end": 0.25 },
{ "side": 4, "type": "straight", "end": 0.25 }
],
"cities": [
{ "size": 1, "angle": 180, "percent": 0.4 },
{ "size": 1, "angle": 0, "percent": 0.4 }
],
"values": [
{ "value": 40, "angle": 240, "percent": 0.7 },
{ "value": 40, "angle": 300, "percent": 0.7 }
]
},
"IR10": {
"quantity": 1,
"color": "green",
"labels": [
{ "label": "EM", "angle": 140, "percent": 0.75 }
],
"track": [
{ "side": 1 },
{ "side": 2 },
{ "side": 4, "gauge": "narrow" },
{ "side": 5 }
],
"cities": [
{ "size": 2 }
],