Attribute
Bases: _DataSetIntEnums
This enum class provides the integer values used to reference all the player resources in the game. Used in effects and conditions like 'Accumulate Attribute' and 'Modify Resource'
Examples
You can also request the editor names of these player attributes (resources) to be used in <...> notation in trigger displays using:
'!Food Storage'
Source code in AoE2ScenarioParser/datasets/trigger_lists/attribute.py
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 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 |
|
Attributes¶
editor_name
property
¶
The exact name of this resource in the editor. To be used in <...> notation in trigger displays
POPULATION_HEADROOM = 4
class-attribute
instance-attribute
¶
4
- Purpose: Amount of free population space. Note that this is NOT the population cap
CONVERSION_RANGE = 5
class-attribute
instance-attribute
¶
5
- Purpose: Unknown... What does this resource do?
CURRENT_AGE = 6
class-attribute
instance-attribute
¶
6
-
Purpose: Controls the age name and icon at the top of the screen
-
Defaults:
- 0: Dark Age
- 1: Feudal Age
- 2: Castle Age
- 3: Imperial Age
-
Note: Setting this to an amount higher than 3 cycles the icon but keeps the age at imperial
CURRENT_POPULATION = 11
class-attribute
instance-attribute
¶
11
- Purpose: The current population
CORPSE_DECAY_TIME = 12
class-attribute
instance-attribute
¶
12
- Purpose: Unknown... What does this resource do?
REMARKABLE_DISCOVERY = 13
class-attribute
instance-attribute
¶
13
- Purpose: Unknown... What does this resource do?
MONUMENTS_CAPTURED = 14
class-attribute
instance-attribute
¶
14
- Purpose: Number of monuments owned
MEAT_STORAGE = 15
class-attribute
instance-attribute
¶
15
- Purpose: Unknown... What does this resource do?
BERRY_STORAGE = 16
class-attribute
instance-attribute
¶
16
- Purpose: Unknown... What does this resource do?
FISH_STORAGE = 17
class-attribute
instance-attribute
¶
17
- Purpose: Unknown... What does this resource do?
TOTAL_UNITS_OWNED = 19
class-attribute
instance-attribute
¶
19
- Purpose: Total units owned, excluding buildings
UNITS_KILLED = 20
class-attribute
instance-attribute
¶
20
- Purpose: Total units killed, excluding buildings
TECHNOLOGY_COUNT = 21
class-attribute
instance-attribute
¶
21
- Purpose: Number of technologies researched till now
PERCENT_MAP_EXPLORED = 22
class-attribute
instance-attribute
¶
22
- Purpose: Percentage of the map explored
CASTLE_AGE_TECH_ID = 23
class-attribute
instance-attribute
¶
23
-
Purpose: Always 102
-
Note: Nothing happens when you change this, probably for mods only
IMPERIAL_AGE_TECH_ID = 24
class-attribute
instance-attribute
¶
24
-
Purpose: Always 103
-
Note: Nothing happens when you change this, probably for mods only
FEUDAL_AGE_TECH_ID = 25
class-attribute
instance-attribute
¶
25
-
Purpose: Always 101
-
Note: Nothing happens when you change this, probably for mods only
ATTACK_WARNING_SOUND_ID = 26
class-attribute
instance-attribute
¶
26
-
Purpose: Always 0
-
Note: Nothing happens when you change this, probably for mods only
ENABLE_MONK_CONVERSION = 27
class-attribute
instance-attribute
¶
27
-
Purpose: Boolean: allow enemy monk conversions
-
Defaults:
- 0: No (default)
-
= 1: Yes, after Atonement
ENABLE_BUILDING_CONVERSION = 28
class-attribute
instance-attribute
¶
28
-
Purpose: Boolean: allow enemy building conversions
-
Defaults:
- 0: No (default)
- 1: Yes, after Redemption
-
=2: Monks can convert buildings from range
ENABLE_SIEGE_CONVERSION = 29
class-attribute
instance-attribute
¶
29
-
Purpose: Boolean: allow enemy siege conversions
-
Defaults:
- 0: No (default)
- 1: Yes, after Redemption
-
=2: Monks can convert siege from range
BONUS_POPULATION_CAP = 32
class-attribute
instance-attribute
¶
32
-
Purpose: Additional pop space to grant on top of maximum pop cap
-
Note: 10 for goths
EFFECT_FUNCTION_NUMBER = 33
class-attribute
instance-attribute
¶
33
- Purpose: Used to invoke functions in XS from data. When set to a non zero value
N
, it will automatically call a function namedEffectFunctionN
from theEffects.xs
file.
FARM_FOOD_AMOUNT = 36
class-attribute
instance-attribute
¶
36
-
Purpose: Maximum farm food amount
-
Defaults:
- 175: Default
- 220: Chinese
-
Note: This is what horse collar etc. technologies modify
CIVILIAN_POPULATION = 37
class-attribute
instance-attribute
¶
37
- Purpose: Current civilian population
VILLAGER_POPULATION = 38
class-attribute
instance-attribute
¶
38
- Purpose: Current villager population
ALL_TECHS_ACHIEVED = 39
class-attribute
instance-attribute
¶
39
-
Purpose: Boolean: If all available technologies have been researched
-
Defaults:
- 0: No
- 1: Yes
MILITARY_POPULATION = 40
class-attribute
instance-attribute
¶
40
- Purpose: Current military popupation
STANDING_WONDERS = 42
class-attribute
instance-attribute
¶
42
- Purpose: Number of standing wonders
KILL_RATIO = 44
class-attribute
instance-attribute
¶
44
- Purpose: This is the number of units lost subtracted from the number of units killed in total
SURVIVAL_TO_FINISH = 45
class-attribute
instance-attribute
¶
45
-
Purpose: Boolean: This is set to
0
under the same conditions which are required to defeat a player -
Defaults:
- 0: No
- 1: Yes
TRIBUTE_INEFFICIENCY = 46
class-attribute
instance-attribute
¶
46
-
Purpose: This is the fraction of tributes sent that are collected as tax
-
Defaults:
- 0.3: Default
- 0.2: After Coinage
- 0: After Banking
GOLD_MINING_PRODUCTIVITY = 47
class-attribute
instance-attribute
¶
47
-
Purpose: Multiplier for gold mined by gold miners
-
Defaults:
- 1: Default
- 1.15: Mayans
-
Note: Since this works by multiplying the amount of resources gathered by a villager, it has a side effect of increasing the gather rate. In the case of Mayans, This is compensated for by reducing villager work rate by 15%
TOWN_CENTER_UNAVAILABLE = 48
class-attribute
instance-attribute
¶
48
-
Purpose: Boolean: allow building extra tcs
-
Defaults:
- 0: No (Sudden Death)
- 1: Yes (Normal)
REVEAL_ALLY = 50
class-attribute
instance-attribute
¶
50
-
Purpose: Boolean: show ally los for the source player
-
Defaults:
- 0: No (default)
- 1: Yes, after Cartography or with a Portuguese ally
-
Note: Once set to
1
, setting it back to0
won't take away the LoS of allies
TRIBUTE_SENT = 53
class-attribute
instance-attribute
¶
53
- Purpose: Total of all resources tributed to others. This does not count taxes paid on tributing
ALL_MONUMENTS_CAPTURED = 54
class-attribute
instance-attribute
¶
54
-
Purpose: Boolean: all monuments on the map captured
-
Defaults:
- 0: No
- 1: Yes
ALL_RELICS_CAPTURED = 55
class-attribute
instance-attribute
¶
55
-
Purpose: Boolean: all relics on the map captured
-
Defaults:
- 0: No
- 1: Yes
KIDNAP_STORAGE = 57
class-attribute
instance-attribute
¶
57
-
Purpose: Number of units kidnapped
-
Note: This is probably only used by mods, this usage may be incorrect
DARK_AGE_TECH_ID = 58
class-attribute
instance-attribute
¶
58
-
Purpose: Always 104
-
Note: Nothing happens when you change this
BUILDING_HOUSING_RATE = 62
class-attribute
instance-attribute
¶
62
- Purpose: Unknown... What does this resource do?
TAX_GATHER_RATE = 63
class-attribute
instance-attribute
¶
63
- Purpose: Unknown... What does this resource do?
GATHER_ACCUMULATOR = 64
class-attribute
instance-attribute
¶
64
- Purpose: Unknown... What does this resource do?
SALVAGE_DECAY_RATE = 65
class-attribute
instance-attribute
¶
65
- Purpose: Unknown... What does this resource do?
CAN_CONVERT = 67
class-attribute
instance-attribute
¶
67
-
Purpose: Boolean: monks can convert enemy units
-
Defaults:
- 0: No
- 1: Yes (default)
HIT_POINTS_KILLED = 68
class-attribute
instance-attribute
¶
68
- Purpose: Cumulative hp of all units killed
FARM_FOOD_MULTIPLIER = 69
class-attribute
instance-attribute
¶
69
-
Purpose: Multiplier for the amount of extra food granted by mill upgrades
-
Defaults:
- 1: No multiplier (default)
SOURCE_MARKET_OR_DOCK_X_COORDINATE = 70
class-attribute
instance-attribute
¶
70
- Purpose: Controls the amount of gold that trade carts and trade cogs deposit, when the source market is changed
SOURCE_MARKET_OR_DOCK_Y_COORDINATE = 71
class-attribute
instance-attribute
¶
71
- Purpose: Controls the amount of gold that trade carts and trade cogs deposit, when the source market is changed
CONVERSION_RESISTANCE = 77
class-attribute
instance-attribute
¶
77
-
Purpose: Coefficient of conversion resistance
-
Defaults:
- 0: Default
-
Note: Probability of conversion every monk second is divided by this value for ALL source player units.
TRADE_VIG_RATE = 78
class-attribute
instance-attribute
¶
78
-
Purpose: Market exchange rate fraction for the source player
-
Defaults:
- 0.3: Default
- 0.15: after Guilds
- 0.05: Saracens
STONE_MINING_PRODUCTIVITY = 79
class-attribute
instance-attribute
¶
79
-
Purpose: Multiplier for stone mined by stone miners
-
Defaults:
- 1: Default
- 1.15: Mayans
-
Note: Since this works by multiplying the amount of resources gathered by a villager, it has a side effect of increasing the gather rate. In the case of Mayans, This is compensated for by reducing villager work rate by 15%
QUEUED_UNITS = 80
class-attribute
instance-attribute
¶
80
-
Purpose: Amount of units in queue
-
Note: Note that only the units waiting to be trained are considered in the queue so if an archery range has 3 archers being made, there is 1 archer that is being trained and 2 archers that are in queue
TRAINING_COUNT = 81
class-attribute
instance-attribute
¶
81
-
Purpose: Amount of units being trained
-
Note: Note that only the FIRST unit in each building is considered as being trained so if a town centre has 4 villagers being made, there is 1 archer that is being trained and 3 villagers that are in queue
START_WITH_UNIT_444_PTWC = 82
class-attribute
instance-attribute
¶
82
-
Purpose: Boolean: started with PTWC
-
Note: Setting this to 1 in an RMS allows for starting with PTWC. Manually changing this in the editor does nothing
STARTING_VILLAGERS = 84
class-attribute
instance-attribute
¶
84
-
Purpose: Number of starting villagers
-
Defaults:
- 3: Default
- 4: Mayans
- 6: Chinese
-
Note: Only works for RMS, changing this manually in the editor does nothing
RESEARCH_COST_MODIFIER = 85
class-attribute
instance-attribute
¶
85
-
Purpose: Multiply technology costs by this value
-
Defaults:
- 1: Default
- 0.9: Chinese in feudal age
- 0.85: Chinese in castle age
- 0.80: Chinese in imperial age
RESEARCH_TIME_MODIFIER = 86
class-attribute
instance-attribute
¶
86
- Purpose: Multiply technology research times by this value
CONVERT_BOATS = 87
class-attribute
instance-attribute
¶
87
-
Purpose: Boolean: allow monks to convert boats
-
Defaults:
- 0: No
- 1: Yes (default)
FISH_TRAP_FOOD_AMOUNT = 88
class-attribute
instance-attribute
¶
88
-
Purpose: Maximum fishtrap food amount
-
Defaults:
- 710: Default
- 2130: Malay
HEAL_RATE_MODIFIER = 89
class-attribute
instance-attribute
¶
89
-
Purpose: Monk healing rate modifier
-
Defaults:
- 0: The unit of measuremeant for this is unknown
HEALING_RANGE = 90
class-attribute
instance-attribute
¶
90
-
Purpose: Monk heal range
-
Defaults:
- 4: Tiles
STARTING_FOOD = 91
class-attribute
instance-attribute
¶
91
-
Purpose: Starting food amount
-
Note: Only works for RMS, changing this manually in the editor does nothing but its a way to check starting food amount
STARTING_WOOD = 92
class-attribute
instance-attribute
¶
92
-
Purpose: Starting wood amount
-
Note: Only works for RMS, changing this manually in the editor does nothing but its a way to check starting wood amount
STARTING_STONE = 93
class-attribute
instance-attribute
¶
93
-
Purpose: Starting stone amount
-
Note: Only works for RMS, changing this manually in the editor does nothing but its a way to check starting stone amount
STARTING_GOLD = 94
class-attribute
instance-attribute
¶
94
-
Purpose: Starting gold amount
-
Note: Only works for RMS, changing this manually in the editor does nothing but its a way to check starting gold amount
ENABLE_PTWC_KIDNAP_LOOT = 95
class-attribute
instance-attribute
¶
95
-
Purpose: Enable town centre packing for the source player
-
Defaults:
- 0: Default
- 1: Allows the TC to be packed and moved
-
=2: No noticeable effect
-
Note: Enabling kidnap/loot requires modding the units to have the kidnap/pillage action
NO_DROPSITE_FARMERS = 96
class-attribute
instance-attribute
¶
96
-
Purpose: Enable Khmer farmer bonus
-
Defaults:
- 0: Default
- 1: Khmer. Farmers no longer need dropoff and steadily gain resources while farming
DOMINANT_SHEEP_CONTROL = 97
class-attribute
instance-attribute
¶
97
-
Purpose: Boolean: force sheep conversion
-
Defaults:
- 0: Default
-
=1: Celts
-
Note: If this is set to a non zero value, other players' sheep convert to you even if they have a unit in their LOS, unless this is also a non zero value for them. Celt sheep bonus
BUILDING_COST_SUM = 98
class-attribute
instance-attribute
¶
98
- Purpose: Total cost of all units and buildings owned
TECH_COST_SUM = 99
class-attribute
instance-attribute
¶
99
- Purpose: Total cost of all researches researched
RELIC_INCOME_SUM = 100
class-attribute
instance-attribute
¶
100
- Purpose: Total relic gold generated
TRADE_INCOME_SUM = 101
class-attribute
instance-attribute
¶
101
- Purpose: Total trade gold generated
STANDING_CASTLES = 134
class-attribute
instance-attribute
¶
134
- Purpose: Number of standing castles
HIT_POINTS_RAZED = 135
class-attribute
instance-attribute
¶
135
- Purpose: Total HP of all buildings destroyed
VALUE_KILLED_BY_OTHERS = 152
class-attribute
instance-attribute
¶
152
- Purpose: Total cost of all own units lost
VALUE_RAZED_BY_OTHERS = 153
class-attribute
instance-attribute
¶
153
- Purpose: Total cost of all own buildings lost
KILLED_BY_OTHERS = 154
class-attribute
instance-attribute
¶
154
- Purpose: Number of own units killed by other players
RAZED_BY_OTHERS = 155
class-attribute
instance-attribute
¶
155
- Purpose: Number of own buildings destroyed by other players
VALUE_CURRENT_UNITS = 164
class-attribute
instance-attribute
¶
164
- Purpose: Total cost of all own alive units
VALUE_CURRENT_BUILDINGS = 165
class-attribute
instance-attribute
¶
165
- Purpose: Total cost of all own standing buildings
TOTAL_VALUE_OF_KILLS = 170
class-attribute
instance-attribute
¶
170
- Purpose: Total cost of all units killed
TOTAL_TRIBUTE_RECEIVED = 171
class-attribute
instance-attribute
¶
171
- Purpose: Total of all resources received in tribute
TOTAL_VALUE_OF_RAZINGS = 172
class-attribute
instance-attribute
¶
172
- Purpose: Total cost of all buildings destroyed
TOTAL_CASTLES_BUILT = 173
class-attribute
instance-attribute
¶
173
- Purpose: Number of total castles built
TOTAL_WONDERS_BUILT = 174
class-attribute
instance-attribute
¶
174
- Purpose: Number of total wonders built
TRIBUTE_SCORE = 175
class-attribute
instance-attribute
¶
175
- Purpose: Total amount of resources sent in tribute including taxes. 10% of this is counted towards the economy score
CONVERT_MIN_ADJUSTMENT = 176
class-attribute
instance-attribute
¶
176
-
Purpose: Additional monk seconds needed before a conversion is even possible
-
Note: A great explanation of how this works: https://youtu.be/-qRUaOHpbwI?t=870 by T-West
CONVERT_MAX_ADJUSTMENT = 177
class-attribute
instance-attribute
¶
177
-
Purpose: Additional monk seconds needed before a conversion is forced
-
Note: A great explanation of how this works: https://youtu.be/-qRUaOHpbwI?t=870 by T-West
CONVERT_RESIST_MIN_ADJUSTMENT = 178
class-attribute
instance-attribute
¶
178
-
Purpose: Additional monk seconds needed before conversion by enemy monks is even possible
-
Note: A great explanation of how this works: https://youtu.be/-qRUaOHpbwI?t=830 by T-West
CONVERT_RESIST_MAX_ADJUSTMENT = 179
class-attribute
instance-attribute
¶
179
-
Purpose: Additional monk seconds needed before conversion by enemy monks is forced
-
Note: A great explanation of how this works: https://youtu.be/-qRUaOHpbwI?t=830 by T-West.
CONVERT_BUILDING_MIN = 180
class-attribute
instance-attribute
¶
180
-
Purpose: Minimum time required to convert a building
-
Note: A great explanation of how this works: https://youtu.be/-qRUaOHpbwI?t=902 by T-West
CONVERT_BUILDING_MAX = 181
class-attribute
instance-attribute
¶
181
-
Purpose: Maximum time required to convert a building
-
Note: A great explanation for how this works: https://youtu.be/-qRUaOHpbwI?t=902 by T-West
CONVERT_BUILDING_CHANCE = 182
class-attribute
instance-attribute
¶
182
-
Purpose: Percent chance for monks to convert buildings
-
Note: A great explanation for how this works: https://youtu.be/-qRUaOHpbwI?t=902 by T-West
REVEAL_ENEMY = 183
class-attribute
instance-attribute
¶
183
-
Purpose: Boolean: show enemy los for the source player
-
Defaults:
- 0: No (default)
- 1: Yes, after Spies
-
Note: Once set to
1
, setting it back to0
won't take away LoS of enemies!
VALUE_WONDERS_CASTLES = 184
class-attribute
instance-attribute
¶
184
- Purpose: Total cost of all wonders and castles constructed
FOOD_SCORE = 185
class-attribute
instance-attribute
¶
185
- Purpose: Unknown... what does this resource do?
WOOD_SCORE = 186
class-attribute
instance-attribute
¶
186
- Purpose: Unknown... what does this resource do?
STONE_SCORE = 187
class-attribute
instance-attribute
¶
187
- Purpose: Unknown... what does this resource do?
GOLD_SCORE = 188
class-attribute
instance-attribute
¶
188
- Purpose: Unknown... what does this resource do?
CHOPPING_PRODUCTIVITY = 189
class-attribute
instance-attribute
¶
189
-
Purpose: Multiplier for wood chopped by lumberjacks
-
Defaults:
- 1: Default
- 1.15: Mayans
-
Note: Since this works by multiplying the amount of resources gathered by a villager, it has a side effect of increasing the gather rate. In the case of Mayans, This is compensated for by reducing villager work rate by 15%
FOOD_GATHERING_PRODUCTIVITY = 190
class-attribute
instance-attribute
¶
190
-
Purpose: Multiplier for food gathered from all sources
-
Defaults:
- 1: Default
- 1.15: Mayans
-
Note: Since this works by multiplying the amount of resources gathered by a villager, it has a side effect of increasing the gather rate. In the case of Mayans, This is compensated for by reducing villager work rate by 15%. The work rate for farmers is reduced by about 23.4%
RELIC_GOLD_PRODUCTION_RATE = 191
class-attribute
instance-attribute
¶
191
-
Purpose: Relic gold generation rate in gold per minute
-
Defaults:
- 30: Default. 30 gold per minute (0.5 gold per second)
- 15: After getting hit with Atheism
CONVERTED_UNITS_DIE = 192
class-attribute
instance-attribute
¶
192
-
Purpose: Boolean: converted units die instead of switching over to the enemy
-
Defaults:
- 0: No (default)
- 1: Yes, after Heresey
THEOCRACY = 193
class-attribute
instance-attribute
¶
193
-
Purpose: Boolean: only one monk needs to regen faith after group conversion for the source player
-
Defaults:
- 0: No (default)
- 1: Yes, after researching Theocracy
CONSTRUCTION_RATE_MODIFIER = 195
class-attribute
instance-attribute
¶
195
-
Purpose: Builder work rate multiplier
-
Defaults:
- 0: Default
- 1.3: Spanish
-
Note: The actual work rate for builders is given by
construction_rate_mod * builder.default_work_rate
HUN_WONDER_DISCOUNT = 196
class-attribute
instance-attribute
¶
196
-
Purpose: Additional time required for relic/wonder victories in one tenth of a year
-
Defaults:
- 0: default
- 1000: (100 years) for the Hun player, after researching atheism. The value of this resource of each player is added to determine the total extra time for relic/wonder victories, i.e. it adds up if multiple hun players get the tech
-
Note: Internally, relic and wonder victory countdowns are measured in one tenths of an year, the fractional part is just not shown ingame
SPIES_DISCOUNT = 197
class-attribute
instance-attribute
¶
197
-
Purpose: Boolean: Halves the cost of spies per villager, and caps it at 15k gold max instead of the usual 30k
-
Defaults:
- 0: Default
REVEAL_MAP = 203
class-attribute
instance-attribute
¶
203
-
Purpose: Controls the map visibility for a player.
-
Defaults:
- 0: Normal
- 1: Explored
- 2: All Visible
REVEAL_UNIT_ON_MAP = 204
class-attribute
instance-attribute
¶
204
-
Purpose: Controls the visibility of other players' units for a player
-
Note: Positive IDs will reveal a unit temporarily only when it is created, Negative IDs will reveal a unit permanently
FEITORIA_FOOD_PRODUCTIVITY = 205
class-attribute
instance-attribute
¶
205
-
Purpose: Feitoria food production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of food obtained from owning
n
number of Feitorias is given byn * feitoria_food_productivity * 1.6
FEITORIA_WOOD_PRODUCTIVITY = 206
class-attribute
instance-attribute
¶
206
-
Purpose: Feitoria wood production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of wood obtained from owning
n
number of Feitorias is given byn * feitoria_wood_productivity * 0.7
FEITORIA_STONE_PRODUCTIVITY = 207
class-attribute
instance-attribute
¶
207
-
Purpose: Feitoria stone production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of stone obtained from owning
n
number of Feitorias is given byn * feitoria_stone_productivity * 0.3
FEITORIA_GOLD_PRODUCTIVITY = 208
class-attribute
instance-attribute
¶
208
-
Purpose: Feitoria gold production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of gold obtained from owning
n
number of Feitorias is given byn * feitoria_gold_productivity * 1
REVEAL_ENEMY_TOWN_CENTERS = 209
class-attribute
instance-attribute
¶
209
-
Purpose: Boolean: reveal enemy town centre location for the source player
-
Defaults:
- 0: Default
- 5: Vietnamese
-
Note: The bonus works for all values >=1, the choice of setting it to 5 for vietnamese seems arbitrary
RELICS_VISIBLE_ON_MAP = 210
class-attribute
instance-attribute
¶
210
-
Purpose: Boolean: reveal relics on map amount
-
Defaults:
- -1: Default
- 42: Burmese
-
Note: Burmese reveal relics on map bonus. Only works in RMS, manually changing this in the editor does not seem to have any effects
ELEVATION_HIGHER_BONUS = 211
class-attribute
instance-attribute
¶
211
-
Purpose: The fraction for additional bonus damage dealt from higher elevation
-
Defaults:
- 0: Default
- 0.25: Tatars
-
Note: Damage that units on higher elevation deal to units on lower elevation is multiplied by
1.25 + elevation_bonus_higher
ELEVATION_LOWER_BONUS = 212
class-attribute
instance-attribute
¶
212
-
Purpose: The fraction for additional bonus damage dealt from lower elevation
-
Defaults:
- 0: Default
-
Note: Damage that units on lower elevation deal to units on higher elevation is multiplied by
0.75 + elevation_bonus_lower
RAIDING_PRODUCTIVITY = 213
class-attribute
instance-attribute
¶
213
-
Purpose: Keshik gold generation rate per 100 seconds
-
Defaults:
- 0: Default
- 50: (0.5 g/s) Tatars
-
Note: Note that in practice, due to attack reload time and frame delay, Keshiks don't actually produce 0.5 g/s, but a slightly lower value
MERCENARY_KIPCHAK_COUNT = 214
class-attribute
instance-attribute
¶
214
-
Purpose: Total number of mercenary kipchak creatable
-
Note: Researching Cuman Mercenaries sets this to 10. Making mercenary Kipchaks costs one unit of this resource
SHEPHERD_PRODUCTIVITY = 216
class-attribute
instance-attribute
¶
216
-
Purpose: Amount of food collected from sheep multiplier
-
Defaults:
- 1: Default
- 1.57: Tatars
-
Note: Since this works by multiplying the amount of resources gathered by a villager, it has a side effect of increasing the gather rate. In the case of Tatars, This is compensated for by reducing villager work rate by 57%
EARLY_TOWN_CENTER_LIMIT = 218
class-attribute
instance-attribute
¶
218
-
Purpose: This is the number of extra TCs a player is allowed to build IF TCs are enabled in feudal age
-
Defaults:
- 1: Default
- 2: Cumans
-
Note: Since generic civs don't get access to TCs in feudal, the 10k amount doesn't matter, but if you're trying to make a map where you want people to be able to make TCs in feudal, make sure to set this value to 10k for cumans!
FISHING_PRODUCTIVITY = 219
class-attribute
instance-attribute
¶
219
-
Purpose: Multiplier for food gathered by fishing ships
-
Defaults:
- 1: Default
-
Note: Since this works by multiplying the amount of resources gathered by a fishing ship, it has a side effect of increasing the gather rate
MONUMENT_FOOD_PRODUCTIVITY = 221
class-attribute
instance-attribute
¶
221
-
Purpose: Monument food trickle rate multiplier
-
Defaults:
- 1: In KoTH games
-
Note: The amount of resources obtained by owning a monument is
0.7925 * food_trickle_from_monument
MONUMENT_WOOD_PRODUCTIVITY = 222
class-attribute
instance-attribute
¶
222
-
Purpose: Monument wood trickle rate multiplier
-
Defaults:
- 1: In KoTH games
-
Note: The amount of resources obtained by owning a monument is
0.7925 * wood_trickle_from_monument
MONUMENT_STONE_PRODUCTIVITY = 223
class-attribute
instance-attribute
¶
223
-
Purpose: Monument stone trickle rate multiplier
-
Defaults:
- 1: In KoTH games
-
Note: The amount of resources obtained by owning a monument is
0.7925 * stone_trickle_from_monument
MONUMENT_GOLD_PRODUCTIVITY = 224
class-attribute
instance-attribute
¶
224
-
Purpose: Monument gold trickle rate multiplier
-
Defaults:
- 1: In KoTH games
-
Note: The amount of resources obtained by owning a monument is
0.7925 * gold_trickle_from_monument
RELIC_FOOD_PRODUCTION_RATE = 225
class-attribute
instance-attribute
¶
225
-
Purpose: Relic food production per minute
-
Defaults:
- 0: Default
- 30: Burgundians
- 15: Burgundians after getting hit with Atheism
VILLAGERS_KILLED_BY_GAIA = 226
class-attribute
instance-attribute
¶
226
- Purpose: Total number of villagers lost to gaia
VILLAGERS_KILLED_BY_ANIMALS = 227
class-attribute
instance-attribute
¶
227
- Purpose: Total number of villagers lost to wild animals
VILLAGERS_KILLED_BY_AI_PLAYER = 228
class-attribute
instance-attribute
¶
228
- Purpose: Total number of villagers lost to AIs
VILLAGERS_KILLED_BY_HUMAN_PLAYER = 229
class-attribute
instance-attribute
¶
229
- Purpose: Total number of villagers lost to human players
FOOD_GENERATION_RATE = 230
class-attribute
instance-attribute
¶
230
- Purpose: Free food trickle rate (per minute)
WOOD_GENERATION_RATE = 231
class-attribute
instance-attribute
¶
231
- Purpose: Free wood trickle rate (per minute)
STONE_GENERATION_RATE = 232
class-attribute
instance-attribute
¶
232
- Purpose: Free stone trickle rate (per minute)
GOLD_GENERATION_RATE = 233
class-attribute
instance-attribute
¶
233
- Purpose: Free gold trickle rate (per minute)
SPAWN_LIMIT = 234
class-attribute
instance-attribute
¶
234
-
Purpose: The limit to the number of spawning buildings that can spawn units from spawn command in a technology
-
Note: This is usually overridden by techs
FLEMISH_MILITIA_POPULATION = 235
class-attribute
instance-attribute
¶
235
- Purpose: Number of alive flemish militia
FARMING_GOLD_PRODUCTIVITY = 236
class-attribute
instance-attribute
¶
236
-
Purpose: Farming gold generation rate per 100 seconds
-
Defaults:
- 0: Default
- 2: (0.02 g/s per farmer) after Burgundian Vineyards
-
Note: Only generates gold while collecting food from farms, and not when walking on them down
FOLWARK_COLLECTION_AMOUNT = 237
class-attribute
instance-attribute
¶
237
-
Purpose: This is the amount of food collected from farms built around a folwark
-
Defaults:
- 0: Default
- 17.5: Poles
- 19.25: Poles with Chinese Ally
- 25: Poles with Horse Collar
- 27.5: Poles with Horse Collar & Chinese Ally
- 37.5: Poles with Heavy Plow
- 41.25: Poles with Heavy Plow & Chinese Ally
- 55: Poles with Crop Rotation
- 60.5: Poles with Crop Rotation & Chinese Ally
FOLWARK_ATTRIBUTE_TYPE = 238
class-attribute
instance-attribute
¶
238
-
Purpose: This is the ID of the resource that is given when a farm is constructed around a folwark
-
Defaults:
- 0: Poles
- -1: Default
FOLWARK_BUILDING_TYPE = 239
class-attribute
instance-attribute
¶
239
-
Purpose: This is the ID of the building that the Folwark needs to upgrade from for the farm collection ability to work
-
Defaults:
- 68: (Mill) Poles
- -1: Default
UNITS_CONVERTED = 240
class-attribute
instance-attribute
¶
240
- Purpose: The amount of units lost to enemy conversions
STONE_MINING_GOLD_PRODUCTIVITY = 241
class-attribute
instance-attribute
¶
241
-
Purpose: Stone mining gold generation rate per 100 seconds
-
Defaults:
- 0: Default
- 18: Poles
- 20.7: Poles with Stone Mining
- 23.805: Poles with Stone Shaft Mining
TRADE_WORKSHOP_FOOD_PRODUCTIVITY = 242
class-attribute
instance-attribute
¶
242
-
Purpose: Trade Workshop food production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of food obtained from owning
n
number of TWS (Unit 1647) is given byn * tws_food_productivity * 2.25
TRADE_WORKSHOP_WOOD_PRODUCTIVITY = 243
class-attribute
instance-attribute
¶
243
-
Purpose: Trade Workshop wood production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of wood obtained from owning
n
number of TWS (Unit 1647) is given byn * tws_wood_productivity * 2.25
TRADE_WORKSHOP_STONE_PRODUCTIVITY = 244
class-attribute
instance-attribute
¶
244
-
Purpose: Trade Workshop stone production rate multiplier
-
Defaults:
- 0: Default
-
Note: The amount of stone obtained from owning
n
number of TWS (Unit 1647) is given byn * tws_stone_productivity * 2.25
TRADE_WORKSHOP_GOLD_PRODUCTIVITY = 245
class-attribute
instance-attribute
¶
245
-
Purpose: Trade Workshop gold production rate multiplier
-
Defaults:
- 1: Default
-
Note: The amount of gold obtained from owning
n
number of TWS (Unit 1647) is given byn * tws_gold_productivity * 2.25
UNITS_VALUE_TOTAL = 246
class-attribute
instance-attribute
¶
246
-
Purpose: Total cost of all units created so far
-
Note: This does not decrease when the units die
BUILDINGS_VALUE_TOTAL = 247
class-attribute
instance-attribute
¶
247
-
Purpose: Total cost of all buildings created so far
-
Note: Increases when foundations are placed. This does not decrease if the foundation is deleted
VILLAGERS_CREATED_TOTAL = 248
class-attribute
instance-attribute
¶
248
- Purpose: Total number of villagers created so far
VILLAGERS_IDLE_PERIODS_TOTAL = 249
class-attribute
instance-attribute
¶
249
-
Purpose: Amount of villagers that entered an idle state since game start
-
Note:
- This only updates every 5 physical minutes.
- The number of villagers that entered an idle state since the last updated is added to this resource.
- Starting villager count is the initial value
VILLAGERS_IDLE_SECONDS_TOTAL = 250
class-attribute
instance-attribute
¶
250
-
Purpose: Amount of total seconds all villagers have been idle since game start
-
Note:
- This only updates every 5 physical minutes.
- The idle time in seconds for all villagers since the last time this resource was updated is added to this resource.
- A villager immediately adds its own idle time to this resource if it dies
TRADE_FOOD_PERCENT = 251
class-attribute
instance-attribute
¶
251
-
Purpose: Percentage of gold generated from trade that is also given as food
-
Defaults:
- 0: Default
- 10: Bengalis
TRADE_WOOD_PERCENT = 252
class-attribute
instance-attribute
¶
252
-
Purpose: Percentage of gold generated from trade that is also given as wood
-
Defaults:
- 0: Default
TRADE_STONE_PERCENT = 253
class-attribute
instance-attribute
¶
253
-
Purpose: Percentage of gold generated from trade that is also given as stone
-
Defaults:
- 0: Default
LIVESTOCK_FOOD_PRODUCTIVITY = 254
class-attribute
instance-attribute
¶
254
-
Purpose: Garrisoned herdable food generation rate per 60 seconds
-
Defaults:
- 0: Default
- 3.5: (0.0583 f/s per herdable) Gurjaras
STARTING_SCOUT_ID = 263
class-attribute
instance-attribute
¶
263
-
Purpose: Unit ID for the starting scout. Can be set to any unit (even buildings)
-
Defaults:
- 448: (Scout Cavalry) Default
- 751: (Eagle Scout) Aztecs, Incas and Mayans
- 1755: (Camel Scout) Gurjaras
RELIC_WOOD_PRODUCTION_RATE = 264
class-attribute
instance-attribute
¶
264
-
Purpose: Relic wood production per minute
-
Defaults:
- 0: Default
-
Note: This is not affected by Atheism
RELIC_STONE_PRODUCTION_RATE = 265
class-attribute
instance-attribute
¶
265
-
Purpose: Relic stone production per minute
-
Note: This is not affected by Atheism
CHOPPING_GOLD_PRODUCTIVITY = 266
class-attribute
instance-attribute
¶
266
-
Purpose: Lumberjack chopping gold generation rate per 100 seconds
-
Defaults:
- 0: Default
- 1.5: (0.015 g/s per lumberjack) Vietnamese with paper money
- 1.8: (0.018 g/s per lumberjack) Vietnamese with paper money & Double Bit Axe
- 2.16: (0.0216 g/s per lumberjack) Vietnamese with paper money & Double Bit Axe & Bow Saw
- 2.376: (0.02376 g/s per lumberjack) Vietnamese with paper money & Double Bit Axe & Bow Saw & Two-Man Saw
-
Note: Only generates gold while collecting wood from trees, and not when cutting them down
FORAGING_WOOD_PRODUCTIVITY = 267
class-attribute
instance-attribute
¶
267
-
Purpose: Forager foraging wood generation rate per 100 seconds
-
Defaults:
- 0: Default
- 10.4753: (0.104753 w/s per forager) Portuguese
HUNTER_PRODUCTIVITY = 268
class-attribute
instance-attribute
¶
268
- Purpose: Hunter hunting gold production rate per 100 seconds
TECHNOLOGY_REWARD_EFFECT = 269
class-attribute
instance-attribute
¶
269
- Purpose: This is the ID of an additional effect which will fire when any technology is researched
UNIT_REPAIR_COST = 270
class-attribute
instance-attribute
¶
270
- Purpose: Percentage of cost required to repair siege units and ships
BUILDING_REPAIR_COST = 271
class-attribute
instance-attribute
¶
271
- Purpose: Percentage of cost required to repair buildings
ELEVATION_HIGHER_DAMAGE = 272
class-attribute
instance-attribute
¶
272
-
Purpose: Damage modifier for own units when attacked from higher elevation
-
Note: This is applied after the calculations from Elevation Higher Bonus and Elevation Lower Bonus
ELEVATION_LOWER_DAMAGE = 273
class-attribute
instance-attribute
¶
273
-
Purpose: Damage modifier for own units when attacked from lower elevation
-
Note: This is applied after the calculations from Elevation Higher Bonus and Elevation Lower Bonus
INFANTRY_KILL_REWARD = 274
class-attribute
instance-attribute
¶
274
-
Purpose: This resource currently effectively enables/disables gold generation per second by infantry killing villagers, trade units and monks
-
Defaults:
- 0: All Civs
- 1: Vikings after Chieftains
-
Note: Technically, this resource is used as a multiplier for the resource generated by task 154 currently on infantry units. Task 154 can change which resource does this, and it is what really controls which resource is generated (Resource Out) and the rate of generation (Work Value 1) which is set to the different rates for different types of targets for infantry
RED_CLIFFS_TACTICS_DAMAGE = 277
class-attribute
instance-attribute
¶
277
-
Purpose: Multiplier for the amount of fire damage done by demolition ships
-
Defaults:
- 0: Before red cliffs tactics is researched
- 1: After red cliffs tactics is researched
-
Note: This implies that converted units that are affected by the tech won't do fire damage after being converted
MILITARY_CAN_CONVERT = 279
class-attribute
instance-attribute
¶
279
- Purpose: Military units with the conversion task can convert units if this is set to > 0 for a player
MILITARY_CONVERT_RANGE = 280
class-attribute
instance-attribute
¶
280
- Purpose: Adds to the conversion range of military units
MILITARY_CONVERT_CHANCE = 281
class-attribute
instance-attribute
¶
281
- Purpose: Determines the conversion probability per monk second
MILITARY_CONVERT_RECHARGE = 282
class-attribute
instance-attribute
¶
282
- Purpose: Determines the faith recharge rate after successful conversions
SPAWN_INSIDE = 283
class-attribute
instance-attribute
¶
283
-
Purpose: Determines whenever spawned unit via
xsEffectAmount(cSpawnUnit,...)
or certain techs is spawned garrisoned or outside -
Defaults:
- 0: All Civs
- 1: Set briefly for the Armenians after their first Fortified Church is built to spawn the relic garrisoned.
-
Note: This is usually overridden by techs
CAVALRY_KILL_REWARD = 284
class-attribute
instance-attribute
¶
284
-
Purpose: This resource effectively sets the gold generation rate per second by cavalry fighting other military units
-
Defaults:
- 0: All Civs
-
Note: Technically, this resource is used as a multiplier for the resource generated by task 154 currently on cavalry units. Task 154 can change which resource does this, and it is also what really controls which resource is generated (Resource Out) and the rate of generation (Work Value 1) which is just set to 1 for cavalry.
SHARED_VISIBILITY = 285
class-attribute
instance-attribute
¶
285
-
Purpose: Lower bits 1 to 9 control LoS with players 0 to 8 with 0 being gaia.
-
Note: This does not change LoS for allies if the shared exploration setting in the lobby is enabled
SHARED_EXPLORATION = 286
class-attribute
instance-attribute
¶
286
-
Purpose: Lower bits 1 to 9 control map exploration with players 0 to 8 with 0 being gaia.
-
Note: This does not change exploration for allies if the shared exploration setting in the lobby is enabled
MILITARY_FOOD_PRODUCTIVITY = 287
class-attribute
instance-attribute
¶
287
- Purpose: The amount of food generated by soldiers per 100 seconds
PASTURE_FOOD_AMOUNT = 288
class-attribute
instance-attribute
¶
288
- Purpose: Determines the amount of food pastures provide
PASTURE_ANIMAL_COUNT = 289
class-attribute
instance-attribute
¶
289
- Purpose: Determines the amount of animals on a pasture.
PASTURE_HERDER_COUNT = 290
class-attribute
instance-attribute
¶
290
- Purpose: Determines the maximum amount of villagers that can work at once on a pasture
CHOPPING_FOOD_PRODUCTIVITY_UNUSED = 291
class-attribute
instance-attribute
¶
291
- Purpose: Unused - duplicate name, actually controlled by resource 502
ANIMAL_DECAY_PREVENTION = 292
class-attribute
instance-attribute
¶
292
- Purpose: Prevents animal corpses from losing food when being gathered by a villager
HERDER_FOOD_PRODUCTIVITY = 293
class-attribute
instance-attribute
¶
293
- Purpose: Percent extra food generated by herders and shepherds
SHEPHERD_FOOD_PRODUCTIVITY = 294
class-attribute
instance-attribute
¶
294
- Purpose: Percent extra food generated by herders and shepherds
KILLED_GAIA = 300
class-attribute
instance-attribute
¶
300
- Purpose: Number of gaia units killed
KILLED_P1 = 301
class-attribute
instance-attribute
¶
301
-
Purpose: Number of player1 units killed
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
KILLED_P2 = 302
class-attribute
instance-attribute
¶
302
-
Purpose: Number of player2 units killed
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
KILLED_P3 = 303
class-attribute
instance-attribute
¶
303
-
Purpose: Number of player3 units killed
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
KILLED_P4 = 304
class-attribute
instance-attribute
¶
304
-
Purpose: Number of player4 units killed
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
KILLED_P5 = 305
class-attribute
instance-attribute
¶
305
-
Purpose: Number of player5 units killed
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
KILLED_P6 = 306
class-attribute
instance-attribute
¶
306
-
Purpose: Number of player6 units killed
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
KILLED_P7 = 307
class-attribute
instance-attribute
¶
307
-
Purpose: Number of player7 units killed
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
KILLED_P8 = 308
class-attribute
instance-attribute
¶
308
-
Purpose: Number of player8 units killed
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
KILLS_BY_GAIA = 325
class-attribute
instance-attribute
¶
325
- Purpose: Number of own units killed by Gaia
KILLS_BY_P1 = 326
class-attribute
instance-attribute
¶
326
-
Purpose: Number of own units killed by player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
KILLS_BY_P2 = 327
class-attribute
instance-attribute
¶
327
-
Purpose: Number of own units killed by player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
KILLS_BY_P3 = 328
class-attribute
instance-attribute
¶
328
-
Purpose: Number of own units killed by player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
KILLS_BY_P4 = 329
class-attribute
instance-attribute
¶
329
-
Purpose: Number of own units killed by player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
KILLS_BY_P5 = 330
class-attribute
instance-attribute
¶
330
-
Purpose: Number of own units killed by player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
KILLS_BY_P6 = 331
class-attribute
instance-attribute
¶
331
-
Purpose: Number of own units killed by player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
KILLS_BY_P7 = 332
class-attribute
instance-attribute
¶
332
-
Purpose: Number of own units killed by player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
KILLS_BY_P8 = 333
class-attribute
instance-attribute
¶
333
-
Purpose: Number of own units killed by player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
GAIA_RAZINGS = 350
class-attribute
instance-attribute
¶
350
- Purpose: Number of buildings destroyed of Gaia
P1_RAZINGS = 351
class-attribute
instance-attribute
¶
351
-
Purpose: Number of buildings destroyed of player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
P2_RAZINGS = 352
class-attribute
instance-attribute
¶
352
-
Purpose: Number of buildings destroyed of player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
P3_RAZINGS = 353
class-attribute
instance-attribute
¶
353
-
Purpose: Number of buildings destroyed of player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
P4_RAZINGS = 354
class-attribute
instance-attribute
¶
354
-
Purpose: Number of buildings destroyed of player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
P5_RAZINGS = 355
class-attribute
instance-attribute
¶
355
-
Purpose: Number of buildings destroyed of player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
P6_RAZINGS = 356
class-attribute
instance-attribute
¶
356
-
Purpose: Number of buildings destroyed of player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
P7_RAZINGS = 357
class-attribute
instance-attribute
¶
357
-
Purpose: Number of buildings destroyed of player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
P8_RAZINGS = 358
class-attribute
instance-attribute
¶
358
-
Purpose: Number of buildings destroyed of player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
RAZINGS_BY_GAIA = 375
class-attribute
instance-attribute
¶
375
- Purpose: Number of own buildings destroyed by Gaia
RAZINGS_BY_P1 = 376
class-attribute
instance-attribute
¶
376
-
Purpose: Number of own buildings destroyed by player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
RAZINGS_BY_P2 = 377
class-attribute
instance-attribute
¶
377
-
Purpose: Number of own buildings destroyed by player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
RAZINGS_BY_P3 = 378
class-attribute
instance-attribute
¶
378
-
Purpose: Number of own buildings destroyed by player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
RAZINGS_BY_P4 = 379
class-attribute
instance-attribute
¶
379
-
Purpose: Number of own buildings destroyed by player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
RAZINGS_BY_P5 = 380
class-attribute
instance-attribute
¶
380
-
Purpose: Number of own buildings destroyed by player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
RAZINGS_BY_P6 = 381
class-attribute
instance-attribute
¶
381
-
Purpose: Number of own buildings destroyed by player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
RAZINGS_BY_P7 = 382
class-attribute
instance-attribute
¶
382
-
Purpose: Number of own buildings destroyed by player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
RAZINGS_BY_P8 = 383
class-attribute
instance-attribute
¶
383
-
Purpose: Number of own buildings destroyed by player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
GAIA_KILL_VALUE = 400
class-attribute
instance-attribute
¶
400
- Purpose: Total cost of all units killed of Gaia
P1_KILL_VALUE = 401
class-attribute
instance-attribute
¶
401
-
Purpose: Total cost of all units killed of player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
P2_KILL_VALUE = 402
class-attribute
instance-attribute
¶
402
-
Purpose: Total cost of all units killed of player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
P3_KILL_VALUE = 403
class-attribute
instance-attribute
¶
403
-
Purpose: Total cost of all units killed of player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
P4_KILL_VALUE = 404
class-attribute
instance-attribute
¶
404
-
Purpose: Total cost of all units killed of player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
P5_KILL_VALUE = 405
class-attribute
instance-attribute
¶
405
-
Purpose: Total cost of all units killed of player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
P6_KILL_VALUE = 406
class-attribute
instance-attribute
¶
406
-
Purpose: Total cost of all units killed of player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
P7_KILL_VALUE = 407
class-attribute
instance-attribute
¶
407
-
Purpose: Total cost of all units killed of player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
P8_KILL_VALUE = 408
class-attribute
instance-attribute
¶
408
-
Purpose: Total cost of all units killed of player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
GAIA_RAZING_VALUE = 425
class-attribute
instance-attribute
¶
425
- Purpose: Total cost of all buildings destroyed of Gaia
P1_RAZING_VALUE = 426
class-attribute
instance-attribute
¶
426
-
Purpose: Total cost of all buildings destroyed of player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
P2_RAZING_VALUE = 427
class-attribute
instance-attribute
¶
427
-
Purpose: Total cost of all buildings destroyed of player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
P3_RAZING_VALUE = 428
class-attribute
instance-attribute
¶
428
-
Purpose: Total cost of all buildings destroyed of player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
P4_RAZING_VALUE = 429
class-attribute
instance-attribute
¶
429
-
Purpose: Total cost of all buildings destroyed of player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
P5_RAZING_VALUE = 430
class-attribute
instance-attribute
¶
430
-
Purpose: Total cost of all buildings destroyed of player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
P6_RAZING_VALUE = 431
class-attribute
instance-attribute
¶
431
-
Purpose: Total cost of all buildings destroyed of player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
P7_RAZING_VALUE = 432
class-attribute
instance-attribute
¶
432
-
Purpose: Total cost of all buildings destroyed of player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
P8_RAZING_VALUE = 433
class-attribute
instance-attribute
¶
433
-
Purpose: Total cost of all buildings destroyed of player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
GAIA_TRIBUTE = 450
class-attribute
instance-attribute
¶
450
- Purpose: Amount of resources tributed to Gaia
P1_TRIBUTE = 451
class-attribute
instance-attribute
¶
451
-
Purpose: Amount of resources tributed to player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
P2_TRIBUTE = 452
class-attribute
instance-attribute
¶
452
-
Purpose: Amount of resources tributed to player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
P3_TRIBUTE = 453
class-attribute
instance-attribute
¶
453
-
Purpose: Amount of resources tributed to player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
P4_TRIBUTE = 454
class-attribute
instance-attribute
¶
454
-
Purpose: Amount of resources tributed to player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
P5_TRIBUTE = 455
class-attribute
instance-attribute
¶
455
-
Purpose: Amount of resources tributed to player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
P6_TRIBUTE = 456
class-attribute
instance-attribute
¶
456
-
Purpose: Amount of resources tributed to player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
P7_TRIBUTE = 457
class-attribute
instance-attribute
¶
457
-
Purpose: Amount of resources tributed to player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
P8_TRIBUTE = 458
class-attribute
instance-attribute
¶
458
-
Purpose: Amount of resources tributed to player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
TRIBUTE_FROM_GAIA = 475
class-attribute
instance-attribute
¶
475
- Purpose: Tribute received from Gaia
TRIBUTE_FROM_P1 = 476
class-attribute
instance-attribute
¶
476
-
Purpose: Tribute received from player1
-
Note: This refers to lobby/slot/world player 1, not editor/scenario player 1
TRIBUTE_FROM_P2 = 477
class-attribute
instance-attribute
¶
477
-
Purpose: Tribute received from player2
-
Note: This refers to lobby/slot/world player 2, not editor/scenario player 2
TRIBUTE_FROM_P3 = 478
class-attribute
instance-attribute
¶
478
-
Purpose: Tribute received from player3
-
Note: This refers to lobby/slot/world player 3, not editor/scenario player 3
TRIBUTE_FROM_P4 = 479
class-attribute
instance-attribute
¶
479
-
Purpose: Tribute received from player4
-
Note: This refers to lobby/slot/world player 4, not editor/scenario player 4
TRIBUTE_FROM_P5 = 480
class-attribute
instance-attribute
¶
480
-
Purpose: Tribute received from player5
-
Note: This refers to lobby/slot/world player 5, not editor/scenario player 5
TRIBUTE_FROM_P6 = 481
class-attribute
instance-attribute
¶
481
-
Purpose: Tribute received from player6
-
Note: This refers to lobby/slot/world player 6, not editor/scenario player 6
TRIBUTE_FROM_P7 = 482
class-attribute
instance-attribute
¶
482
-
Purpose: Tribute received from player7
-
Note: This refers to lobby/slot/world player 7, not editor/scenario player 7
TRIBUTE_FROM_P8 = 483
class-attribute
instance-attribute
¶
483
-
Purpose: Tribute received from player8
-
Note: This refers to lobby/slot/world player 8, not editor/scenario player 8
UNKNOWN_RESOURCE_500 = 500
class-attribute
instance-attribute
¶
500
- Purpose: Unknown... What does this resource do?
MAXIMUM_POLEMARCHS = 501
class-attribute
instance-attribute
¶
501
-
Purpose: Hidden resource that is part of the cost of Polemarch. Incremented when the Polemarch dies, decremented when a Polemarch is trained. Increment this value to allow training of more Polemarchs.
-
Defaults:
- 0: Default
CHOPPING_FOOD_PRODUCTIVITY = 502
class-attribute
instance-attribute
¶
502
-
Purpose: Chopping food generation rate per 100 seconds.
-
Defaults:
- 0: Default
- 4: Athenians
TRADE_WOOD_PERCENTAGE = 503
class-attribute
instance-attribute
¶
503
-
Purpose: Amount of trade will be returned as wood instead of gold.
-
Defaults:
- 0: Default
- 0.25: Achaemenids, Athenians and Spartans.
-
Note: Changed in the Battle of Greece civs Port by a toggle to 0.25, 0.5, and 0.75 or by researching equivalent tech in the editor. Setting it to 0.5 will return half the amount in gold and half in wood. Works for trade cogs only. Setting it to a value >= 1 will make it so no trade resources are returned.
UNKNOWN_RESOURCE_504 = 504
class-attribute
instance-attribute
¶
504
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_505 = 505
class-attribute
instance-attribute
¶
505
-
Purpose: Unknown... What does this resource do?
-
Defaults:
- 0: Default
- 1: Achaemenids, Athenians and Spartans
ACHAMENIDS_TOWN_CENTER_UPGRADES = 506
class-attribute
instance-attribute
¶
506
-
Purpose: Used as a local resource in Town Centers to know which of them have the Achamenids Town Center upgrade researched
-
Defaults:
- 0: Default
- 1: Achaemenids, Athenians and Spartans
-
Note: Local Town Center resource is changed when its tech is researched. As a side effect its global player value will be decremented every time a Town Center is destroyed.
UNKNOWN_RESOURCE_507 = 507
class-attribute
instance-attribute
¶
507
-
Purpose: Unknown... What does this resource do?
-
Defaults:
- 0: Default
- 1: Athenians
-
Note: Athenians start with it set to 1 by initial Economic Policy.
UNKNOWN_RESOURCE_508 = 508
class-attribute
instance-attribute
¶
508
- Purpose: Unknown... What does this resource do?
BUILDING_LOOT_PRODUCTIVITY = 509
class-attribute
instance-attribute
¶
509
-
Purpose: Gain gold when attacking buildings.
-
Defaults:
- 0: Default
-
Note: Formula is unknown, but the higher the resource the faster the gold gain is.
UNKNOWN_RESOURCE_510 = 510
class-attribute
instance-attribute
¶
510
-
Purpose: Unknown... What does this resource do?
-
Defaults:
- 1: Spartans
-
Note: Spartans start with it set to 1.
UNKNOWN_RESOURCE_511 = 511
class-attribute
instance-attribute
¶
511
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_512 = 512
class-attribute
instance-attribute
¶
512
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_513 = 513
class-attribute
instance-attribute
¶
513
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_514 = 514
class-attribute
instance-attribute
¶
514
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_515 = 515
class-attribute
instance-attribute
¶
515
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_516 = 516
class-attribute
instance-attribute
¶
516
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_517 = 517
class-attribute
instance-attribute
¶
517
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_518 = 518
class-attribute
instance-attribute
¶
518
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_519 = 519
class-attribute
instance-attribute
¶
519
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_520 = 520
class-attribute
instance-attribute
¶
520
-
Purpose: Gives gold generation on kills to certain
Lysander's Raider
and probably other units. Similar to resource 550 and 551. -
Defaults:
- 1: Default
CASTLE_GOLD_PRODUCTIVITY = 521
class-attribute
instance-attribute
¶
521
-
Purpose: Castle gold production rate multiplier.
-
Defaults:
- 0: Default
- 1: After Peloponnesian League researched
-
Note: The amount of gold obtained from owning
n
number of Castles is given byn * castle_gold_productivity * 0.33333
.
UNKNOWN_RESOURCE_522 = 522
class-attribute
instance-attribute
¶
522
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_523 = 523
class-attribute
instance-attribute
¶
523
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_524 = 524
class-attribute
instance-attribute
¶
524
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_525 = 525
class-attribute
instance-attribute
¶
525
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_526 = 526
class-attribute
instance-attribute
¶
526
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_527 = 527
class-attribute
instance-attribute
¶
527
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_528 = 528
class-attribute
instance-attribute
¶
528
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_529 = 529
class-attribute
instance-attribute
¶
529
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_530 = 530
class-attribute
instance-attribute
¶
530
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_531 = 531
class-attribute
instance-attribute
¶
531
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_532 = 532
class-attribute
instance-attribute
¶
532
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_533 = 533
class-attribute
instance-attribute
¶
533
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_534 = 534
class-attribute
instance-attribute
¶
534
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_535 = 535
class-attribute
instance-attribute
¶
535
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_536 = 536
class-attribute
instance-attribute
¶
536
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_537 = 537
class-attribute
instance-attribute
¶
537
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_538 = 538
class-attribute
instance-attribute
¶
538
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_539 = 539
class-attribute
instance-attribute
¶
539
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_540 = 540
class-attribute
instance-attribute
¶
540
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_541 = 541
class-attribute
instance-attribute
¶
541
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_542 = 542
class-attribute
instance-attribute
¶
542
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_543 = 543
class-attribute
instance-attribute
¶
543
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_544 = 544
class-attribute
instance-attribute
¶
544
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_545 = 545
class-attribute
instance-attribute
¶
545
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_546 = 546
class-attribute
instance-attribute
¶
546
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_547 = 547
class-attribute
instance-attribute
¶
547
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_548 = 548
class-attribute
instance-attribute
¶
548
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_549 = 549
class-attribute
instance-attribute
¶
549
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_550 = 550
class-attribute
instance-attribute
¶
550
-
Purpose: Gives gold generation on kills to certain
Lysander's Raider
,Camel Raider
and probably other units. Similar to resource 520 and 551. -
Defaults:
- 1: Default
UNIT_LOOT_PRODUCTIVITY = 551
class-attribute
instance-attribute
¶
551
-
Purpose: Gain gold per unit killed.
-
Defaults:
- 0: Default
- 1: After Military Policy activated
-
Note: The amount of gold obtained from killing number of units
u
isu * unit_loot_productivity * 3
. Unlike resources 520 and 550 works on most units. Look at A.G.E. for units with 154 loot class task.
UNKNOWN_RESOURCE_552 = 552
class-attribute
instance-attribute
¶
552
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_553 = 553
class-attribute
instance-attribute
¶
553
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_554 = 554
class-attribute
instance-attribute
¶
554
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_555 = 555
class-attribute
instance-attribute
¶
555
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_556 = 556
class-attribute
instance-attribute
¶
556
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_557 = 557
class-attribute
instance-attribute
¶
557
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_558 = 558
class-attribute
instance-attribute
¶
558
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_559 = 559
class-attribute
instance-attribute
¶
559
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_560 = 560
class-attribute
instance-attribute
¶
560
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_561 = 561
class-attribute
instance-attribute
¶
561
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_562 = 562
class-attribute
instance-attribute
¶
562
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_563 = 563
class-attribute
instance-attribute
¶
563
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_564 = 564
class-attribute
instance-attribute
¶
564
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_565 = 565
class-attribute
instance-attribute
¶
565
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_566 = 566
class-attribute
instance-attribute
¶
566
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_567 = 567
class-attribute
instance-attribute
¶
567
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_568 = 568
class-attribute
instance-attribute
¶
568
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_569 = 569
class-attribute
instance-attribute
¶
569
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_570 = 570
class-attribute
instance-attribute
¶
570
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_571 = 571
class-attribute
instance-attribute
¶
571
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_572 = 572
class-attribute
instance-attribute
¶
572
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_573 = 573
class-attribute
instance-attribute
¶
573
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_574 = 574
class-attribute
instance-attribute
¶
574
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_575 = 575
class-attribute
instance-attribute
¶
575
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_576 = 576
class-attribute
instance-attribute
¶
576
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_577 = 577
class-attribute
instance-attribute
¶
577
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_578 = 578
class-attribute
instance-attribute
¶
578
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_579 = 579
class-attribute
instance-attribute
¶
579
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_580 = 580
class-attribute
instance-attribute
¶
580
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_581 = 581
class-attribute
instance-attribute
¶
581
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_582 = 582
class-attribute
instance-attribute
¶
582
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_583 = 583
class-attribute
instance-attribute
¶
583
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_584 = 584
class-attribute
instance-attribute
¶
584
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_585 = 585
class-attribute
instance-attribute
¶
585
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_586 = 586
class-attribute
instance-attribute
¶
586
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_587 = 587
class-attribute
instance-attribute
¶
587
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_588 = 588
class-attribute
instance-attribute
¶
588
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_589 = 589
class-attribute
instance-attribute
¶
589
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_590 = 590
class-attribute
instance-attribute
¶
590
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_591 = 591
class-attribute
instance-attribute
¶
591
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_592 = 592
class-attribute
instance-attribute
¶
592
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_593 = 593
class-attribute
instance-attribute
¶
593
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_594 = 594
class-attribute
instance-attribute
¶
594
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_595 = 595
class-attribute
instance-attribute
¶
595
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_596 = 596
class-attribute
instance-attribute
¶
596
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_597 = 597
class-attribute
instance-attribute
¶
597
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_598 = 598
class-attribute
instance-attribute
¶
598
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_599 = 599
class-attribute
instance-attribute
¶
599
- Purpose: Unknown... What does this resource do?
UNKNOWN_RESOURCE_600 = 600
class-attribute
instance-attribute
¶
600
- Purpose: Unknown... What does this resource do?