-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathBuildings.json
More file actions
1330 lines (1314 loc) · 49.8 KB
/
Copy pathBuildings.json
File metadata and controls
1330 lines (1314 loc) · 49.8 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
[
// Uniques
{
"name": "Mosque",
"cost": -1,
"culture": 5,
"happiness": 1,
"uniques": ["Unbuildable"]
},
{
"name": "~limit",
"gold": 2,
"cost": -1,
"uniques": ["Will not be displayed in Civilopedia","Unbuildable","Unsellable"]
},
{
"name": "Cloves", // Indonesian "luxury"
"uniqueTo": "Indonesia",
"cannotBeBuiltWith": "~limit",
"providesFreeBuilding": "~limit",
"requiredTech": "Astronomy",
"isNationalWonder": true,
"cost": -1,
"uniques": ["Will not be displayed in Civilopedia","Provides [2] [Cloves]","Must be next to [Coast]"]
},
{
"name": "Nutmeg", // Indonesian "luxury"
"uniqueTo": "Indonesia",
"cannotBeBuiltWith": "~limit",
"providesFreeBuilding": "~limit",
"requiredTech": "Astronomy",
"isNationalWonder": true,
"cost": -1,
"uniques": ["Will not be displayed in Civilopedia","Provides [2] [Nutmeg]","Must be next to [Coast]"]
},
{
"name": "Pepper", // Indonesian "luxury"
"uniqueTo": "Indonesia",
"cannotBeBuiltWith": "~limit",
"providesFreeBuilding": "~limit",
"requiredTech": "Astronomy",
"isNationalWonder": true,
"cost": -1,
"uniques": ["Will not be displayed in Civilopedia","Provides [2] [Pepper]","Must be next to [Coast]"]
},
{
"name": "~Dutch",
"isNationalWonder": true,
"uniqueTo": "The Netherlands",
"cost": -1,
"uniques": ["Provides 1 extra copy of each improved luxury resource near this City","Will not be displayed in Civilopedia"]
},
{
"name": "Free Annexed Technology",
"uniqueTo": "Assyria",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Can only be built in annexed cities","Free Technology",
"Will not be displayed in Civilopedia","Unsellable"]
},
{
"name": "Maya Great People Bonus",
"uniqueTo": "The Maya",
"greatPersonPoints": {"science": 12,"culture": 12,"production": 12,"gold": 12},
"requiredTech": "Theology",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]",
"Will not be displayed in Civilopedia","Unsellable"]
},
{
"name": "Free Classical Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Theology]","Unlocked with [Classical era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Medieval Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Astronomy]","Unlocked with [Medieval era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Renaissance Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Archaeology]","Unlocked with [Renaissance era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Industrial Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Refrigeration]","Unlocked with [Industrial era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Modern Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Pharmaceuticals]","Unlocked with [Modern era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Atomic Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy","Unsellable",
"Obsolete with [Telecommunications]","Unlocked with [Atomic era]","Will not be displayed in Civilopedia"]
},
{
"name": "Free Information Policy",
"uniqueTo": "Poland",
"cost": -1,
"replacementTextForUniques": " ",
"uniques": ["Not displayed as an available construction without [Palace]","Free Social Policy",
"Unlocked with [Information era]","Will not be displayed in Civilopedia","Unsellable"]
},
{
"name": "~CS",
"isNationalWonder": "true",
"cost": -1,
"uniques": ["Provides [-4] [Trade Route]","Will not be displayed in Civilopedia","Unbuildable"]
},
// Buildings & Wonders
// Ancient Era
{
"name": "Palace",
"isNationalWonder": true,
"production": 3,
"science": 3,
"gold": 3,
"cityStrength": 2,
"culture": 1,
"cost": 1,
"uniques": ["Indicates the capital city","Provides [4] [Trade Route]","[-1 Gold] from every [River]",
"[+1 Gold] from every [Flood plains]"]
},
{
"name": "Monument",
"culture": 2,
"cost": 40,
"hurryCostModifier": 40,
"maintenance": 1
},
{
"name": "Stele", //modded
"replaces": "Monument",
"uniqueTo": "Ethiopia",
"culture": 4,
"cost": 40,
"hurryCostModifier": 40,
"maintenance": 1
},
{
"name": "Pyramid", //modded
"replaces": "Monument",
"uniqueTo": "The Maya",
"culture": 2,
"science": 2,
"cost": 40,
"hurryCostModifier": 40,
"maintenance": 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",
"[+3 Food] from [Land Trade Route (Food)] tiles in this city",
"[+3 Food] from [Sea Trade Route (Food)] tiles in this city"],
"requiredTech": "Pottery"
},
{
"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",
"culture": 5,
"isWonder": true,
"greatPersonPoints": {"production": 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": "Royal Library", //modded
"replaces": "Library",
"uniqueTo": "Assyria",
"cost": 75,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["[+1 Science] per [2] population [in this city]","New [Military] units start with [10] Experience in this city"],
"requiredTech": "Writing"
},
{
"name": "The Great Library",
"science": 3,
"culture": 1,
"greatPersonPoints": {"science": 1},
"isWonder": true,
"providesFreeBuilding": "Library",
"requiredTech": "Writing",
"uniques": ["Free Technology"],
"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", //modded
"cost": 75,
"food": 2,
"production": 1,
"uniques": ["Must be on [River]"],
"hurryCostModifier": 25,
"maintenance": 2,
"requiredTech": "The Wheel"
},
{
"name": "Floating Gardens",
"replaces": "Water Mill",
"uniqueTo": "Aztecs",
"cost": 75,
"food": 2,
"production": 1,
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["+[15]% [Food] [in this city]","[+2 Food] from [Lakes] tiles in this city","Must be next to [Fresh water]"],
"requiredTech": "The Wheel"
},
{
"name": "Temple of Artemis",
"culture": 1,
"isWonder": true,
"cost": 185,
"greatPersonPoints": {"production": 1},
"uniques": ["+[10]% growth [in all cities]","+[15]% Production when constructing [Ranged] units [in all cities]"],
"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"
},
{
"name": "Walls",
"cityStrength": 5,
"cityHealth": 50,
"hurryCostModifier": 25,
"requiredTech": "Masonry"
},
{
"name": "Walls of Babylon",
"replaces": "Walls",
"cost": 65,
"uniqueTo": "Babylon",
"cityStrength": 6,
"cityHealth": 100,
"hurryCostModifier": 25,
"requiredTech": "Masonry"
},
{
"name": "The Pyramids",
"culture": 1,
"greatPersonPoints": {"production": 1},
"isWonder": true,
"uniques": ["Worker construction increased 25%","[2] free [Worker] units appear","Requires [Liberty]"],
"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": "Barracks",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["New [Military] units start with [15] Experience in this city"],
"requiredTech": "Bronze Working"
},
{
"name": "Ikanda", //modded
"replaces": "Barracks",
"uniqueTo": "Zulu",
"cost": 75,
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["New [Military] units start with [15] Experience in this city","All newly-trained [Melee] units in this city receive the [Buffalo Horns I] promotion"],
"requiredTech": "Bronze Working"
},
{
"name": "Colossus",
"culture": 1,
"gold": 5,
"greatPersonPoints": {"gold": 1},
"isWonder": true,
"uniques": ["Must be next to [Coast]","Provides [1] [Trade Route]","Free [Cargo Ship] appears","[+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"
},
{
"name": "Krepost",
"replaces": "Barracks",
"uniqueTo": "Russia",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["New [Military] units start with [15] Experience in this city","-[25]% Culture cost of acquiring tiles [in this city]",
"-[25]% Gold cost of acquiring tiles [in this city]"],
"requiredTech": "Bronze Working"
},
{
"name": "Heroic Epic",
"cost": 125,
"culture": 1,
"isNationalWonder": true,
"uniques": ["All newly-trained [non-air] units in this city receive the [Morale] promotion",
"Cost increases by [30] per owned city","Requires a [Barracks] in all cities"],
"requiredTech": "Iron Working"
},
{
"name": "Statue of Zeus",
"culture": 1,
"isWonder": true,
"uniques": ["+15% Combat Strength for all units when attacking Cities","Requires [Honor]"],
"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"
},
{
"name": "Mausoleum of Halicarnassus",
"culture": 1,
"greatPersonPoints": {"gold": 1},
"isWonder": true,
"uniques": ["Provides a sum of gold each time you spend a Great Person",
"[+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"
},
// Classical Era
{
"name": "Lighthouse",
"hurryCostModifier": 25,
"maintenance": 1,
"uniques": ["Must be next to [Coast]","[+1 Food] from [Coast] tiles in this city",
"[+1 Food] from [Ocean] tiles in this city","[+1 Food] from [Fish] tiles in this city"],
"requiredTech": "Optics"
},
{
"name": "The Great Lighthouse",
"culture": 1,
"greatPersonPoints": {"gold": 1},
"isWonder": true,
"providesFreeBuilding": "Lighthouse",
"uniques": ["Must be next to [Coast]", "All military naval units receive +1 movement and +1 sight"],
"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": "Caravansary",
"cost": 120,
"hurryCostModifier": 25,
"uniques": ["[+2 Gold] from [Land Trade Route (Gold)] in this city"],
"requiredTech": "Horseback Riding"
},
{
"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": "Ducal Stable", //modded
"replaces": "Stable",
"uniqueTo": "Poland",
"cost": 75,
"maintenance": 0,
"requiredNearbyImprovedResources": ["Horses","Sheep","Cattle"],
"hurryCostModifier": 25,
"uniques": ["+[15]% Production when constructing [Mounted] units [in this city]",
"New [Mounted] units start with [15] Experience in this city",
"[+1 Production, +1 Gold] from [Cattle] tiles in this city",
"[+1 Production, +1 Gold] from [Horses] tiles in this city",
"[+1 Production, +1 Gold] from [Sheep] tiles in this city"],
"requiredTech": "Horseback Riding"
},
{
"name": "Circus Maximus",
"cost": 125,
"happiness": 5,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Cost increases by [30] per owned city","Requires a [Colosseum] in all cities"],
"requiredTech": "Horseback Riding"
},
{
"name": "Hanging Gardens", //adjusted
"food": 6,
"culture": 1,
"providesFreeBuilding": "Garden",
"isWonder": true,
"requiredTech": "Mathematics",
"uniques": ["Requires [Tradition]"],
"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": "Courthouse",
"maintenance": 4,
"hurryCostModifier": 50,
"uniques": ["Remove extra unhappiness from annexed cities",
"Can only be built in annexed cities"],
"requiredTech": "Mathematics"
},
{
"name": "Colosseum",
"maintenance": 1,
"happiness": 2,
"hurryCostModifier": 25,
"requiredTech": "Construction"
},
{
"name": "Terracotta Army", //adjusted
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"culture": 1},
"requiredTech": "Construction",
"uniques": ["Free [Warrior] appears","Free [Archer] appears","Free [Composite Bowman] appears","Free [Spearman] appears","Free [Catapult] appears"],
"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"
},
{
"name": "Temple",
"culture": 2,
"specialistSlots": {"Artist": 1},
"maintenance": 2,
"hurryCostModifier": 25,
"uniques": ["Requires a [Monument] in this city"],
"requiredTech": "Philosophy"
},
{
"name": "Burial Tomb",
"replaces": "Temple",
"uniqueTo": "Egypt",
"culture": 2,
"happiness": 2,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 25,
"uniques": ["Doubles Gold given to enemy if city is captured","Requires a [Monument] in this city"],
"requiredTech": "Philosophy"
},
{
"name": "Mud Pyramid Mosque",
"replaces": "Temple",
"uniqueTo": "Songhai",
"culture": 4,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 15,
"uniques": ["Requires a [Monument] in this city"],
"requiredTech": "Philosophy"
},
{
"name": "The Oracle",
"culture": 3,
"greatPersonPoints": {"science": 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": "Parthenon", //modded
"culture": 6,
"isWonder": true,
"greatPersonPoints": {"culture": 1},
"requiredTech": "Drama and Poetry",
"quote": "'Earth proudly wears the Parthenon as the best gem upon her zone.' - Ralph Waldo Emerson"
},
{
"name": "National Epic",
"cost": 125,
"culture": 1,
"uniques": ["+[25]% great person generation in this city","Cost increases by [30] per owned city",
"Requires a [Monument] in all cities"],
"isNationalWonder": true,
"requiredTech": "Drama and Poetry"
},
{
"name": "Market",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 25,
"uniques": ["+[25]% [Gold] [in this city]"],
"requiredTech": "Currency"
},
{
"name": "Bazaar",
"replaces": "Market",
"uniqueTo": "Arabia",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 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",
"+[25]% [Gold] [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", //modded
"isWonder": true,
"greatPersonPoints": {"production": 1},
"culture": 1,
"uniques": ["[+1 Food, +1 Production] from [Desert] tiles in this city","[+6 Culture] once [Archaeology] is discovered",
"Provides [1] [Trade Route]","Free [Caravan] appears","Must be next to [Desert]"],
"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]% of food is carried over after population increases"],
"requiredTech": "Engineering"
},
{
"name": "Great Wall",
"culture": 3,
"greatPersonPoints": {"production": 1},
"isWonder": true,
"providesFreeBuilding": "Walls",
"uniques": ["Enemy land units must spend 1 extra movement point when inside your territory (obsolete upon Dynamite)"],
"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"
},
// Medieval Era
{
"name": "Monastery",
"maintenance": 0,
"requiredNearbyImprovedResources": ["Wine","Incense"],
"hurryCostModifier": 25,
"uniques": ["[+2 Culture] from [Wine] in this city","[+2 Culture] from [Incense] tiles in this city"],
"requiredTech": "Theology"
},
{
"name": "Garden",
"cost": 120,
"uniques": ["+[25]% great person generation in this city", "Must be next to [Fresh water]"],
"hurryCostModifier": 25,
"maintenance": 1,
"requiredTech": "Theology"
},
{
"name": "Candi", //modded
"replaces": "Garden",
"uniqueTo": "Indonesia",
"cost": 120,
"culture": 2,
"uniques": ["+[25]% great person generation in this city"],
"hurryCostModifier": 25,
"maintenance": 1,
"requiredTech": "Theology"
},
{
"name": "Grand Temple", //modded
"cost": 125,
"culture": 9,
"isNationalWonder": true,
"uniques": ["Cost increases by [30] per owned city","Requires a [Temple] in all cities"],
"requiredTech": "Theology"
},
{
"name": "Great Mosque of Djenne",
"culture": 3,
"isWonder": true,
"providesFreeBuilding": "Mosque",
"uniques": ["[2] free [Missionary] units appear","Requires [Piety]"],
"requiredTech": "Theology",
"quote": "With the magnificence of eternity before us, let time, with all its fluctuations, dwindle into its own littleness. – Thomas Chalmers"
},
{
"name": "Hagia Sophia",
"culture": 4,
"greatPersonPoints": {"culture": 1},
"isWonder": true,
"providesFreeBuilding": "Temple",
"uniques": ["Free [Great Artist] appears"],
"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": "National College",
"cost": 125,
"science": 3,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Cost increases by [30] per owned city","+[50]% [Science] [in this city]",
"Requires a [Library] in all cities"],
"requiredTech": "Philosophy"
},
{
"name": "Chichen Itza",
"culture": 1,
"happiness": 4,
"greatPersonPoints": {"production": 1},
"isWonder": true,
"uniques": ["Golden Age length increased by [50]%"],
"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": "East India Company", //modded
"cost": 125,
"gold": 4,
"culture": 1,
"isNationalWonder": true,
"uniques": ["[+2 Gold] from every [Land Trade Route (Food)]","[+2 Gold] from every [Land Trade Route (Production)]",
"[+2 Gold] from every [Land Trade Route (Gold)]","[+2 Gold] from every [Sea Trade Route (Food)]",
"[+2 Gold] from every [Sea Trade Route (Production)]","[+2 Gold] from every [Sea Trade Route (Gold)]",
"Cost increases by [30] per owned city","Requires a [Market] in all cities"],
"requiredTech": "Currency"
},
{
"name": "Machu Picchu",
"gold": 5,
"greatPersonPoints": {"gold": 1},
"culture": 1,
"isWonder": true,
"uniques": ["Gold from all trade routes +25%","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,
"uniques": ["[+3 Production] from [Land Trade Route (Production)] tiles in this city",
"[+3 Production] from [Sea Trade Route (Production)] tiles in this city","+[10]% [Production] [in this city]"],
"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","[+3 Production] from [Land Trade Route (Production)] tiles in this city",
"[+2 Production] from [Sea Trade Route (Production)] tiles in this city"],
"requiredTech": "Metal Casting"
},
{
"name": "Forge",
"maintenance": 1,
"hurryCostModifier": 25,
"requiredNearbyImprovedResources": ["Iron"],
"requiredTech": "Metal Casting",
"uniques": ["+[15]% Production when constructing [Land] units [in this city]",
"+[15]% Production when constructing [Spaceship part] [in this city]",
"[+1 Production] from [Iron] tiles in this city"]
},
{
"name": "Harbor",
"maintenance": 2,
"hurryCostModifier": 25,
"uniques": ["[+1 Production] from [Water resource] tiles in this city","[+1 Gold] from [Sea Trade Route (Food)] tiles in this city",
"[+1 Gold] from [Sea Trade Route (Production)] tiles in this city","[+1 Gold] from [Sea Trade Route (Gold)] tiles in this city",
"Connects trade routes over water","Must be next to [Coast]"],
"requiredTech": "Compass"
},
{
"name": "University",
"maintenance": 2,
"hurryCostModifier": 15,
"specialistSlots": {"Scientist": 2},
"uniques": ["[+2 Science] from [Jungle] tiles in this city","+[33]% [Science] [in this city]",
"Requires a [Library] in this city"],
"requiredTech": "Education"
},
{
"name": "Wat",
"replaces": "University",
"uniqueTo": "Siam",
"culture": 3,
"maintenance": 2,
"hurryCostModifier": 15,
"percentStatBonus": {"science": 33},
"specialistSlots": {"Scientist": 2},
"uniques": ["[+2 Science] from [Jungle] tiles in this city","+[33]% [Science] [in this city]",
"Requires a [Library] in this city"],
"requiredTech": "Education"
},
{
"name": "Oxford University",
"cost": 125,
"science": 3,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Free Technology","Cost increases by [30] per owned city",
"Requires a [University] in all cities"],
"requiredTech": "Education"
},
{
"name": "Castle",
"cityStrength": 7,
"cityHealth": 25,
"hurryCostModifier": 25,
"uniques": ["Requires a [Walls] in this city"],
"requiredTech": "Chivalry"
},
{
"name": "Mughal Fort",
"replaces": "Castle",
"uniqueTo": "India",
"cityStrength": 7,
"cityHealth": 25,
"culture": 2,
"hurryCostModifier": 25,
"uniques": ["[+1 Gold] once [Flight] is discovered","Requires a [Walls] in this city"],
"requiredTech": "Chivalry"
},
{
"name": "Angkor Wat",
"culture": 1,
"greatPersonPoints": {"production": 1},
"isWonder": true,
"uniques": ["-[25]% Culture cost of acquiring tiles [in all cities]","-[25]% Gold cost of acquiring tiles [in all cities]"],
"requiredTech": "Chivalry",
"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": "Alhambra",
"culture": 1,
"greatPersonPoints": {"culture": 1},
"isWonder": true,
"providesFreeBuilding": "Castle",
"uniques": ["All newly-trained [relevant] units in this city receive the [Drill I] promotion",
"+[20]% [Culture] [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": ["Cost increases by [30] per owned city","Requires a [Workshop] in all cities"],
"requiredTech": "Machinery"
},
{
"name": "Notre Dame",
"culture": 3,
"happiness": 10,
"greatPersonPoints": {"gold": 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,
"uniques": ["New [Military] units start with [15] Experience in this city","Requires a [Barracks] in this city"],
"requiredTech": "Steel"
},
// Renaissance Era
{
"name": "Observatory",
"maintenance": 0,
"hurryCostModifier": 15,
"uniques": ["+[50]% [Science] [in this city]","Must be next to [Mountain]"],
"requiredTech": "Astronomy"
},
{
"name": "Opera House",
"culture": 4,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 10,
"maintenance": 2,
"uniques": ["Requires a [Temple] in this city"],
"requiredTech": "Acoustics"
},
{
"name": "Ceilidh Hall", //modded
"replaces": "Opera House",
"uniqueTo": "Celts",
"happiness": 3,
"culture": 4,
"specialistSlots": {"Artist": 1},
"cost": 250,
"hurryCostModifier": 25,
"maintenance": 2,
"uniques": ["Requires a [Temple] in this city"],
"requiredTech": "Acoustics"
},
{
"name": "Sistine Chapel",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"culture": 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,
"uniques": ["+[25]% [Gold] [in this city]","Requires a [Market] in this city"],
"requiredTech": "Banking"
},
{
"name": "Satrap's Court",
"replaces": "Bank",
"uniqueTo": "Persia",
"gold": 3,
"specialistSlots": {"Merchant": 1},
"happiness": 2,
"hurryCostModifier": 15,
"uniques": ["+[25]% [Gold] [in this city]","Requires a [Market] in this city"],
"requiredTech": "Banking"
},
{
"name": "Hanse",
"replaces": "Bank",
"uniqueTo": "Germany",
"gold": 2,
"specialistSlots": {"Merchant": 1},
"hurryCostModifier": 15,
"uniques": ["+5% Production for every Trade Route with a City-State in the empire",
"+[25]% [Gold] [in this city]","Requires a [Market] in this city"],
"requiredTech": "Banking"
},
{
"name": "Forbidden Palace",
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"culture": 1},
"uniques": ["Unhappiness from population decreased by [10]%","Requires [Patronage]"],
"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,
"uniques": ["Requires a [Colosseum] in this city"],
"requiredTech": "Printing Press"
},
{
"name": "Leaning Tower of Pisa", //adjusted
"culture": 1,
"isWonder": true,
"greatPersonPoints": {"culture": 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": {"production": 2},
"providesFreeBuilding": "Castle",
"uniques": ["+[15]% combat bonus for units fighting in [Friendly Land]"],
"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"
},
{
"name": "Museum",
"culture": 5,
"specialistSlots": {"Artist": 2},
"maintenance": 3,
"hurryCostModifier": 0,
"uniques": ["Requires a [Opera House] in this city"],
"requiredTech": "Archaeology"
},
{
"name": "Hermitage",
"cost": 125,
"culture": 5,
"isNationalWonder": true,
"uniques": ["+[50]% [Culture] [in this city]","Cost increases by [30] per owned city",
"Requires a [Opera House] in all cities"],
"requiredTech": "Archaeology"
},
{
"name": "The Louvre",
"culture": 1,
"happiness": 4,
"isWonder": true,
"uniques": ["[2] free [Great Artist] units appear","Requires [Exploration]"],
"requiredTech": "Archaeology",
"quote": "'Every genuine work of art has as much reason for being as the earth and the sun' - Ralph Waldo Emerson"
},
{
"name": "Seaport",
"hurryCostModifier": 25,
"maintenance": 3,
"uniques": ["[+1 Production, +1 Gold] from [Water resource] tiles in this city",
"+[15]% Production when constructing [Water] units [in this city]","Must be next to [Coast]",
"Requires a [Harbor] in this city"],
"requiredTech": "Navigation"
},
{
"name": "Uffizi", //modded
"culture": 2,
"specialistSlots": {"Artist": 3},
"isWonder": true,
"uniques": ["Free [Great Artist] appears","Requires [Aesthetics]"],
"requiredTech": "Architecture",
"quote": "'The painter is not simply someone who looks and who sees. Above all, the artist is someone who exposes a personal vision by rendering it visible.' - Marcel Parquet"
},
{
"name": "Taj Mahal",
"culture": 1,
"happiness": 4,
"greatPersonPoints": {"culture": 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": {"science": 2},
"isWonder": true,
"uniques": ["Free [Great Scientist] appears","Science gained from research agreements +50%","Requires [Rationalism]"],
"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": ["+[10]% Production when constructing [Buildings] [in this city]","Must not be on [Hill]"],
"requiredTech": "Economics"
},
{
"name": "Coffee House", //modded
"replaces": "Windmill",