-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathBuildings.json
1223 lines (1204 loc) · 38.8 KB
/
Buildings.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
[
// Ancient Era
// Always available
{
"name": "Palace",
"isNationalWonder": true,
"production": 3,
"science": 3,
"gold": 3,
"culture": 1,
"cityStrength": 2,
"cost": 1,
"uniques": ["Indicates the capital city"]
},
{
"name": "Monument",
"culture": 2,
"cost": 40,
"hurryCostModifier": 40,
"maintenance": 1,
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Stele",
"replaces": "Monument",
"uniqueTo": "Ethiopia",
"culture": 2,
"faith": 2,
"cost": 40,
"hurryCostModifier": 40,
"maintenance": 1,
"uniques": ["Destroyed when the city is captured"] //"Only available <when religion is enabled>"
},
// Column 1
{
"name": "Granary",
"food": 2,
"maintenance": 1,
"hurryCostModifier": 25,
"uniques": ["[+1 Food] from [Deer] tiles [in this city]",
"[+1 Food] from [Bananas] tiles [in this city]",
"[+1 Food] from [Wheat] tiles [in this city]"],
"requiredTech": "Pottery"
},
{
"name": "Shrine",
"faith": 1,
"cost": 40,
"maintenance": 1,
"requiredTech": "Pottery",
"uniques": ["Only available <when religion is enabled>"]
},
{
"name": "Pyramid",
"replaces": "Shrine",
"uniqueTo": "The Maya",
"faith": 2,
"science": 2,
"cost": 40,
"maintenance": 1,
"requiredTech": "Pottery",
"uniques": ["Only available <when religion is enabled>"]
},
{
"name": "Temple of Artemis",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"Great Engineer": 1},
"uniques": ["[+10]% [Food] [in all cities]", "[+15]% Production when constructing [Archery] units [in this city]",
"[+15]% Production when constructing [Ranged Gunpowder] units [in this city]"],
"requiredTech": "Archery",
"quote": "'It is not so much for its beauty that the forest makes a claim upon men's hearts, as for that subtle something, that quality of air, that emanation from old trees, that so wonderfully changes and renews a weary spirit.' - Robert Louis Stevenson"
},
// Column 2
{
"name": "Stone Works",
"happiness": 1,
"production": 1,
"requiredNearbyImprovedResources": ["Marble", "Stone"],
"maintenance": 1,
"hurryCostModifier": 0,
"uniques": ["Must not be on [Plains]",
"[+1 Production] from [Stone] tiles [in this city]",
"[+1 Production] from [Marble] tiles [in this city]"],
"requiredTech": "Calendar"
},
{
"name": "Stonehenge",
"faith": 5,
"isWonder": true,
"greatPersonPoints": {"Great Engineer": 1},
"requiredTech": "Calendar",
"quote": "'Time crumbles things; everything grows old and is forgotten under the power of time' - Aristotle"
},
{
"name": "Library",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["[+1 Science] per [2] population [in this city]"],
"requiredTech": "Writing"
},
{
"name": "Paper Maker",
"replaces": "Library",
"uniqueTo": "China",
"hurryCostModifier": 25,
"gold": 2,
"uniques": ["[+1 Science] per [2] population [in this city]"],
"requiredTech": "Writing"
},
{
"name": "The Great Library",
"science": 3,
"culture": 1,
"greatPersonPoints": {"Great Scientist": 1},
"isWonder": true,
"requiredTech": "Writing",
"uniques": ["Free Technology", "Gain a free [Library] [in this city]"],
"quote": "'Libraries are as the shrine where all the relics of the ancient saints, full of true virtue, and all that without delusion or imposture are preserved and reposed.' - Sir Francis Bacon"
},
{
"name": "Circus",
"requiredNearbyImprovedResources": ["Ivory","Horses"],
"happiness": 2,
"hurryCostModifier": 25,
"requiredTech": "Trapping"
},
{
"name": "Water Mill",
"maintenance": 2,
"food": 2,
"production": 1,
"hurryCostModifier": 25,
"uniques": ["Must be on [River]"],
"requiredTech": "The Wheel"
},
{
"name": "Floating Gardens",
"replaces": "Water Mill",
"uniqueTo": "Aztecs",
"food": 2,
"production": 1,
"uniques": ["[+2 Food] from [Lakes] tiles [in this city]", "Must be next to [Fresh water]"],
"hurryCostModifier": 25,
"maintenance": 1,
"percentStatBonus": {"food": 15},
"requiredTech": "The Wheel"
},
{
"name": "Walls",
"cityStrength": 5,
"cityHealth": 50,
"hurryCostModifier": 25,
"requiredTech": "Masonry",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Walls of Babylon",
"replaces": "Walls",
"cost": 65,
"uniqueTo": "Babylon",
"cityStrength": 6,
"cityHealth": 100,
"hurryCostModifier": 25,
"requiredTech": "Masonry",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "The Pyramids",
"culture": 1,
"greatPersonPoints": {"Great Engineer": 1},
"isWonder": true,
"uniques": ["Can build [all] improvements at a [+25]% rate","[2] free [Worker] units appear"],
"requiredTech": "Masonry",
"quote": "'O, let not the pains of death which come upon thee enter into my body. I am the god Tem, and I am the foremost part of the sky, and the power which protecteth me is that which is with all the gods forever.' - The Book of the Dead, translated by Sir Ernest Alfred Wallis Budge"
},
{
"name": "Mausoleum of Halicarnassus",
"culture": 1,
"greatPersonPoints": {"Great Merchant": 1},
"isWonder": true,
"uniques": ["Gain [100] [Gold] <upon expending a [Great Person] unit> <(modified by game speed)>",
"[+2 Gold] from [Marble] tiles [in this city]", "[+2 Gold] from [Stone] tiles [in this city]"],
"requiredTech": "Masonry",
"quote": "'The whole earth is the tomb of heroic men and their story is not given only on stone over their clay but abides everywhere without visible symbol woven into the stuff of other men's lives.' - Pericles"
},
{
"name": "Barracks",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["New [Military] units start with [15] XP [in this city]", "Destroyed when the city is captured"],
"requiredTech": "Bronze Working"
},
{
"name": "Krepost",
"replaces": "Barracks",
"uniqueTo": "Russia",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["[-25]% Culture cost of natural border growth [in this city]","[-25]% Gold cost of acquiring tiles [in this city]",
"New [Military] units start with [15] XP [in this city]", "Destroyed when the city is captured"],
"requiredTech": "Bronze Working"
},
{
"name": "Statue of Zeus",
"culture": 1,
"isWonder": true,
"uniques": ["[+15]% Strength <for [All] units> <vs cities> <when attacking>"],
"requiredTech": "Bronze Working",
"quote": "'He spoke, the son of Kronos, and nodded his head with the dark brows, and the immortally anointed hair of the great god swept from his divine head, and all Olympos was shaken' - The Iliad"
// "Requires [Honor]" in BNW
},
// Classical Era
// Column 3
{
"name": "Lighthouse",
"cost": 75,
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["Must be next to [Coast]", "[+1 Food] from [Ocean] tiles [in this city]",
"[+1 Food] from [Coast] tiles [in this city]", "[+1 Food] from [Fish] tiles [in this city]" ],
"requiredTech": "Optics"
},
{
"name": "The Great Lighthouse",
"cost": 185,
"culture": 1,
"greatPersonPoints": {"Great Merchant": 1},
"isWonder": true,
"uniques": ["Must be next to [Coast]", "[+1] Movement <for [{Military} {Water}] units>",
"[+1] Sight <for [{Military} {Water}] units>", "Gain a free [Lighthouse] [in this city]"],
"requiredTech": "Optics",
"quote": "'They that go down to the sea in ships, that do business in great waters; these see the works of the Lord, and his wonders in the deep.' - The Bible, Psalms 107:23-24"
},
{
"name": "Stable",
"maintenance": 1,
"requiredNearbyImprovedResources": ["Horses","Sheep","Cattle"],
"hurryCostModifier": 25,
"uniques": ["[+15]% Production when constructing [Mounted] units [in this city]",
"[+1 Production] from [Cattle] tiles [in this city]",
"[+1 Production] from [Horses] tiles [in this city]",
"[+1 Production] from [Sheep] tiles [in this city]"],
"requiredTech": "Horseback Riding"
},
{
"name": "Circus Maximus",
"cost": 125,
"happiness": 5,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [Colosseum] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city"],
"requiredTech": "Horseback Riding"
},
{
"name": "Courthouse",
"maintenance": 4,
"hurryCostModifier": 50,
"uniques": ["Remove extra unhappiness from annexed cities",
"Can only be built <in [Annexed] cities>"],
"requiredTech": "Mathematics"
},
{
"name": "Hanging Gardens",
"greatPersonPoints": {"Great Artist": 1},
"food": 6,
"culture": 1,
"isWonder": true,
"requiredTech": "Mathematics",
"uniques": ["Gain a free [Garden] [in this city]"],
"quote": "'I think that if ever a mortal heard the word of God it would be in a garden at the cool of the day.' - F. Frankfort Moore"
},
{
"name": "Colosseum",
"maintenance": 1,
"happiness": 2,
"hurryCostModifier": 25,
"requiredTech": "Construction"
},
{
"name": "Terracotta Army",
"culture": 6,
"isWonder": true,
"greatPersonPoints": {"Great Artist": 1},
"requiredTech": "Construction",
"quote": "'Regard your soldiers as your children, and they will follow you into the deepest valleys; look on them as your own beloved sons, and they will stand by you even unto death.' - Sun Tzu"
},
// Column 4
{
"name": "Temple",
"faith": 2,
"requiredBuilding": "Shrine",
"maintenance": 2,
"hurryCostModifier": 25,
"requiredTech": "Philosophy",
"uniques": ["Only available <when religion is enabled>", "Destroyed when the city is captured"]
},
{
"name": "Burial Tomb",
"replaces": "Temple",
"uniqueTo": "Egypt",
"maintenance": 0,
"uniques": ["Doubles Gold given to enemy if city is captured"],
"faith": 2,
"happiness": 2,
"requiredBuilding": "Shrine",
"hurryCostModifier": 25,
"requiredTech": "Philosophy"
},
{
"name": "Mud Pyramid Mosque",
"replaces": "Temple",
"uniqueTo": "Songhai",
"maintenance": 0,
"hurryCostModifier": 25,
"culture": 2,
"faith": 2,
"requiredBuilding": "Shrine",
"requiredTech": "Philosophy"
},
{
"name": "National College",
"cost": 125,
"science": 3,
"culture": 1,
"isNationalWonder": true,
"percentStatBonus": {"science": 50},
"uniques": ["Only available <if [Library] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city"],
"requiredTech": "Philosophy"
},
{
"name": "The Oracle",
"culture": 3,
"greatPersonPoints": {"Great Scientist": 1},
"isWonder": true,
"uniques": ["Free Social Policy"],
"requiredTech": "Philosophy",
"quote": "'The ancient Oracle said that I was the wisest of all the Greeks. It is because I alone, of all the Greeks, know that I know nothing' - Socrates"
},
{
"name": "Amphitheater",
"culture": 3,
"specialistSlots": {"Artist": 1},
"requiredBuilding": "Monument",
"maintenance": 2,
"hurryCostModifier": 25,
"uniques": ["Destroyed when the city is captured"],
"requiredTech": "Drama and Poetry"
},
{
"name": "National Epic",
"cost": 125,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [Monument] is constructed in all [non-[Puppeted]] cities>", "[+25]% Great Person generation [in this city]", "Cost increases by [30] per owned city"],
"requiredTech": "Drama and Poetry"
},
{
"name": "Market",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 25,
"percentStatBonus": {"gold": 25},
"requiredTech": "Currency"
},
{
"name": "Bazaar",
"replaces": "Market",
"uniqueTo": "Arabia",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 25,
"percentStatBonus": {"gold": 25},
"uniques": ["Provides 1 extra copy of each improved luxury resource near this City",
"[+2 Gold] from [Oil] tiles [in this city]", "[+2 Gold] from [Oasis] tiles [in this city]"],
"requiredTech": "Currency"
},
{
"name": "Mint",
"maintenance": 0,
"requiredNearbyImprovedResources": ["Gold Ore", "Silver"],
"hurryCostModifier": 25,
"uniques": ["[+2 Gold] from [Gold Ore] tiles [in this city]", "[+2 Gold] from [Silver] tiles [in this city]"],
"requiredTech": "Currency"
},
{
"name": "Petra",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"Great Engineer": 1},
"uniques": ["Must be next to [Desert]", "[+1 Food, +1 Production, +1 Gold] from [Desert] tiles without [Flood plains] [in this city]", "Gain a free [Amphitheater] [in this city]", "[+6 Culture] [in this city] <after discovering [Archaeology]>"],
"requiredTech": "Currency",
"quote": "'...who drinks the water I shall give him, says the Lord, will have a spring inside him welling up for eternal life. Let them bring me to your holy mountain in the place where you dwell. Across the desert and through the mountain to the Canyon of the Crescent Moon...' - Indiana Jones"
},
{
"name": "Aqueduct",
"maintenance": 1,
"hurryCostModifier": 0,
"uniques": ["[40]% Food is carried over after population increases [in this city]"],
"requiredTech": "Engineering"
},
{
"name": "Great Wall",
"culture": 3,
"greatPersonPoints": {"Great Engineer": 1},
"isWonder": true,
"uniques": ["Enemy [Land] units must spend [1] extra movement points when inside your territory <before discovering [Dynamite]> <Suppress warning [*contains a conditional on a unit movement unique*]>",
"Gain a free [Walls] [in this city]"],
"requiredTech": "Engineering",
"quote": "'The art of war teaches us to rely not on the likelihood of the enemy's not attacking, but rather on the fact that we have made our position unassailable.' - Sun Tzu"
},
{
"name": "Heroic Epic",
"cost": 125,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [Barracks] is constructed in all [non-[Puppeted]] cities>", "All newly-trained [non-[Air]] units [in this city] receive the [Morale] promotion",
"Cost increases by [30] per owned city"],
"requiredTech": "Iron Working"
},
{
"name": "Colossus",
"cost": 185,
"culture": 1,
"gold": 5,
"greatPersonPoints": {"Great Merchant": 1},
"isWonder": true,
"uniques": ["Must be next to [Coast]", "[+1 Gold] from [Water] tiles [in this city]"],
"requiredTech": "Iron Working",
"quote": "'Why man, he doth bestride the narrow world like a colossus, and we petty men walk under his huge legs, and peep about to find ourselves dishonorable graves.' - William Shakespeare, Julius Caesar"
},
// Medieval Era
// Column 5
{
"name": "Garden",
"uniques": ["[+25]% Great Person generation [in this city]", "Must be next to [Fresh water]"],
"hurryCostModifier": 25,
"maintenance": 1,
"requiredTech": "Theology"
},
{
"name": "Hagia Sophia",
"faith": 3,
"isWonder": true,
"uniques": ["Gain a free [Temple] [in this city]", "Free [Great Prophet] appears", "Only available <when religion is enabled>"],
"requiredTech": "Theology",
"quote": "'For it soars to a height to match the sky, and as if surging up from among the other buildings it stands on high and looks down upon the remainder of the city, adorning it, because it is a part of it, but glorying in its own beauty' - Procopius, De Aedificis"
},
{
"name": "Great Mosque of Djenne",
"culture": 1,
"faith": 3,
"greatPersonPoints": {"Great Engineer": 1},
"isWonder": true,
"uniques": ["Gain a free [Mosque] [in this city]", "Only available <when religion is enabled>",
"All newly-trained [Missionary] units [in this city] receive the [Devout] promotion",
"All newly-trained [Great Prophet] units [in this city] receive the [Devout] promotion"],
"requiredTech": "Theology",
"quote": "'With the magnificence of eternity before us, let time, with all its fluctuations, dwindle into its own littleness.' - Thomas Chalmers"
},
{
"name": "Grand Temple",
"cost": 125,
"culture": 1,
"faith": 8,
"uniques": ["Only available <if [Temple] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city",
"[+100]% Natural religion spread [in this city]", "Only available <when religion is enabled>", "Can only be built <in [Holy] cities>"],
"requiredTech": "Theology",
"isNationalWonder": true
},
{
"name": "Chichen Itza",
"culture": 1,
"happiness": 4,
"greatPersonPoints": {"Great Engineer": 1},
"isWonder": true,
"uniques": ["[+50]% Golden Age length"],
"requiredTech": "Civil Service",
"quote": "'The katun is established at Chichen Itza. The settlement of the Itza shall take place there. The quetzal shall come, the green bird shall come. Ah Kantenal shall come. It is the word of God. The Itza shall come.' - The Books of Chilam Balam"
},
{
"name": "National Treasury",
"cost": 125,
"gold": 8,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [Market] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city"],
"requiredTech": "Guilds"
},
{
"name": "Machu Picchu",
"gold": 5,
"greatPersonPoints": {"Great Merchant": 1},
"culture": 1,
"isWonder": true,
"uniques": ["[+25]% [Gold] from Trade Routes", "Must have an owned [Mountain] within [2] tiles"],
"requiredTech": "Guilds",
"quote": "'Few romances can ever surpass that of the granite citadel on top of the beetling precipices of Machu Picchu, the crown of Inca Land.' - Hiram Bingham"
},
{
"name": "Workshop",
"maintenance": 2,
"production": 2,
"specialistSlots": {"Engineer": 1},
"hurryCostModifier": 25,
"percentStatBonus": {"production": 10},
"requiredTech": "Metal Casting"
},
{
"name": "Longhouse",
"replaces": "Workshop",
"uniqueTo": "Iroquois",
"cost": 100,
"maintenance": 2,
"production": 2,
"specialistSlots": {"Engineer": 1},
"hurryCostModifier": 25,
"uniques": ["[+1 Production] from [Forest] tiles [in this city]"],
"requiredTech": "Metal Casting"
},
{
"name": "Forge",
"maintenance": 1,
"hurryCostModifier": 25,
"requiredNearbyImprovedResources": ["Iron"],
"requiredTech": "Metal Casting",
"uniques": ["[+15]% Production when constructing [Spaceship part] units [in this city]",
"[+15]% Production when constructing [Land] units [in this city]",
"[+1 Production] from [Iron] tiles [in this city]"]
},
// Column 6
{
"name": "Harbor",
"cost": 120,
"maintenance": 2,
"hurryCostModifier": 25,
"uniques": ["[+1 Production] from [Water resource] tiles [in this city]",
"Connects trade routes over water","Must be next to [Coast]"],
"requiredTech": "Compass"
},
{
"name": "University",
"maintenance": 2,
"hurryCostModifier": 15,
"percentStatBonus": {"science": 33},
"specialistSlots": {"Scientist": 2},
"requiredBuilding": "Library",
"uniques": ["[+2 Science] from [Jungle] tiles [in this city]"],
"requiredTech": "Education"
},
{
"name": "Wat",
"replaces": "University",
"uniqueTo": "Siam",
"maintenance": 2,
"hurryCostModifier": 15,
"percentStatBonus": {"science": 33},
"specialistSlots": {"Scientist": 2},
"culture": 3,
"requiredBuilding": "Library",
"uniques": ["[+2 Science] from [Jungle] tiles [in this city]"],
"requiredTech": "Education"
},
{
"name": "Oxford University",
"cost": 125,
"science": 3,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [University] is constructed in all [non-[Puppeted]] cities>", "Free Technology", "Cost increases by [30] per owned city"],
"requiredTech": "Education"
},
{
"name": "Angkor Wat",
"culture": 1,
"greatPersonPoints": {"Great Engineer": 1},
"isWonder": true,
"uniques": ["[-25]% Culture cost of natural border growth [in all cities]","[-25]% Gold cost of acquiring tiles [in all cities]"],
"requiredTech": "Education",
"quote": "'The temple is like no other building in the world. It has towers and decoration and all the refinements which the human genius can conceive of.' - Antonio da Magdalena"
},
{
"name": "Castle",
"cityStrength": 7,
"cityHealth": 25,
"hurryCostModifier": 25,
"requiredBuilding": "Walls",
"requiredTech": "Chivalry",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Mughal Fort",
"cost": 150,
"replaces": "Castle",
"uniqueTo": "India",
"cityStrength": 7,
"cityHealth": 25,
"culture": 2,
"hurryCostModifier": 25,
"requiredBuilding": "Walls",
"uniques": ["[+1 Gold] [in this city] <after discovering [Flight]>", "Destroyed when the city is captured"],
"requiredTech": "Chivalry"
},
{
"name": "Alhambra",
"culture": 1,
"greatPersonPoints": {"Great Artist": 1},
"isWonder": true,
"percentStatBonus": {"culture": 20},
"uniques": ["All newly-trained [relevant] units [in this city] receive the [Drill I] promotion",
"Gain a free [Castle] [in this city]"],
"requiredTech": "Chivalry",
"quote": "'Justice is an unassailable fortress, built on the brow of a mountain which cannot be overthrown by the violence of torrents, nor demolished by the force of armies.' - Joseph Addison"
},
{
"name": "Ironworks",
"cost": 125,
"production": 8,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <if [Workshop] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city"],
"requiredTech": "Machinery"
},
{
"name": "Notre Dame",
"faith": 4,
"happiness": 10,
"greatPersonPoints": {"Great Merchant": 1},
"isWonder": true,
"requiredTech": "Physics",
"quote": "'Architecture has recorded the great ideas of the human race. Not only every religious symbol, but every human thought has its page in that vast book.' - Victor Hugo"
},
{
"name": "Armory",
"hurryCostModifier": 25,
"maintenance": 1,
"requiredBuilding": "Barracks",
"uniques": ["New [Military] units start with [15] XP [in this city]", "Destroyed when the city is captured"],
"requiredTech": "Steel"
},
// Renaissance Era
// Column 7
{
"name": "Observatory",
"maintenance": 0,
"hurryCostModifier": 15,
"percentStatBonus": {"science": 50},
"requiredBuilding": "Library",
"uniques": ["Must be next to [Mountain]"],
"requiredTech": "Astronomy"
},
{
"name": "Opera House",
"culture": 4,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 10,
"requiredBuilding": "Amphitheater",
"maintenance": 2,
"requiredTech": "Acoustics",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Ceilidh Hall",
"replaces": "Opera House",
"uniqueTo": "Celts",
"culture": 4,
"happiness": 3,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 10,
"requiredBuilding": "Amphitheater",
"maintenance": 2,
"requiredTech": "Acoustics",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Sistine Chapel",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"Great Artist": 2},
"uniques": ["[+25]% [Culture] [in all cities]"],
"requiredTech": "Acoustics",
"quote": "'I live and love in God's peculiar light.' - Michelangelo Buonarroti"
},
{
"name": "Bank",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 15,
"percentStatBonus": {"gold": 25},
"requiredBuilding": "Market",
"requiredTech": "Banking"
},
{
"name": "Satrap's Court",
"replaces": "Bank",
"uniqueTo": "Persia",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"happiness": 2,
"hurryCostModifier": 15,
"percentStatBonus": {"gold": 25},
"requiredBuilding": "Market",
"requiredTech": "Banking"
},
{
"name": "Constabulary",
"cost": 160,
"maintenance": 1,
"hurryCostModifier": 10,
"uniques": ["Only available <when espionage is enabled>", "[-25]% enemy spy effectiveness [in this city]"],
"requiredTech": "Banking"
},
// will be introduced in BNW expansion pack
// {
// "name": "Hanse",
// "replaces": "Bank",
// "uniqueTo": "Germany",
// "gold": 2,
// "specialistSlots": {"Merchant": 1},
// "hurryCostModifier": 15,
// "percentStatBonus": {"gold": 25},
// "uniques": ["+5% Production for every Trade Route with a City-State in the empire"],
// "requiredBuilding": "Market",
// "requiredTech": "Banking"
// },
{
"name": "Forbidden Palace",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"Great Artist": 1},
"uniques": ["[-10]% Unhappiness from [Population] [in all cities]"],
"requiredTech": "Banking",
"quote": "'Most of us can, as we choose, make of this world either a palace or a prison' - John Lubbock"
},
{
"name": "Theatre",
"happiness": 3,
"hurryCostModifier": 10,
"maintenance": 2,
"requiredBuilding": "Colosseum",
"requiredTech": "Printing Press"
},
{
"name": "Leaning Tower of Pisa",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"Great Artist": 1},
"uniques": ["[+25]% Great Person generation [in all cities]", "Free Great Person"],
"requiredTech": "Printing Press",
"quote": "'Don't clap too hard - it's a very old building.' - John Osbourne"
},
{
"name": "Himeji Castle",
"culture": 3,
"isWonder": true,
"greatPersonPoints": {"Great Engineer": 2},
"uniques": ["[+15]% Strength <for [All] units> <when fighting in [Friendly Land] tiles>",
"Gain a free [Castle] [in this city]"],
"requiredTech": "Gunpowder",
"quote": "'Bushido is realized in the presence of death. This means choosing death whenever there is a choice between life and death. There is no other reasoning.' - Yamamoto Tsunetomo"
},
// Column 8
{
"name": "Seaport",
"hurryCostModifier": 25,
"maintenance": 3,
"requiredBuilding": "Harbor",
"uniques": ["[+1 Production, +1 Gold] from [Water resource] tiles [in this city]",
"Must be next to [Coast]", "[+15]% Production when constructing [Water] units [in this city]"],
"requiredTech": "Navigation"
},
{
"name": "Hermitage",
"cost": 125,
"percentStatBonus": {"culture": 50},
"culture": 5,
"isNationalWonder": true,
"uniques": ["Only available <if [Opera House] is constructed in all [non-[Puppeted]] cities>", "Cost increases by [30] per owned city"],
"requiredTech": "Architecture"
},
{
"name": "Taj Mahal",
"culture": 1,
"happiness": 4,
"greatPersonPoints": {"Great Artist": 2},
"isWonder": true,
"uniques": ["Empire enters [Golden Age]"],
"requiredTech": "Architecture",
"quote": "'The Taj Mahal rises above the banks of the river like a solitary tear suspended on the cheek of time.' - Rabindranath Tagore"
},
{
"name": "Porcelain Tower",
"culture": 1,
"greatPersonPoints": {"Great Scientist": 2},
"isWonder": true,
"uniques": ["Free [Great Scientist] appears","Science gained from research agreements [+50]%"],
"requiredTech": "Architecture",
"quote": "'Things always seem fairer when we look back at them, and it is out of that inaccessible tower of the past that Longing leans and beckons.' - James Russell Lowell"
},
{
"name": "Windmill",
"production": 2,
"specialistSlots": {"Engineer": 1},
"hurryCostModifier": 25,
"maintenance": 2,
"uniques": ["Must not be on [Hill]", "[+10]% Production when constructing [All] buildings [in this city]"],
"requiredTech": "Economics"
},
{
"name": "Coffee House",
"replaces": "Windmill",
"uniqueTo": "Austria",
"production": 2,
"percentStatBonus": {"production": 10},
"specialistSlots": {"Engineer": 1},
"hurryCostModifier": 25,
"maintenance": 2,
"uniques": ["[+25]% Great Person generation [in this city]"],
"requiredTech": "Economics"
},
{
"name": "Arsenal",
"cost": 300,
"cityStrength": 9,
"cityHealth": 25,
"hurryCostModifier": 25,
"requiredBuilding": "Castle",
"requiredTech": "Metallurgy",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Kremlin",
"culture": 3,
"cityStrength": 12,
"isWonder": true,
"uniques": ["[+25]% City Strength from defensive buildings"],
"requiredTech": "Metallurgy",
"quote": "'The Kremlin is constantly changing the rules of the game to suit its purposes. We are not playing chess, we're playing roulette.' - Garry Kasparov"
},
// Industrial Era
// Column 9
{
"name": "Museum",
"culture": 5,
"specialistSlots": {"Artist": 2},
"requiredBuilding": "Opera House",
"maintenance": 3,
"hurryCostModifier": 0,
"requiredTech": "Archaeology",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "The Louvre",
"culture": 1,
"happiness": 4,
"isWonder": true,
"uniques": ["[2] free [Great Artist] units appear"],
"requiredTech": "Archaeology",
"quote": "'Every genuine work of art has as much reason for being as the earth and the sun' - Ralph Waldo Emerson"
},
{
"name": "Public School",
"science": 3,
"specialistSlots": {"Scientist": 1},
"requiredBuilding": "University",
"maintenance": 3,
"hurryCostModifier": 0,
"uniques": ["[+1 Science] per [2] population [in this city]"],
"requiredTech": "Scientific Theory"
},
{
"name": "Factory",
"cost": 360,
"production": 4,
"percentStatBonus": {"production": 10},
"specialistSlots": {"Engineer": 2},
"requiredBuilding": "Workshop",
"maintenance": 3,
"hurryCostModifier": 0,
"requiredResource": "Coal",
"requiredTech": "Industrialization"
},
{
"name": "Big Ben",
"culture": 1,
"gold": 4,
"greatPersonPoints": {"Great Merchant": 2},
"isWonder": true,
"uniques": ["[Gold] cost of purchasing items in cities [-15]%"],
"requiredTech": "Industrialization",
"quote": "'To achieve great things, two things are needed: a plan, and not quite enough time.' - Leonard Bernstein"
},
{
"name": "Military Academy",
"hurryCostModifier": 0,
"maintenance": 1,
"requiredBuilding": "Armory",
"uniques": ["New [Military] units start with [15] XP [in this city]", "Destroyed when the city is captured"],
"requiredTech": "Military Science"
},
{
"name": "Brandenburg Gate",
"culture": 3,
"greatPersonPoints": {"Great Scientist": 2},
"isWonder": true,
"uniques": ["Free [Great General] appears", "New [Military] units start with [15] XP [in this city]"],
"requiredTech": "Military Science",
"quote": "'Pale Death beats equally at the poor man's gate and at the palaces of kings.' - Horace"
},
// Column 10
{
"name": "Hospital",
"food": 5,
"requiredBuilding": "Aqueduct",
"maintenance": 2,
"hurryCostModifier": 0,
"requiredTech": "Biology"
},
{
"name": "Stock Exchange",
"gold": 3,
"percentStatBonus": {"gold": 25},
"specialistSlots": {"Merchant": 2},
"hurryCostModifier": 15,
"requiredBuilding": "Bank",
"requiredTech": "Electricity"
},
{
"name": "Hydro Plant",
"requiredResource": "Aluminum",
"hurryCostModifier": 0,
"maintenance": 3,
"uniques": ["Must be on [River]","[+1 Production] from [River] tiles [in this city]"],
"requiredTech": "Electricity"
},
{
"name": "Police Station",
"cost": 300,
"maintenance": 1,
"hurryCostModifier": 10,
"uniques": ["Only available <when espionage is enabled>", "[-25]% enemy spy effectiveness [in this city]"],
"requiredBuilding": "Constabulary",
"requiredTech": "Electricity"
},
// Modern Era
// Column 11
{
"name": "Stadium",
"happiness": 4,
"requiredBuilding": "Theatre",
"maintenance": 2,
"requiredTech": "Refrigeration"
},
{
"name": "Broadcast Tower",
"culture": 3,
"percentStatBonus": {"culture": 33},
"requiredBuilding": "Museum",
"maintenance": 3,
"requiredTech": "Radio",
"uniques": ["Destroyed when the city is captured"]
},
{
"name": "Eiffel Tower",
"culture": 1,
"happiness": 5,
"greatPersonPoints": {"Great Merchant": 2},
"isWonder": true,
"uniques": ["[+1 Happiness] per [2] social policies adopted"],
"requiredTech": "Radio",
"quote": "'We live only to discover beauty, all else is a form of waiting' - Kahlil Gibran"
},
{
"name": "National Intelligence Agency",
"cost": 120,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Only available <when espionage is enabled>",
"New spies start with [1] level(s)",
"Promotes all spies [1] time(s)",
"Gain an extra spy", // Order is significant here
"[-15]% enemy spy effectiveness [in this city]",
"Only available <if [Police Station] is constructed in all [non-[Puppeted]] cities>",
"Cost increases by [30] per owned city"],
"requiredTech": "Radio"
},
{
"name": "Military Base",
"cityStrength": 12,