File: units.lua

package info (click to toggle)
widelands 2%3A1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 684,084 kB
  • sloc: cpp: 196,737; ansic: 19,395; python: 8,515; sh: 1,734; xml: 700; makefile: 46; lisp: 25
file content (2217 lines) | stat: -rw-r--r-- 114,066 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
image_dirname = path.dirname(__file__) .. "images/"

push_textdomain("tribes_encyclopedia")

-- For formatting time strings
include "tribes/scripting/help/time_strings.lua"

wl.Descriptions():new_tribe {
   name = "amazons",
   animation_directory = image_dirname,
   animations = {
      frontier = { hotspot = {8, 36} },
      pinned_note = { hotspot = {18, 67} },
      bridge_normal_e =  { hotspot = {-1, 15}},
      bridge_busy_e =    { hotspot = {-1, 15}},
      bridge_normal_se = { hotspot = {5, 4}},
      bridge_busy_se =   { hotspot = {5, 4}},
      bridge_normal_sw = { hotspot = {40, 1}},
      bridge_busy_sw =   { hotspot = {40, 1}}
   },
   spritesheets = {
      flag = {
         hotspot = {26, 39},
         frames = 10,
         columns = 5,
         rows = 2,
         fps = 5
      }
   },

   bridge_height = 6,

   collectors_points_table = {
      { ware = "gold", points = 12},
      { ware = "spear_stone_tipped", points = 1},
      { ware = "spear_hardened", points = 1},
      { ware = "armor_wooden", points = 1},
      { ware = "helmet_wooden", points = 1},
      { ware = "warriors_coat", points = 16},
      { ware = "tunic", points = 1},
      { ware = "vest_padded", points = 2},
      { ware = "protector_padded", points = 17},
      { ware = "boots_sturdy", points = 1},
      { ware = "boots_swift", points = 1},
      { ware = "boots_hero", points = 16},
   },

   -- Image file paths for this tribe's road and waterway textures
   roads = {
      busy = {
         image_dirname .. "roadt_busy.png",
      },
      normal = {
         image_dirname .. "roadt_normal_00.png",
         image_dirname .. "roadt_normal_01.png",
      },
      waterway = {
         image_dirname .. "waterway_0.png",
      },
   },

   resource_indicators = {
      [""] = {
         [0] = "amazons_resi_none",
      },
      resource_gold = {
         [10] = "amazons_resi_gold_1",
         [20] = "amazons_resi_gold_2",
      },
      resource_stones = {
         [10] = "amazons_resi_stones_1",
         [20] = "amazons_resi_stones_2",
      },
   },

   -- Wares positions in wares windows.
   -- This also gives us the information which wares the tribe uses.
   -- Each subtable is a column in the wares windows.
   wares_order = {
      {
         -- Building Materials
         {
            name = "log",
            preciousness = 24,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Log, part 1
                  pgettext("ware", "Logs are an important basic building material. They are produced by felling trees."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Log, part 2
                  pgettext("amazons_ware", "Amazon woodcutters fell trees and jungle preservers will plant them. The resulting logs are used by the stone carver. The charcoal kiln also needs logs to produce charcoal.")
               }
            }
         },
         {
            name = "granite",
            default_target_quantity = 20,
            preciousness = 7,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Granite, part 1
                  pgettext("ware", "Granite is a basic building material."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Granite, part 2
                  pgettext("amazons_ware", "The Amazons use granite for making some tools as well. It is produced by the stonecutters and in stone mines."),
               }
            }
         },
         {
            name = "quartz",
            default_target_quantity = 25,
            preciousness = 15,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Quartz, part 1
                  pgettext("ware", "Amazons use quartz for sharp tools and weapons."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Quartz, part 2
                  pgettext("amazons_ware", "It is also a building material for some advanced buildings. It is produced in stone mines."),
               }
            }
         },
         {
            name = "balsa",
            default_target_quantity = 20,
            preciousness = 20,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Balsa
                  pgettext("amazons_ware", "Balsa wood is an important building material. It is also used to make light armor. Balsa trees are cut by an experienced woodcutter.")
               }
            }
         },
         {
            name = "ironwood",
            default_target_quantity = 40,
            preciousness = 50,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Ironwood
                  pgettext("amazons_ware", "This very hard wood is as hard as iron and it is used for several buildings, tools and weapons. It is cut by a very experienced woodcutter.")
               }
            }
         },
         {
            name = "rubber",
            default_target_quantity = 30,
            preciousness = 40,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Rubber
                  pgettext("amazons_ware", "Rubber is important for making warriors’ armor and shoes. Rubber trees are collected by experienced woodcutters.")
               }
            }
         },
         {
            name = "liana",
            preciousness = 8,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Liana
                  pgettext("amazons_ware", "Lianas grow on trees. Very durable ropes are made out of them.")
               }
            }
         },
         {
            name = "rope",
            preciousness = 2,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Rope
                  pgettext("amazons_ware", "This rope is made out of lianas. It is used for armor dresses and to construct buildings and ships.")
               }
            }
         },
      },
      {
         -- Food
         {
            name = "water",
            preciousness = 15,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Water, part 1
                  pgettext("ware", "Water is the essence of life!"),
                  -- TRANSLATORS: Helptext for an Amazon ware: Water, part 2
                  pgettext("amazons_ware", "Water is used by the cassava root cooker, the chocolate brewery, the gold digger and the tapir farm.")
               }
            }
         },
         {
            name = "cassavaroot",
            preciousness = 10,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Cassava Root
                  pgettext("amazons_ware", "Cassava roots are a special kind of root produced at cassava plantations. The Amazons like their strong taste for making bread and they also feed their tapirs with them.")
               }
            }
         },
         {
            name = "cocoa_beans",
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Cocoa Beans
                  pgettext("amazons_ware", "Cocoa beans are gathered from cocoa trees by a cocoa farmer. They are used for producing chocolate.")
               }
            }
         },
         {
            name = "amazons_bread",
            default_target_quantity = 20,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Bread
                  pgettext("amazons_ware", "This tasty bread is made in cassava root cookeries out of cassava root and water. It is the basic ingredient of a ration that is made by a food preserver. Soldiers like it too.")
               }
            }
         },
         {
            name = "chocolate",
            default_target_quantity = 15,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Chocolate
                  pgettext("amazons_ware", "Chocolate is produced by chocolate breweries and used to train soldiers.")
               }
            }
         },
         {
            name = "fish",
            preciousness = 4,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Fish
                  pgettext("amazons_ware", "Fish is one of the two major food resources of the Amazons. It is used by the food preserver to prepare rations for the workers digging for gold dust and granite. It is also consumed at the training sites (training glade and warriors’ gathering) and for recruiting new soldiers.")
               }
            }
         },
         {
            name = "meat",
            preciousness = 2,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Meat, part 1
                  pgettext("ware", "Meat contains a lot of energy, and it is obtained from wild game taken by hunter-gatherers."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Meat, part 2
                  pgettext("amazons_ware", "Meat is used by the food preserver to prepare rations for the workers digging for gold dust and granite. It is also consumed at the training sites (training glade and warriors’ gathering) and for recruiting new soldiers.")
               }
            }
         },
         {
            name = "ration",
            default_target_quantity = 20,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Ration, part 1
                  pgettext("amazons_ware", "A small bite to keep the workers digging for gold dust and granite strong and working. The scout also consumes rations on her scouting trips."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Ration, part 2
                  pgettext("amazons_ware", "Rations are produced by the food preserver out of fish or meat and bread. They are dried using a charcoal fire.")
               }
            }
         },
      },
      {
         -- Mining
         {
            name = "gold_dust",
            default_target_quantity = 15,
            preciousness = 2,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Gold Dust, part 1
                  pgettext("amazons_ware", "Gold dust is washed in a gold digger dwelling."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Gold Dust, part 2
                  pgettext("amazons_ware", "Smelted in a furnace, it turns into gold which is used as a precious building material and to produce armor.")
               }
            }
         },
         {
            name = "gold",
            default_target_quantity = 20,
            preciousness = 2,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Gold, part 1
                  pgettext("amazons_ware", "Gold is the most valuable of all metals."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Gold, part 2
                  pgettext("amazons_ware", "It is smelted out of gold dust by the furnace and used by the dressmaker and for special buildings.")
               }
            }
         },
         {
            name = "coal",
            default_target_quantity = 20,
            preciousness = 10,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Charcoal, part 1
                  pgettext("amazons_ware", "Charcoal is produced out of logs by a charcoal burner. The Amazons use charcoal for drying their food and for smelting gold.")
               }
            }
         },
      },
      {
         -- Tools
         {
            name = "pick",
            default_target_quantity = 3,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Pick
                  pgettext("amazons_ware", "Picks are used by stonecutters to cut granite from rocks or mine granite and quartz in stone mines.")
               }
            }
         },
         {
            name = "felling_ax",
            default_target_quantity = 5,
            preciousness = 3,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Felling Ax, part 1
                  pgettext("ware", "The felling ax is the tool to chop down trees."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Felling Ax, part 2
                  pgettext("amazons_ware", "It is used by a woodcutter and produced by the stone carver.")
               }
            }
         },
         {
            name = "shovel",
            default_target_quantity = 2,
            preciousness = 0,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Shovel, part 1
                  pgettext("ware", "Shovels are needed for the proper handling of plants."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Shovel, part 2
                  pgettext("amazons_ware", "Therefore the jungle preservers, the cassava farmers and the cocoa farmers use them. They are produced by the stone carver.")
               }
            }
         },
         {
            name = "hammer",
            default_target_quantity = 2,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Hammer, part 1
                  pgettext("ware", "The hammer is an essential tool."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Hammer, part 2
                  pgettext("amazons_ware", "Geologists, builders, shipwrights and stone carvers all need a hammer. Make sure you’ve always got some in reserve! They are produced by the stone carver.")
               }
            }
         },
         {
            name = "machete",
            default_target_quantity = 1,
            preciousness = 0,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Machete
                  pgettext("amazons_ware", "The machete is the tool of the liana cutters."),
               }
            }
         },
         {
            name = "chisel",
            default_target_quantity = 2,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Chisel, part 1
                  pgettext("ware", "The chisel is an essential tool."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Chisel, part 2
                  pgettext("amazons_ware", "Stone carvers need a chisel. Make sure you’ve always got some in reserve! They are produced by the stone carvers themselves.")
               }
            }
         },
         {
            name = "kitchen_tools",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Kitchen Tools
                  pgettext("amazons_ware", "Kitchen tools are needed for preparing rations, baking cassava bread and brewing chocolate. Be sure to have a stone carver to produce this basic tool.")
               }
            }
         },
         {
            name = "needles",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Needles
                  pgettext("amazons_ware", "Needles are used by dressmakers to make dresses, boots and armor for the soldiers.")
               }
            }
         },
         {
            name = "stone_bowl",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Stone Bowl
                  pgettext("amazons_ware", "Stone bowls are used to wash gold and to smelt gold dust.")
               }
            }
         },
         {
            name = "firestones",
            default_target_quantity = 2,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Firestones
                  pgettext("amazons_ware", "Firestones are used to light the fires of charcoal kilns and furnaces.")
               }
            }
         },
         {
            name = "spear_wooden",
            default_target_quantity = 30,
            preciousness = 3,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Wooden Spear, part 1
                  pgettext("amazons_ware", "This spear is the basic weapon in the Amazon military system. It is produced by the stone carver. In combination with a tunic, it is the equipment to fit out young soldiers."),
                  -- TRANSLATORS: Helptext for an Amazon ware: Wooden Spear, part 2
                  pgettext("amazons_ware", "It is used by the Amazon hunter-gatherers as well.")
               }
            }
         },
      },
      {
         -- Military
         {
            name = "spear_stone_tipped",
            default_target_quantity = 1,
            preciousness = 0,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Stone Tipped Spear
                  pgettext("amazons_ware", "This spear has a stone spike. It is produced in a stone workshop and used in a warriors’ gathering – together with food – to train soldiers from attack level 0 to attack level 1.")
               }
            }
         },
         {
            name = "spear_hardened",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Hardened Spear
                  pgettext("amazons_ware", "This is a hardened spear with a stone tip. It is produced in a stone workshop and used in a warriors’ gathering – together with food – to train soldiers from attack level 1 to level 2.")
               }
            }
         },
         {
            name = "tunic",
            default_target_quantity = 30,
            preciousness = 3,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Tunic
                  pgettext("amazons_ware", "Rubber can be bound into a tunic, which is used as basic armor. All new soldiers are clothed in a tunic.")
               }
            }
         },
         {
            name = "vest_padded",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Padded Vest
                  pgettext("amazons_ware", "Padded vests are light but durable armor. They are produced by the dressmaker and used to train soldiers’ defence from level 0 to level 1.")
               }
            }
         },
         {
            name = "protector_padded",
            default_target_quantity = 1,
            preciousness = 1,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Padded Protector
                  pgettext("amazons_ware", "Padded protectors are strong and durable armor. They are produced by the dressmaker and used to train soldiers’ defence from level 1 to level 2.")
               }
            }
         },
         {
            name = "armor_wooden",
            default_target_quantity = 1,
            preciousness = 0,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Wooden Armor
                  pgettext("amazons_ware", "This light wooden armor is a basic piece of armor for the Amazons’ soldiers. It is produced by a dressmaker and used in a training glade – together with food – to train soldiers from health level 0 to level 1.")
               }
            }
         },
         {
            name = "helmet_wooden",
            default_target_quantity = 2,
            preciousness = 3,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Wodden Helmet
                  pgettext ("amazons_ware", "A wooden helmet is a basic piece of equipment for protecting soldiers. It is produced by the dressmaker and used to train soldiers from health level 1 to level 2."),
               }
            }
         },
         {
            name = "warriors_coat",
            default_target_quantity = 1,
            preciousness = 3,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Warrior's Coat
                  pgettext("amazons_ware", "Ordinary tunics can be decorated and reinforced with gold and wood chunks. Such tunics are the best armor.")
               }
            }
         },
         {
            name = "boots_sturdy",
            default_target_quantity = 1,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Sturdy Boots
                  pgettext("amazons_ware", "Sturdy boots are excellent footwear for soldiers to be quicker on their feet. They are produced by the dressmaker and used to train soldiers’ evade from level 0 to level 1.")
               }
            }
         },
         {
            name = "boots_swift",
            default_target_quantity = 1,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Swift Boots
                  pgettext("amazons_ware", "Swift boots are light and durable footwear for soldiers to be quicker on their feet. They are produced by the dressmaker and used to train soldiers’ evade from level 1 to level 2.")
               }
            }
         },
         {
            name = "boots_hero",
            default_target_quantity = 1,
            preciousness = 5,
            helptexts = {
               purpose = {
                  -- TRANSLATORS: Helptext for an Amazon ware: Hero Boots
                  pgettext("amazons_ware", "Hero boots! The only suitable footwear for a real hero. They are produced by the dressmaker and used to train soldiers’ evade from level 2 to level 3.")
               }
            }
         },
      }
   },

   -- Workers positions in workers windows.
   -- This also gives us the information which workers the tribe uses.
   -- Each subtable is a column in the workers windows.
   workers_order = {
      {
         -- Carriers
         {
            name = "amazons_carrier",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Carrier
               purpose = pgettext("amazons_worker", "Carries items along your roads.")
            }
         },
         {
            name = "amazons_ferry",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Ferry
               purpose = pgettext("amazons_worker", "Ships wares across narrow rivers.")
            }
         },
         {
            name = "amazons_tapir",
            default_target_quantity = 10,
            preciousness = 2,
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Tapir
               purpose = pgettext("amazons_worker", "Tapirs help to carry items along busy roads. They are reared in a tapir farm.")
            }
         },
         {
            name = "amazons_tapir_breeder",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Tapir Breeder
               purpose = pgettext("amazons_worker", "Breeds tapirs for adding them to the transportation system.")
            }
         }
      },
      {
         -- Building Materials
         {
            name = "amazons_stonecutter",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Stonecutter
               purpose = pgettext("amazons_worker", "Cuts blocks of granite out of rocks in the vicinity or mines granite and quartz in stone mines.")
            }
         },
         {
            name = "amazons_woodcutter",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Woodcutter
               purpose = pgettext("amazons_worker", "Fells trees.")
            }
         },
         {
            name = "amazons_woodcutter_master",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Master Woodcutter
               purpose = pgettext("amazons_worker", "Harvests special trees: ironwood, rubber and balsa.")
            }
         },
         {
            name = "amazons_jungle_preserver",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Jungle Preserver
               purpose = pgettext("amazons_worker", "Plants trees.")
            }
         },
         {
            name = "amazons_jungle_master",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Jungle Master
               purpose = pgettext("amazons_worker", "Plants special trees: ironwood, rubber and balsa.")
            }
         },
         {
            name = "amazons_liana_cutter",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Liana Cutter
               purpose = pgettext("amazons_worker", "Cuts lianas from trees.")
            }
         },
         {
            name = "amazons_builder",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Builder
               purpose = pgettext("amazons_worker", "Works at construction sites to raise new buildings.")
            }
         },
         {
            name = "amazons_shipwright",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Shipwright
               purpose = pgettext("amazons_worker", "Works at the shipyard and constructs new ships.")
            }
         },
      },
      {
         -- Food
         {
            name = "amazons_hunter_gatherer",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Hunter-Gatherer
               purpose = pgettext("amazons_worker", "The hunter-gatherer gets fresh fish and raw meat for the tribe.")
            }
         },
         {
            name = "amazons_cassava_farmer",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Cassava Farmer
               purpose = pgettext("amazons_worker", "Grows cassava.")
            }
         },
         {
            name = "amazons_cocoa_farmer",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Cocoa Farmer
               purpose = pgettext("amazons_worker", "Grows cocoa.")
            }
         },
         {
            name = "amazons_cook",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Cook
               purpose = pgettext("amazons_worker", "Prepares rations, bakes cassava bread and brews chocolate.")
            }
         },
         {
            name = "amazons_wilderness_keeper",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Wilderness Keeper
               purpose = pgettext("amazons_worker", "Breeds game or fish.")
            }
         },
      },
      {
         -- Mining
         {
            name = "amazons_geologist",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Geologist
               purpose = pgettext("amazons_worker", "Discovers resources for mining.")
            }
         },
         {
            name = "amazons_gold_digger",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Gold Digger
               purpose = pgettext("amazons_worker", "Works hard in the gold dwellings in mountains to obtain gold by washing it from gravel.")
            }
         },
         {
            name = "amazons_charcoal_burner",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Charcoal Burner
               purpose = pgettext("amazons_worker", "Burns logs to produce charcoal.")
            }
         },
         {
            name = "amazons_gold_smelter",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Gold Smelter
               purpose = pgettext("amazons_worker", "Smelts gold at furnaces.")
            }
         },
      },
      {
         -- Tools
         {
            name = "amazons_stone_carver",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Stone Carver
               purpose = pgettext("amazons_worker", "Produces spears for soldiers and tools for workers.")
            }
         }
      },
      {
         -- Military
         {
            name = "amazons_soldier",
            default_target_quantity = 10,
            preciousness = 5,
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Soldier
               purpose = pgettext("amazons_worker", "Defend and Conquer!")
            }
         },
         {
            name = "amazons_trainer",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Trainer
               purpose = pgettext("amazons_worker", "Trains the soldiers.")
            }
         },
         {
            name = "amazons_dressmaker",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Dressmaker
               purpose = pgettext("amazons_worker", "Produces all kinds of dresses, boots and armor.")
            }
         },
         {
            name = "amazons_scout",
            helptexts = {
               -- TRANSLATORS: Helptext for an Amazon worker: Scout
               purpose = pgettext("amazons_worker", "Explores unknown territory.")
            }
         }
      }
   },

   immovables = {
      {
         name = "ashes",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ashes
            purpose = _("The remains of a destroyed building.")
         }
      },
      {
         name = "destroyed_building",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Destroyed Building
            purpose = _("The remains of a destroyed building.")
         }
      },
      {
         name = "deadtree7",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ashes
            purpose = _("The remains of an old tree.")
         }
      },
      {
         name = "balsa_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Sapling
            purpose = _("This balsa tree has just been planted.")
         }
      },
      {
         name = "balsa_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Pole
            purpose = _("This balsa tree is growing.")
         }
      },
      {
         name = "balsa_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Mature
            purpose = _("This balsa tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "balsa_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Old
            purpose = _("This balsa tree is ready for harvesting balsa wood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "balsa_black_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Sapling
            purpose = _("This balsa tree has just been planted.")
         }
      },
      {
         name = "balsa_black_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Pole
            purpose = _("This balsa tree is growing.")
         }
      },
      {
         name = "balsa_black_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Mature
            purpose = _("This balsa tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "balsa_black_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Old
            purpose = _("This balsa tree is ready for harvesting balsa wood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "balsa_desert_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Sapling
            purpose = _("This balsa tree has just been planted.")
         }
      },
      {
         name = "balsa_desert_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Pole
            purpose = _("This balsa tree is growing.")
         }
      },
      {
         name = "balsa_desert_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Mature
            purpose = _("This balsa tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "balsa_desert_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Old
            purpose = _("This balsa tree is ready for harvesting balsa wood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "balsa_winter_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Sapling
            purpose = _("This balsa tree has just been planted.")
         }
      },
      {
         name = "balsa_winter_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Pole
            purpose = _("This balsa tree is growing.")
         }
      },
      {
         name = "balsa_winter_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Mature
            purpose = _("This balsa tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "balsa_winter_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Balsa Tree Old
            purpose = _("This balsa tree is ready for harvesting balsa wood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "ironwood_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Sapling
            purpose = _("This ironwood tree has just been planted.")
         }
      },
      {
         name = "ironwood_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Pole
            purpose = _("This ironwood tree is growing.")
         }
      },
      {
         name = "ironwood_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Mature
            purpose = _("This ironwood tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "ironwood_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Old
            purpose = _("This ironwood tree is ready for harvesting ironwood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "ironwood_black_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Sapling
            purpose = _("This ironwood tree has just been planted.")
         }
      },
      {
         name = "ironwood_black_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Pole
            purpose = _("This ironwood tree is growing.")
         }
      },
      {
         name = "ironwood_black_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Mature
            purpose = _("This ironwood tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "ironwood_black_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Old
            purpose = _("This ironwood tree is ready for harvesting ironwood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "ironwood_desert_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Sapling
            purpose = _("This ironwood tree has just been planted.")
         }
      },
      {
         name = "ironwood_desert_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Pole
            purpose = _("This ironwood tree is growing.")
         }
      },
      {
         name = "ironwood_desert_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Mature
            purpose = _("This ironwood tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "ironwood_desert_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Old
            purpose = _("This ironwood tree is ready for harvesting ironwood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "ironwood_winter_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Sapling
            purpose = _("This ironwood tree has just been planted.")
         }
      },
      {
         name = "ironwood_winter_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Pole
            purpose = _("This ironwood tree is growing.")
         }
      },
      {
         name = "ironwood_winter_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Mature
            purpose = _("This ironwood tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "ironwood_winter_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ironwood Tree Old
            purpose = _("This ironwood tree is ready for harvesting ironwood by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "rubber_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Sapling
            purpose = _("This rubber tree has just been planted.")
         }
      },
      {
         name = "rubber_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Pole
            purpose = _("This rubber tree is growing.")
         }
      },
      {
         name = "rubber_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Mature
            purpose = _("This rubber tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "rubber_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Old
            purpose = _("This rubber tree is ready for harvesting rubber by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "rubber_black_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Sapling
            purpose = _("This rubber tree has just been planted.")
         }
      },
      {
         name = "rubber_black_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Pole
            purpose = _("This rubber tree is growing.")
         }
      },
      {
         name = "rubber_black_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Mature
            purpose = _("This rubber tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "rubber_black_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Old
            purpose = _("This rubber tree is ready for harvesting rubber by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "rubber_desert_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Sapling
            purpose = _("This rubber tree has just been planted.")
         }
      },
      {
         name = "rubber_desert_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Pole
            purpose = _("This rubber tree is growing.")
         }
      },
      {
         name = "rubber_desert_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Mature
            purpose = _("This rubber tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "rubber_desert_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Old
            purpose = _("This rubber tree is ready for harvesting rubber by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "rubber_winter_amazons_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Sapling
            purpose = _("This rubber tree has just been planted.")
         }
      },
      {
         name = "rubber_winter_amazons_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Pole
            purpose = _("This rubber tree is growing.")
         }
      },
      {
         name = "rubber_winter_amazons_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Mature
            purpose = _("This rubber tree is fully grown. Lianas can be gathered from it.")
         }
      },
      {
         name = "rubber_winter_amazons_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Rubber Tree Old
            purpose = _("This rubber tree is ready for harvesting rubber by a master woodcutter. Other tribes can harvest it for normal logs.")
         }
      },
      {
         name = "cassavafield_tiny",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cassava Field
            purpose = _("This field has just been planted.")
         }
      },
      {
         name = "cassavafield_small",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cassava Field
            purpose = _("This field is growing.")
         }
      },
      {
         name = "cassavafield_medium",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cassava Field
            purpose = _("This field is growing.")
         }
      },
      {
         name = "cassavafield_ripe",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cassava Field
            purpose = _("This field is ready for harvesting.")
         }
      },
      {
         name = "cassavafield_harvested",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cassava Field
            purpose = _("This field has been harvested.")
         }
      },
      {
         name = "cocoa_tree_sapling",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cocoa Tree Sapling
            purpose = _("This cocoa tree has just been planted.")
         }
      },
      {
         name = "cocoa_tree_pole",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cocoa Tree Pole
            purpose = _("This cocoa tree is growing.")
         }
      },
      {
         name = "cocoa_tree_mature",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cocoa Tree Mature
            purpose = _("This cocoa tree is fully grown.")
         }
      },
      {
         name = "cocoa_tree_old",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Cocoa Tree Old
            purpose = _("The beans on this cocoa tree are ready for harvesting.")
         }
      },
      {
         name = "amazons_resi_none",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon resource indicator: No resources
            purpose = _("There are no resources in the ground here.")
         }
      },
      {
         name = "amazons_resi_gold_1",
         helptexts = {
            purpose = {
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Gold, part 1
               _("Gold veins contain gold ore that can be washed from the gravel at gold digger dwellings."),
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Gold, part 2
               _("There is only a little bit of gold here.")
            }
         }
      },
      {
         name = "amazons_resi_stones_1",
         helptexts = {
            purpose = {
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Stones, part 1
               _("Granite is a basic building material and can be dug up by a stone mine."),
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Stones, part 2
               _("There is only a little bit of quartz here."),
            }
         }
      },
      {
         name = "amazons_resi_gold_2",
         helptexts = {
            purpose = {
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Gold, part 1
               _("Gold veins contain gold ore that can be washed from the gravel at gold digger dwellings."),
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Gold, part 2
               _("There is a lot of gold here.")
            }
         }
      },
      {
         name = "amazons_resi_stones_2",
         helptexts = {
            purpose = {
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Stones, part 1
               _("Granite is a basic building material and can be dug up by a stone mine."),
               -- TRANSLATORS: Helptext for an Amazon resource indicator: Stones, part 2
               _("There is a lot of quartz here.")
            }
         }
      },
      {
         name = "amazons_shipconstruction",
         helptexts = {
            -- TRANSLATORS: Helptext for an Amazon immovable: Ship Under Construction
            purpose = _("A ship is being constructed at this site.")
         }
      },
   },

   -- The order here also determines the order in lists on screen.
   buildings = {
      -- Warehouses
      {
         name = "amazons_headquarters",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon warehouse: Headquarters
            purpose = pgettext("amazons_building", "Accommodation for your people. Also stores your wares and tools."),
            -- TRANSLATORS: Note helptext for an Amazon warehouse: Headquarters
            note = pgettext("amazons_building", "The headquarters is your main building.")
         }
      },
      {
         name = "amazons_warehouse",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon warehouse: Warehouse
            purpose = pgettext("amazons_building", "Your workers and soldiers will find shelter here. Also stores your wares and tools.")
         }
      },
      {
         name = "amazons_port",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon warehouse: Port
            purpose = pgettext("amazons_building", "Serves as a base for overseas colonization and trade. Also stores your soldiers, wares and tools."),
            -- TRANSLATORS: Note helptext for an Amazon warehouse: Port
            note = pgettext("amazons_building", "Similar to the Headquarters a Port can be attacked and destroyed by an enemy. It is recommendable to send soldiers to defend it.")
         }
      },

      -- Markets
      {
         name = "amazons_market",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon market: Market
            purpose = pgettext("amazons_building", "A market enables trading with other tribes.")
         }
      },

      -- Small
      {
         name = "amazons_stonecutters_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Stonecutter's Hut
            purpose = pgettext("amazons_building", "Cuts raw pieces of granite out of rocks in the vicinity."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Stonecutter's Hut
            note = pgettext("amazons_building", "The stonecutter’s hut needs rocks to cut within the work area."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Stonecutter's Hut, part 1
               pgettext("amazons_building", "This building can produce one granite between %1$s and %2$s, depending on how far the stonecutter has to walk."):bformat(format_seconds(52), format_minutes_seconds(1, 17)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Stonecutter's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_woodcutters_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Woodcutter's Hut
            purpose = pgettext("amazons_building", "Fells trees in the surrounding area and processes them into logs."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Woodcutter's Hut
            note = pgettext("amazons_building", "The woodcutter’s hut needs trees to fell within the work area."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Woodcutter's Hut, part 1
               pgettext("amazons_building", "This building can produce one log between %1$s and %2$s (with master woodcutter between %3$s and %4$s), depending on how far the woodcutter has to walk."):bformat(format_seconds(49), format_minutes_seconds(1, 29), format_seconds(44), format_minutes_seconds(1, 24)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Woodcutter's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_jungle_preservers_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Jungle Preserver's Hut
            purpose = pgettext("amazons_building", "Plants trees in the surrounding area."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Jungle Preserver's Hut
            note = pgettext("amazons_building", "The jungle preserver’s hut needs free space within the work area to plant the trees."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Jungle Preserver's Hut, part 1
               pgettext("amazons_building", "The jungle preserver or jungle master plants one tree between %1$s and %2$s, depending on how far she has to walk."):bformat(format_seconds(20), format_seconds(45)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Jungle Preserver's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_hunter_gatherers_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Hunter-Gatherer's Hut
            purpose = pgettext("amazons_building", "Hunts animals to produce meat. Catches fish in the waters."),
            note = {
               -- TRANSLATORS: Note helptext for an Amazon production site: Hunter-Gatherer's Hut
               pgettext("amazons_building", "The hunter-gatherer’s hut needs animals or fish to hunt or catch within the work area."),
               -- TRANSLATORS: Note helptext for an Amazon production site: Hunter-Gatherer's Hut
               pgettext("amazons_building", "Roads and trees along the shoreline block fishing."),
            },
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Hunter-Gatherer's Hut, part 1
               pgettext("amazons_building", "This building can produce one meat or one fish between %1$s and %2$s, depending on how far the hunter-gatherer has to walk. If both kinds of food are available, then one of each kind is produced between %3$s and %4$s."):bformat(format_seconds(42), format_minutes_seconds(1, 36), format_minutes_seconds(1, 24), format_minutes_seconds(3, 12)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Hunter-Gatherer's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_liana_cutters_hut",
         helptexts = {
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Liana Cutter's Hut
            lore = pgettext("amazons_building", "‘Sunlight smiled upon us and our Ancestors while we worked to clear liana from the trees. I was not as efficient as my aunt and sisters, and so I learned to ply rope.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Liana Cutter's Hut
            lore_author = pgettext("amazons_building", "Mistress WeaverSong, recollecting her early years as a liana cutter."),
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Liana Cutter's Hut
            purpose = pgettext("amazons_building", "Home of the liana cutter who cuts lianas for making ropes."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Liana Cutter's Hut
            note = pgettext("amazons_building", "The liana cutter harvests liana from fully matured trees within the work area which are not being used as lookouts."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Liana Cutter's Hut, part 1
               pgettext("amazons_building", "This building can produce one liana between %1$s and %2$s, depending on how far the liana cutter has to walk."):bformat(format_seconds(42), format_minutes_seconds(1, 7)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Liana Cutter's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_water_gatherers_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Water Gatherer's Hut
            purpose = pgettext("amazons_building", "Draws water out of the rivers and lakes."),
            note = {
               -- TRANSLATORS: Note helptext for an Amazon production site: Water Gatherer's Hut, part 1
               pgettext("amazons_building", "The water gatherer’s hut needs open water within the work area. Your workers cannot dig up water from the ground!"),
               -- TRANSLATORS: Note helptext for an Amazon production site: Water Gatherer's Hut, part 2
               pgettext("amazons_building", "Roads and trees along the shoreline block drawing water."),
            },
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Water Gatherer's Hut, part 1
               pgettext("amazons_building", "This building can produce one bucket of water between %1$s and %2$s on average, depending on how far the carrier has to walk."):bformat(format_seconds(16), format_seconds(32)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Water Gatherer's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_rare_tree_cutters_hut",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Rare Tree Cutter's Hut
            purpose = pgettext("amazons_building", "Harvests rare trees in the surrounding area. Delivers ironwood, balsa and rubber."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Rare Tree Cutter's Hut, part 1
               pgettext("amazons_building", "This building can produce one rare wood between %1$s and %2$s, depending on how far the woodcutter has to walk. If all kinds of rare tree are available within her work area, then one of each kind is produced between %3$s and %4$s."):bformat(format_seconds(47), format_minutes_seconds(1, 27), format_minutes_seconds(2, 22), format_minutes_seconds(4, 20)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Rare Tree Cutter's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_wilderness_keepers_tent",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Wilderness Keeper's Tent
            purpose = pgettext("amazons_building", "Breeds fish and game to renew food resources."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Wilderness Keeper's Tent
            note = pgettext("amazons_building", "The wilderness keeper will only release new game at a nearby tree which is not being used as a lookout."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Wilderness Keeper's Tent, part 1
               pgettext("amazons_building", "The wilderness keeper can breed one fish and release one animal between %1$s and %2$s, depending on how far she has to walk."):bformat(format_minutes_seconds(2, 16), format_minutes_seconds(3, 25)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Wilderness Keeper's Tent, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_scouts_hut",
         helptexts = {
            no_scouting_building_connected = pgettext("amazons_building", "You need to connect this flag to a scout’s hut before you can send a scout here."),
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Scout's Hut
            purpose = pgettext("amazons_building", "Explores unknown territory."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Scout's Hut, part 1
               pgettext("amazons_building", "One exploration trip of the scout takes between %1$s and %2$s."):bformat(format_minutes_seconds(1, 52), format_minutes_seconds(4, 5)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Scout's Hut, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },

      -- Medium
      {
         name = "amazons_rope_weaver_booth",
         helptexts = {
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Rope Weaver's Booth
            lore = pgettext("amazons_building", "‘My mother taught me to ply the ropes from Liana, how to choose the strongest cuttings and parts of the harvest, how to trim away flaws. I bless her wisdom in every length I use.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Rope Weaver's Booth
            lore_author = pgettext("amazons_building", "Mistress WeaverSong, reflecting on training."),
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Rope Weaver's Booth
            purpose = pgettext("amazons_building", "Makes ropes from lianas."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Rope Weaver's Booth
            performance = pgettext("amazons_building", "The rope weaver booth needs %s on average to produce one rope."):bformat(format_seconds(59))
         }
      },
      {
         name = "amazons_furnace",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Furnace
            purpose = pgettext("amazons_building", "Smelts gold dust into gold ingots using charcoal."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Furnace
            performance = pgettext("amazons_building", "The furnace can produce one gold ingot in %s on average if the supply is steady."):bformat(format_minutes_seconds(1, 16))
         }
      },
      {
         name = "amazons_rare_tree_plantation",
         helptexts = {
            -- TRANSLATORS: Lore helptext for an Amazon production site: Rare Tree Plantation
            lore = pgettext("amazons_building", "‘If properly harvested, cured and stored, ironwood becomes almost indestructible, and will not rust in damp conditions.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Rare Tree Plantation
            lore_author = pgettext("amazons_building", "Jungle Master Abacaxis"),
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Rare Tree Plantation
            purpose = pgettext("amazons_building", "Plants rare trees which are needed by the Amazons, like balsa, rubber and ironwood."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Rare Tree Plantation
            note = pgettext("amazons_building", "Rare trees are planted according to the economy requirements. Keep roads connected to rare tree plantations so they adhere to economy targets."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Rare Tree Plantation, part 1
               pgettext("amazons_building", "The jungle master plants one tree between %1$s and %2$s, depending on how far she has to walk."):bformat(format_seconds(24), format_seconds(46)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Rare Tree Plantation, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_stone_workshop",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Stone Workshop
            purpose = pgettext("amazons_building", "Makes tools and spears for our soldiers."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Stone Workshop
            performance = pgettext("amazons_building", "If this building is fully supplied and all tools and spears are needed by the economy, production of one of each tool takes %1$s and one of each spear takes %2$s on average. If only one kind of tool or spear is needed by the economy, its production takes %3$s on average."):bformat(format_minutes_seconds(21, 51), format_minutes_seconds(7, 17), format_minutes_seconds(1, 9))
         }
      },
      {
         name = "amazons_dressmakery",
         helptexts = {
            -- TRANSLATORS: Lore helptext for an Amazon production site: Dressmakery
            lore = pgettext("amazons_building", "‘A skilled maker crafts garments of unsurpassed defence,<br> with each stitch imbued with conscious intent.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon production site: Dressmakery
            lore_author = pgettext("amazons_building", "Dressmakers’ ethos, adapted from the traditional verse ‘Mother Jungle’s wisdom: Song of the Conscientious.’"),
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Dressmakery
            purpose = pgettext("amazons_building", "Sews all dresses, boots and armor for our soldiers."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Dressmakery
            performance = pgettext("amazons_building", "If this building is fully supplied and all dresses, boots and armors are needed by the economy, production of one of each of them takes %1$s on average. If only one kind of them is needed by the economy, its production takes %2$s on average."):bformat(format_minutes_seconds(10, 39), format_minutes_seconds(1, 11))
         }
      },
      {
         name = "amazons_charcoal_kiln",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Charcoal Kiln
            purpose = pgettext("amazons_building", "Burns logs into charcoal."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Charcoal Kiln
            performance = pgettext("amazons_building", "The charcoal kiln needs %s on average to produce one lump of coal."):bformat(format_minutes_seconds(2, 4))
         }
      },
      {
         name = "amazons_cassava_root_cooker",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Cassava Root Cooker
            purpose = pgettext("amazons_building", "Bakes bread from cassava root."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Cassava Root Cooker
            performance = pgettext("amazons_building", "If all needed wares are delivered in time, this building can produce one bread in %s on average."):bformat(format_seconds(37))
         }
      },
      {
         name = "amazons_chocolate_brewery",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Chocolate Brewery
            purpose = pgettext("amazons_building", "Brews chocolate for soldier training."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Chocolate Brewery
            performance = pgettext("amazons_building", "The chocolate brewery needs %s on average to brew one mug of chocolate."):bformat(format_minutes_seconds(1, 4))
         }
      },
      {
         name = "amazons_food_preserver",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Food Preserver
            purpose = pgettext("amazons_building", "Prepares rations to feed the scouts and the workers digging for gold dust and granite."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Food Preserver
            performance = pgettext("amazons_building", "The food preserver can produce one ration in %s on average if the supply is steady."):bformat(format_seconds(20))
         }
      },
      {
         name = "amazons_initiation_site",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Initiation Site
            purpose = pgettext("amazons_building", "Equips recruits and trains them as soldiers."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Initiation Site
            performance = pgettext("amazons_building", "The initiation site needs %s on average to recruit one soldier."):bformat(format_seconds(30))
         }
      },
      {
         name = "amazons_gardening_center",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Gardening Center
            purpose = pgettext("amazons_building", "Enhances the fertility of the landscape for trees."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Gardening Center
            note = pgettext ("amazons_building", "Only a Jungle Master has the necessary experience to coax more growth from land."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Gardening Center, part 1
               pgettext("amazons_building", "The jungle master can perform one terraform between %1$s and %2$s, depending on how far she has to walk."):bformat(format_seconds(19), format_seconds(44)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Gardening Center, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },

      -- Big
      {
         name = "amazons_tapir_farm",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Tapir Farm
            purpose = pgettext("amazons_building", "Breeds tapirs for adding them to the transportation system."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Tapir Farm
            note = pgettext ("amazons_building", "Tapirs help to prevent traffic jams on highly used roads."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Tapir Farm
            performance = pgettext("amazons_building", "If all needed wares are delivered in time, this building can produce a tapir in %s on average."):bformat(format_seconds(30))
         }
      },
      {
         name = "amazons_cassava_plantation",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Cassava Plantation
            purpose = pgettext("amazons_building", "Sows and harvests cassava."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Cassava Plantation
            note = pgettext ("amazons_building", "The cassava plantation needs free space within the work area to plant seeds."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Cassava Plantation, part 1
               pgettext("amazons_building", "The cassava farmer sows and harvests one bundle of cassava between %1$s and %2$s, depending on how far she has to walk."):bformat(format_seconds(54), format_minutes_seconds(1, 30)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Cassava Plantation, part 2; %s is replaced by 'N growing fields'
               pgettext("amazons_building", "The cassava plantation needs at least %s to work at full productivity most of the time."):bformat(ngettext("%d growing field", "%d growing fields", 4):bformat(4))
            }
         }
      },
      {
         name = "amazons_cocoa_farm",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Cocoa Farm
            purpose = pgettext("amazons_building", "Cultivates cocoa that is needed to brew chocolate drinks."),
            -- TRANSLATORS: Note helptext for an Amazon production site: Cocoa Farm
            note = pgettext("amazons_building", "Chocolate is essential for training Amazon soldiers."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Cocoa Farm, part 1
               pgettext("amazons_building", "The cocoa farmer sows and harvests one basket of cocoa beans between %1$s and %2$s, depending on how far she has to walk."):bformat(format_seconds(54), format_minutes_seconds(1, 30)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Cocoa Farm, part 2; %s is replaced by 'N growing fields'
               pgettext("amazons_building", "The cocoa farm needs at least %s to work at full productivity most of the time."):bformat(ngettext("%d growing field", "%d growing fields", 6):bformat(6))
            }
         }
      },

      -- Mines
      {
         name = "amazons_stonemine",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Stone Mine
            purpose = pgettext("amazons_building", "Digs granite and quartz out of the ground in mountain terrain."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Stone Mine
            performance = pgettext("amazons_building", "The stone mine can produce one slab of each kind of stone in %s on average if the supply with rations is steady and the mine is not worn out."):bformat(format_minutes_seconds(1, 14))
         }
      },
      {
         name = "amazons_gold_digger_dwelling",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Gold Digger Dwelling
            purpose = pgettext("amazons_building", "Washes gold dust out of the ground in mountain terrain."),
            -- TRANSLATORS: Performance helptext for an Amazon production site: Gold Digger Dwelling
            performance = pgettext("amazons_building", "If the supply is steady, this mine can produce gold dust in %s on average."):bformat(format_minutes_seconds(1, 9))
         }
      },

      -- Training Sites
      {
         name = "amazons_warriors_gathering",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon training site: Warriors’ Gathering
            purpose = pgettext("amazons_building", "Trains soldiers in Attack up to level 2. Equips the soldiers with all necessary weapons."),
            -- TRANSLATORS: Note helptext for an Amazon training site: Warriors’ Gathering
            note = pgettext("amazons_building", "Amazon soldiers need chocolate to train properly."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon training site: Warriors’ Gathering, part 1
               pgettext("amazons_building", "If all needed wares are delivered in time, a warriors’ gathering can train one soldier one level in attack in %s on average."):bformat(format_seconds(36)),
               -- TRANSLATORS: Performance helptext for an Amazon training site: Warriors’ Gathering, part 2
               pgettext("amazons_building", "Complete training of one soldier takes %s on average."):bformat(format_minutes_seconds(1, 12))
            }
         }
      },
      {
         name = "amazons_training_glade",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon training site: Training Glade
            purpose = pgettext("amazons_building", "Trains soldiers in Evade, Defense and Health. Equips the soldiers with all necessary equipment and armor parts."),
            -- TRANSLATORS: Note helptext for an Amazon training site: Training Glade
            note = pgettext("amazons_building", "Amazon soldiers need chocolate to train properly."),
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon training site: Training Glade, part 1
               pgettext("amazons_building", "If all needed wares are delivered in time, a training glade can train one soldier to the first level in evade or health, or both defense levels in %1$s on average. The rest of evade and health levels are trained in %2$s each."):bformat(format_seconds(29), format_seconds(22)),
               -- TRANSLATORS: Performance helptext for an Amazon training site: Training Glade, part 2
               pgettext("amazons_building", "Complete training of one soldier takes %s on average."):bformat(format_minutes_seconds(3, 33))
            }
         }
      },

      -- Military Sites
      {
         name = "amazons_patrol_post",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Patrol Post
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Patrol Post
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },
      {
         name = "amazons_treetop_sentry",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Treetop Sentry
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Treetop Sentry
            note = pgettext("amazons_building", "You can only build this building on top of a tree.")
         }
      },
      {
         name = "amazons_warriors_dwelling",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Warriors’ Dwelling
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Warriors’ Dwelling
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },
      {
         name = "amazons_tower",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Tower
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Tower
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },
      {
         name = "amazons_observation_tower",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Observation Tower
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Observation Tower
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },
      {
         name = "amazons_fortress",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Fortress
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Fortress
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },
      {
         name = "amazons_fortification",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon military site: Fortification
            purpose = pgettext("amazons_building", "Garrisons soldiers to expand your territory."),
            -- TRANSLATORS: Note helptext for an Amazon military site: Fortification
            note = pgettext("amazons_building", "If you’re low on soldiers to occupy new military sites, use the downward arrow button to decrease the capacity. You can also click on a soldier to send her away.")
         }
      },

      -- Seafaring/Ferry Sites - these are only displayed on seafaring/ferry maps
      {
         name = "amazons_ferry_yard",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Ferry Yard
            purpose = pgettext("amazons_building", "Builds ferries."),
            note = {
               -- TRANSLATORS: Note helptext for an Amazon production site: Ferry Yard, part 1
               pgettext("amazons_building", "Needs water nearby. Be aware ferries carry wares only, no workers."),
               -- TRANSLATORS: Note helptext for an Amazon production site: Ferry Yard, part 2
               pgettext("building", "Roads and trees along the shoreline block access to water."),
            },
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Ferry Yard, part 1
               pgettext("amazons_building", "This building can produce one ferry between %1$s and %2$s, depending on how far the shipwright has to walk."):bformat(format_seconds(37), format_seconds(59)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Ferry Yard, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },
      {
         name = "amazons_shipyard",
         helptexts = {
            -- TRANSLATORS: Purpose helptext for an Amazon production site: Shipyard
            purpose = pgettext("amazons_building", "Constructs ships that are used for overseas colonization and for trading between ports."),
            note = {
               -- TRANSLATORS: Note helptext for an Amazon production site: Shipyard, part 1
               pgettext("building", "Needs wide open water nearby."),
               -- TRANSLATORS: Note helptext for an Amazon production site: Shipyard, part 2
               pgettext("building", "Roads and trees along the shoreline block access to water."),
            },
            performance = {
               -- TRANSLATORS: Performance helptext for an Amazon production site: Shipyard, part 1
               pgettext("amazons_building", "This building can produce one ship between %1$s and %2$s, depending on how far the shipwright has to walk."):bformat(format_minutes_seconds(18, 3), format_minutes_seconds(24, 46)),
               -- TRANSLATORS: Performance helptext for an Amazon production site: Shipyard, part 2
               pgettext("amazons_building", "In case of slopes or obstacles in the way, the time is increased.")
            }
         }
      },

      -- Partially Finished Buildings - these are the same 2 buildings for all tribes
      {
         name = "constructionsite",
         helptexts = {
            -- TRANSLATORS: Lore helptext for an Amazon building: Construction Site
            lore = pgettext("building", "‘Don’t swear at the builder who is short of building materials.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon building: Construction Site
            lore_author = pgettext("building", "Proverb widely used for impossible tasks of any kind"),
            -- TRANSLATORS: Purpose helptext for an Amazon building: Construction Site
            purpose = pgettext("building", "A new building is being built at this construction site.")
         }
      },
      {
         name = "dismantlesite",
         helptexts = {
            -- TRANSLATORS: Lore helptext for an Amazon building: Dismantle Site
            lore = pgettext("building", "‘New paths will appear when you are willing to tear down the old.’"),
            -- TRANSLATORS: Lore author helptext for an Amazon building: Dismantle Site
            lore_author = pgettext("building", "Proverb"),
            -- TRANSLATORS: Purpose helptext for an Amazon building: Dismantle Site
            purpose = pgettext("building", "A building is being dismantled at this dismantle site, returning some of the resources that were used during this building’s construction to your tribe’s stores.")
         }
      }
   },

   warehouse_names = {
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Alter"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Anumā"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Aquiqui"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Arapixuna"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Aritapera"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Atamanai"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Amorim"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Canindé"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Cuia"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Cacoal"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Capichauā"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Cipoal"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Cupiranga"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Curariaca"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Curupari"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Curuá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Diogo"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Guajará"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Guarana"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Gurupá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Ipanema"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Ipaupixuna"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Irateua"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Itacoatiara"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Itanduba"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Itapari"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Jaburu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Jacarecapá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Jaguara"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Janauacá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Macapá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Maguari"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Mambeca"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Manacapuru"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Mararu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Maripi"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Maruá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Mataraí"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Miri"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Moju"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Mojui"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Morimutuba"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Oriximiná"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Pacoval"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Paranquara"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Paricó"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Pedreira"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Povoado"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Prainha"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Preta"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Santarém"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Socorro"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Solimōes"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Surucá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Tambaqui"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Tapará"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Taperinha"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Tiningu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Tomé"),
      -- TRANSLATORS: This Amazonian warehouse is named after a town in the Amazon Basin
      pgettext("warehousename", "Una"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Bonampak"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Calakmul"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Chichén Itzá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Copán"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Kaminaljuyú"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Lamanai"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Mayapán"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Pomoná"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Quiriguá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Tikal"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Tononá"),
      -- TRANSLATORS: This Amazonian warehouse is named after a Maya city
      pgettext("warehousename", "Uxmal"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Arequipa"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Aypate"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Cahuachi"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Choquequirao"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Kashamarka"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Kuelap"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Machu Picchu"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Nazca"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Ollantaytambo"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Pachacamac"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Paititi"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Paqari-tampu"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Cuzco"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Teyuna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Tiahuanaco"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Vilcabamba"),
      -- TRANSLATORS: This Amazonian warehouse is named after an Inca city
      pgettext("warehousename", "Vitcos"),
      -- TRANSLATORS: This Amazonian warehouse is named after a part of the Inca Empire
      pgettext("warehousename", "Antisuyu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a part of the Inca Empire
      pgettext("warehousename", "Chinchasuyu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a part of the Inca Empire
      pgettext("warehousename", "Kuntisuyu"),
      -- TRANSLATORS: This Amazonian warehouse is named after a part of the Inca Empire
      pgettext("warehousename", "Qullasuyu"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Achuar"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Aguaruna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Aikanã"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Aimoré"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Amahuaca"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Amuesha"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Apiacá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Arapaco"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Arara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Ararandeura"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Arasairi"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Araueté"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Awá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Aweti"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Banawá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Baniwa"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Barasana"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Caeté"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Chaywita"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Cocama"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Enawene Nawe"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Goitacaz"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Himarimã"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Huambisa"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Irántxe"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kachá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kagwahiva"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kamayurá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kanamarí"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kapixaná"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kareneri"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Karitiâna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kaxinawá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kayapo"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kobeua"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Korubu"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Kuikoro"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Machiguenga"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Majaguaje"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Makuna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Marajoara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Marubo"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Mayoruna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Miriti"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Nahukuá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Nambikwara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Ocaina"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Omagua"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Pacanawa"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Pacawara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Pirahã"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Potiguara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Saraguro"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Sateré-Mawé"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Suruwaha"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Suyá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tabajara"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tacana"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tamoio"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tapirapé"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tariana"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Temiminó"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Terena"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Toromona"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tremembé"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tsimané"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tupinambá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Tupiniquim"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Uru-Eu-Wau-Wau"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Waorani"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Waurá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Yaminawá"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Yaruna"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Yawalipiti"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Yawanawa"),
      -- TRANSLATORS: This Amazonian warehouse is named after an indigenous people in the Amazon Basin
      pgettext("warehousename", "Yora"),
   },

   -- Productionsite status strings

   -- TRANSLATORS: Productivity label on an Amazon building if there is 1 worker missing
   productionsite_worker_missing = pgettext("amazons", "Worker missing"),
   -- TRANSLATORS: Productivity label on an Amazon building if there is 1 worker coming
   productionsite_worker_coming = pgettext("amazons", "Worker is coming"),
   -- TRANSLATORS: Productivity label on an Amazon building if there is more than 1 worker missing. If you need plural forms here, please let us know.
   productionsite_workers_missing = pgettext("amazons", "Workers missing"),
   -- TRANSLATORS: Productivity label on an Amazon building if there is more than 1 worker coming. If you need plural forms here, please let us know.
   productionsite_workers_coming = pgettext("amazons", "Workers are coming"),
   -- TRANSLATORS: Productivity label on an Amazon building if there is 1 experienced worker missing
   productionsite_experienced_worker_missing = pgettext("amazons", "Expert missing"),
   -- TRANSLATORS: Productivity label on an Amazon building if there is more than 1 experienced worker missing. If you need plural forms here, please let us know.
   productionsite_experienced_workers_missing = pgettext("amazons", "Experts missing"),

   -- Soldier strings to be used in Military Status strings

   soldier_context = "amazons_soldier",
   soldier_0_sg = "%1% soldier (+%2%)",
   soldier_0_pl = "%1% soldiers (+%2%)",
   soldier_1_sg = "%1% soldier",
   soldier_1_pl = "%1% soldiers",
   soldier_2_sg = "%1%(+%2%) soldier (+%3%)",
   soldier_2_pl = "%1%(+%2%) soldiers (+%3%)",
   soldier_3_sg = "%1%(+%2%) soldier",
   soldier_3_pl = "%1%(+%2%) soldiers",
   -- TRANSLATORS: %1% is the number of Amazon soldiers the plural refers to. %2% is the maximum number of soldier slots in the building.
   UNUSED_soldier_0 = npgettext("amazons_soldier", "%1% soldier (+%2%)", "%1% soldiers (+%2%)", 0),
   -- TRANSLATORS: Number of Amazon soldiers stationed at a militarysite.
   UNUSED_soldier_1 = npgettext("amazons_soldier", "%1% soldier", "%1% soldiers", 0),
   -- TRANSLATORS: %1% is the number of Amazon soldiers the plural refers to. %2% are currently open soldier slots in the building. %3% is the maximum number of soldier slots in the building
   UNUSED_soldier_2 = npgettext("amazons_soldier", "%1%(+%2%) soldier (+%3%)", "%1%(+%2%) soldiers (+%3%)", 0),
   -- TRANSLATORS: %1% is the number of Amazon soldiers the plural refers to. %2% are currently open soldier slots in the building.
   UNUSED_soldier_3 = npgettext("amazons_soldier", "%1%(+%2%) soldier", "%1%(+%2%) soldiers", 0),

   -- Special types
   builder = "amazons_builder",
   carriers = {"amazons_carrier", "amazons_tapir"},
   geologist = "amazons_geologist",
   scouts_house = "amazons_scouts_hut",
   soldier = "amazons_soldier",
   ship = "amazons_ship",
   ferry = "amazons_ferry",
   port = "amazons_port",

   fastplace = {
      market = "amazons_market",
      warehouse = "amazons_warehouse",
      port = "amazons_port",
      training_small = "amazons_warriors_gathering",
      training_large = "amazons_training_glade",
      military_small_primary = "amazons_patrol_post",
      military_small_secondary = "amazons_treetop_sentry",
      military_medium_primary = "amazons_warriors_dwelling",
      military_tower = "amazons_tower",
      military_fortress = "amazons_fortress",
      woodcutter = "amazons_woodcutters_hut",
      forester = "amazons_jungle_preservers_hut",
      quarry = "amazons_stonecutters_hut",
      building_materials_primary = "amazons_rope_weaver_booth",
      building_materials_secondary = "amazons_liana_cutters_hut",
      building_materials_tertiary = "amazons_rare_tree_plantation",
      fisher = "amazons_hunter_gatherers_hut",
      fish_meat_replenisher = "amazons_wilderness_keepers_tent",
      well = "amazons_water_gatherers_hut",
      farm_primary = "amazons_cassava_plantation",
      farm_secondary = "amazons_cocoa_farm",
      bakery = "amazons_cassava_root_cooker",
      brewery = "amazons_chocolate_brewery",
      tavern = "amazons_food_preserver",
      smelting = "amazons_furnace",
      tool_smithy = "amazons_stone_workshop",
      armor_smithy = "amazons_dressmakery",
      shipyard = "amazons_shipyard",
      ferry_yard = "amazons_ferry_yard",
      scout = "amazons_scouts_hut",
      barracks = "amazons_initiation_site",
      second_carrier = "amazons_tapir_farm",
      charcoal = "amazons_charcoal_kiln",
      mine_stone = "amazons_stonemine",
      mine_gold = "amazons_gold_digger_dwelling",
      terraforming = "amazons_gardening_center",
   },
}

pop_textdomain()