File size: 60,624 Bytes
fc85133 | 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 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 | #AVIALABLE CUSTOM LOCALISATION KEYS
#When adding new custom loc keys, add them to the appropriate category (or add a new one) and describe them. Name the strings "String_X" where x is its content.
# To not display anything, you can use 'localisation_key = ""'
# Please add one example sentence for each key.
#As this list grow organize with categories.
#Current loc keys in this file:
#StartScreenUpLeft
#StartScreenUpRight
#StartScreenDownLeft
#StartScreenDownRight
### Main title of start screen
#Ex: "The Empire of Man, 2017"
defined_text = {
name = StartScreenTitle
random = no
text = {
localisation_key = string_screen_title_plural
trigger = {
tag_with_plural_name_trigger = yes
}
}
text = {
localisation_key = string_screen_title_papacy
trigger = {
tag = PAP
}
}
text = {
localisation_key = string_screen_title
trigger = {
always = yes
}
}
}
### Upper left title textbox
#Ex: "Sweden's Situation"
defined_text = {
name = StartScreenUpLeftTitle
random = no # Pick first that fits
#Country Specific:
#Africa
#India
#East Asia:
text = {
localisation_key = string_start_title_great_ming
trigger = {
tag = MNG
}
}
text = {
localisation_key = string_start_title_mongolia
trigger = {
tag = KHA
}
}
text = {
localisation_key = string_start_title_shogunate
trigger = {
has_reform = shogunate
}
}
text = {
localisation_key = string_start_title_daimyo
trigger = {
has_reform = daimyo
}
}
text = {
localisation_key = string_start_title_korea
trigger = {
tag = KOR
}
}
#Americas:
#Europe:
text = {
localisation_key = string_start_title_aragon
trigger = {
tag = ARA
has_ruler = "?��e0t V" # Alfons V
}
}
text = {
localisation_key = string_start_title_denmark
trigger = {
tag = DAN
has_ruler = "KQ̑�eXbV III" # Christopher III
}
}
text = {
localisation_key = string_start_title_ottomans
trigger = {
tag = TUR
}
}
text = {
localisation_key = string_start_title_sweden_norway
trigger = {
OR = {
AND = {
OR = {
tag = SWE
tag = NOR
}
is_subject_of = DAN
}
}
OR = {
tag = GOT
has_ruler = "�W̑KQ VII" # Erik VII
}
}
}
text = {
localisation_key = string_start_title_baltic_orders
trigger = {
OR = {
tag = TEU
tag = LIV
tag = RIG
}
}
}
text = {
localisation_key = string_start_title_austria
trigger = {
tag = HAB
NOT = {
is_year = 1452
}
}
}
text = {
localisation_key = string_start_title_bavarians
trigger = {
OR = {
tag = ING
tag = UBV
tag = LBV
}
NOT = {
is_year = 1445
}
}
}
text = { # Saxony
localisation_key = string_start_title_saxony
trigger = {
tag = SAX
NOT = {
is_year = 1454
}
}
}
text = { # Thuringia
localisation_key = string_start_title_thuringia
trigger = {
tag = THU
NOT = {
is_year = 1454
}
}
}
text = {
localisation_key = string_start_title_hungary
trigger = {
OR = {
tag = HUN
tag = CRO
}
NOT = {
is_year = 1445
}
}
}
text = {
localisation_key = string_start_title_burgundy
trigger = {
tag = BUR
NOT = {
is_year = 1467
}
}
}
text = {
localisation_key = string_start_title_bohemia
trigger = {
tag = BOH
NOT = {
is_year = 1457
}
}
}
text = {
localisation_key = string_start_title_castile
trigger = {
tag = CAS
}
}
text = {
localisation_key = string_start_title_poland
trigger = {
tag = POL
tag = LIT
}
}
text = {
localisation_key = string_start_title_france
trigger = {
tag = FRA
NOT = {
is_year = 1461
}
}
}
text = {
localisation_key = string_start_title_france_fallback
trigger = {
tag = FRA
}
}
text = {
localisation_key = string_start_title_trebizond
trigger = {
tag = TRE
}
}
text = {
localisation_key = string_start_title_provence
trigger = {
tag = PRO
}
}
text = {
localisation_key = string_start_title_brittany
trigger = {
tag = BRI
}
}
text = {
localisation_key = string_start_title_hanseatic
trigger = {
OR = {
tag = HAM
tag = BRE
tag = HSA
}
}
}
text = {
localisation_key = string_start_title_byzantium
trigger = {
tag = BYZ
}
}
text = {
localisation_key = string_start_title_naples
trigger = {
tag = NAP
}
}
text = {
localisation_key = string_start_title_genoa
trigger = {
tag = GEN
}
}
#Middle & Near East
text = {
localisation_key = string_start_title_hisn_kayfa
trigger = {
tag = HSN
dynasty = "?�2S^" # Ayyubid
}
}
text = {
localisation_key = string_start_title_georgia_imereti
trigger = {
OR = {
tag = GEO
tag = IME
}
NOT = {
is_year = 1490
}
}
}
text = {
localisation_key = string_start_title_samtskhe
trigger = {
tag = SME
NOT = {
is_year = 1490
}
}
}
#Generic:
text = {
localisation_key = string_start_title_horde
trigger = {
has_reform = steppe_horde
}
}
text = {
localisation_key = string_start_title_monarchy_regency # Actually same as fallback
trigger = {
has_regency = yes
OR = {
government = monarchy
government = tribal
}
}
}
text = {
localisation_key = string_start_title_monarchy_plural
trigger = { # has_regency = no
government = monarchy
tag_with_plural_name_trigger = yes
}
}
text = {
localisation_key = string_start_title_monarchy
trigger = { # has_regency = no
government = monarchy
}
}
text = {
localisation_key = string_start_title_republic
trigger = {
government = republic
}
}
text = {
localisation_key = string_start_title_theocracy
trigger = {
government = theocracy
}
}
text = {
localisation_key = string_start_title_native_council
trigger = {
government = native
}
}
#Final Fallback
text = {
localisation_key = string_start_title_fallback
trigger = {
always = yes
}
}
}
### Upper right title textbox
#Ex: "Muscovy is Orthodox"
defined_text = {
name = StartScreenUpRightTitle
random = no
text = {
localisation_key = string_start_religion_mechanic_title_plural
trigger = {
tag_with_plural_name_trigger = yes
}
}
text = {
localisation_key = string_start_religion_mechanic_title
trigger = {
always = yes
}
}
}
### Lower left title textbox
#Ex: "Sweden is a Swedish Kingdom"
defined_text = {
name = StartScreenDownLeftTitle
random = no
text = {
localisation_key = string_start_culture_government_title_plural
trigger = {
tag_with_plural_name_trigger = yes
}
}
text = {
localisation_key = string_start_culture_government_title
trigger = {
always = yes
}
}
}
### Lower right title textbox
#Ex: "The Island of Japan"
defined_text = {
name = StartScreenDownRightTitle
random = no
text = {
localisation_key = string_start_east_asia_moh_title # Japan, Eoc and Tributaries
trigger = {
has_dlc = "Mandate of Heaven"
capital_scope = {
OR = {
region = mongolia_region
region = manchuria_region
region = east_siberia_region
region = tibet_region
area = shanshan_area
area = tarim_basin_area
superregion = far_east_superregion
superregion = china_superregion
superregion = east_indies_superregion
}
}
}
}
text = {
localisation_key = string_start_east_asia_title # Japan
trigger = {
capital_scope = {
OR = {
region = mongolia_region
region = manchuria_region
region = east_siberia_region
region = tibet_region
area = shanshan_area
area = tarim_basin_area
superregion = far_east_superregion
superregion = china_superregion
superregion = east_indies_superregion
}
}
}
}
text = {
localisation_key = string_start_europe # The HRE
trigger = {
capital_scope = {
continent = europe
}
}
}
text = {
localisation_key = string_start_no_special_region_title
trigger = {
always = yes
}
}
}
defined_text = {
name = capital_continent_title
random = no
text = {
localisation_key = asia # Asia
trigger = {
capital_scope = {
continent = asia
}
}
}
text = {
localisation_key = europe # Europe
trigger = {
capital_scope = {
continent = europe
}
}
}
text = {
localisation_key = africa
trigger = {
capital_scope = {
continent = africa
}
}
}
text = {
localisation_key = north_america
trigger = {
capital_scope = {
continent = north_america
}
}
}
text = {
localisation_key = south_america
trigger = {
capital_scope = {
continent = south_america
}
}
}
text = {
localisation_key = oceania
trigger = {
capital_scope = {
continent = oceania
}
}
}
text = {
localisation_key = new_world
trigger = {
capital_scope = {
continent = new_world
}
}
}
}
### Upper left description textbox
#Ex: "The Ayyubid dynasty, once the scourge of Christianity, and the masters of Syria, Egypt and Arabia, still remain in the Kurdistani fortress of Hisn Kayfa. Fiercely independent, the small state has managed to survive in independence amidst giants such as the Timurids or Qara Qoyunlu.\nAs 1444 opens the Ayyubid princes have recently managed to overcome their local rivals and former vassals, the Artuqids, and solidified their hold over their small principality by the Tigris."
defined_text = {
name = StartScreenUpLeftDesc
random = no
#Later Start Dates
text = {
localisation_key = string_start_age_of_reformation
trigger = {
current_age = age_of_reformation
}
}
text = {
localisation_key = string_start_age_of_absolutism
trigger = {
current_age = age_of_absolutism
}
}
text = {
localisation_key = string_start_age_of_revolutions
trigger = {
current_age = age_of_revolutions
}
}
#Country Specific:
#Africa
text = { # Maghreb
localisation_key = string_start_maghreb
trigger = {
OR = {
tag = GRA
culture_group = maghrebi
capital_scope = {
region = maghreb_region
}
}
NOT = {
is_year = 1445
}
}
}
text = { # Mali
localisation_key = string_start_mali
trigger = {
tag = MAL
}
}
text = { # Songhai
localisation_key = string_start_songhai
trigger = {
tag = SON
}
}
text = { # Jolof
localisation_key = string_start_jolof
trigger = {
tag = JOL
}
}
text = { # Mossi States
localisation_key = string_start_mossi
trigger = {
primary_culture = mossi
}
}
text = { # Hausa States
localisation_key = string_start_hausa
trigger = {
primary_culture = hausa
}
}
text = { # Oyo
localisation_key = string_start_oyo
trigger = {
tag = OYO
}
}
text = { # Ethiopia
localisation_key = string_start_ethiopia
trigger = {
tag = ETH
}
}
text = { # Adal
localisation_key = string_start_adal
trigger = {
tag = ADA
}
}
text = { # Ajuuraan
localisation_key = string_start_ajuuraan
trigger = {
tag = AJU
}
}
text = { # Kilwa
localisation_key = string_start_kilwa
trigger = {
tag = ZAN
}
}
text = { # Mutapa
localisation_key = string_start_mutapa
trigger = {
tag = ZIM
}
}
text = { # Kongo
localisation_key = string_start_kongo
trigger = {
tag = KON
}
}
#India
#East Asia:
text = { # Great Ming
localisation_key = string_start_great_ming
trigger = {
tag = MNG
}
}
text = { # Korea
localisation_key = string_start_korea
trigger = {
tag = KOR
}
}
text = { # Jurchens
localisation_key = string_start_jurchens
trigger = {
OR = {
tag = MJZ
tag = MYR
tag = MHX
tag = NHX
tag = EJZ
}
}
}
text = { # Mongols
localisation_key = string_start_mongolia
trigger = {
capital_scope = {
region = mongolia_region
}
}
}
text = { # Philippines
localisation_key = string_start_philippines
trigger = {
OR = {
tag = PGS
tag = MNA
tag = MAS
tag = CEB
tag = MGD
tag = BTU
tag = LNO
tag = SUL
}
}
}
#Japan
text = { # Ashikaga
localisation_key = string_start_ashikaga
trigger = {
tag = ASK
NOT = {
is_year = 1468
}
}
}
text = { # Hatakeyama
localisation_key = string_start_hatakeyama
trigger = {
tag = HTK
NOT = {
is_year = 1468
}
}
}
text = { # Shiba
localisation_key = string_start_shiba
trigger = {
tag = SBA
NOT = {
is_year = 1468
}
}
}
text = { # Central Japan
localisation_key = string_start_central_japan
trigger = {
OR = {
tag = TKD
tag = IMG
tag = TKI
tag = ISK
tag = KTB
tag = ODA
tag = TKG
tag = OGS
tag = TTI
}
NOT = {
is_year = 1468
}
}
}
text = { # Northern Japan
localisation_key = string_start_northern_japan
trigger = {
OR = {
tag = DTE
tag = RFR
tag = AKT
}
NOT = {
is_year = 1468
}
}
}
text = { # Eastern Japan
localisation_key = string_start_eastern_japan
trigger = {
primary_culture = togoku
NOT = {
is_year = 1468
}
}
}
text = { # Western Japan
localisation_key = string_start_western_japan
trigger = {
OR = {
primary_culture = japanese # Saigoku
primary_culture = kyushuan
}
NOT = {
is_year = 1468
}
}
}
#South East Asia
text = { # Majapahit
localisation_key = string_start_majapahit
trigger = {
tag = MAJ
}
}
text = { # Palembang
localisation_key = string_start_palembang
trigger = {
tag = PLB
}
}
text = { # Tondo
localisation_key = string_start_tondo
trigger = {
tag = TDO
}
}
text = { # Dai Viet
localisation_key = string_start_dai_viet
trigger = {
tag = DAI
}
}
text = { # Khmer
localisation_key = string_start_khmer
trigger = {
tag = KHM
}
}
text = { # Ayutthaya
localisation_key = string_start_ayutthaya
trigger = {
tag = AYU
}
}
text = { # Pegu
localisation_key = string_start_pegu
trigger = {
tag = PEG
}
}
#Americas:
text = { # Aztecs
localisation_key = string_start_aztecs
trigger = {
religion = nahuatl
is_random_new_world = no
}
}
text = { # Mayans
localisation_key = strong_start_mayans
trigger = {
religion = mesoamerican_religion
is_random_new_world = no
}
}
text = { # Iroquois
localisation_key = string_start_iroquois
trigger = {
tag = IRO
is_random_new_world = no
}
}
text = { # Huron
localisation_key = string_start_huron
trigger = {
tag = HUR
is_random_new_world = no
}
}
text = { # Anishinaabe
localisation_key = string_start_anishinaabe
trigger = {
OR = {
tag = OTT
tag = OJI
tag = POT
}
is_random_new_world = no
}
}
text = { # Edge of the Plains
localisation_key = string_start_edge_of_the_plains
trigger = {
OR = {
tag = SIO
tag = CHY
tag = COM
tag = ARP
tag = ASI
tag = KIO
}
is_random_new_world = no
}
}
text = { # Plain Dwellers
localisation_key = string_start_plain_dwellers
trigger = {
OR = {
tag = WIC
tag = PAW
}
is_random_new_world = no
}
}
text = { # Osage
localisation_key = string_start_osage
trigger = {
tag = OSA
is_random_new_world = no
}
}
text = { # Cherokee
localisation_key = string_start_cherokee
trigger = {
tag = CHE
is_random_new_world = no
}
}
text = { # Creek
localisation_key = string_start_creek
trigger = {
tag = CRE
is_random_new_world = no
}
}
text = { # Chickasaw and Choctaw
localisation_key = string_start_chikasaw_choctaw
trigger = {
OR = {
tag = CHI
tag = CHO
}
is_random_new_world = no
}
}
text = { # Cusco
localisation_key = string_start_cusco
trigger = {
tag = CSU
is_random_new_world = no
}
}
#Europe:
text = { # Aragon
localisation_key = string_start_aragon
trigger = {
tag = ARA
has_ruler = "?��e0t V" # Alfons V
}
}
text = { # Romania
localisation_key = string_start_romania
trigger = {
OR = {
tag = MOL
tag = WAL
}
NOT = {
is_year = 1447
}
}
}
text = { # Poland
localisation_key = string_start_poland
trigger = {
OR = {
tag = POL
tag = LIT
}
NOT = {
is_year = 1447
}
}
}
text = { # Austria
localisation_key = string_start_austria
trigger = {
tag = HAB
NOT = {
is_year = 1457
}
}
}
text = { # Bavarians
localisation_key = string_start_bavaria
trigger = {
OR = {
tag = ING
tag = UBV
tag = LBV
}
NOT = {
is_year = 1445
}
}
}
text = { # Saxony
localisation_key = string_start_saxony
trigger = {
OR = {
tag = SAX
tag = THU
}
NOT = {
is_year = 1454
}
}
}
text = { # Milan
localisation_key = string_start_milan
trigger = {
tag = MLO
NOT = {
is_year = 1445
}
}
}
text = { # Hungary
localisation_key = string_start_hungary
trigger = {
OR = {
tag = HUN
tag = CRO
}
NOT = {
is_year = 1445
}
}
}
text = { # Sweden
localisation_key = string_start_sweden
trigger = {
tag = SWE
NOT = {
is_year = 1448
}
}
}
text = { # Castile
localisation_key = string_start_castile
trigger = {
tag = CAS
NOT = {
is_year = 1490
}
}
}
text = { # Burgundy
localisation_key = string_start_burgundy
trigger = {
tag = BUR
NOT = {
is_year = 1467
}
}
}
text = { # Bohemia
localisation_key = string_start_bohemia
trigger = {
tag = BOH
NOT = {
is_year = 1457
}
}
}
text = { # France
localisation_key = string_start_france
trigger = {
tag = FRA
NOT = {
is_year = 1448
}
}
}
text = { # Denmark
localisation_key = string_start_denmark
trigger = {
tag = DAN
NOT = {
is_year = 1448
}
}
}
text = { # Portugal
localisation_key = string_start_portugal
trigger = {
tag = POR
NOT = {
is_year = 1446
}
}
}
text = { # England
localisation_key = string_start_england
trigger = {
tag = ENG
NOT = {
is_year = 1448
}
}
}
text = { # Brandenburg
localisation_key = string_start_brandenburg
trigger = {
tag = BRA
NOT = {
is_year = 1445
}
}
}
text = { # Muscovy
localisation_key = string_start_muscovy
trigger = {
tag = MOS
NOT = {
is_year = 1460
}
}
}
text = { # Irish Minors
localisation_key = string_start_irish_minors
trigger = {
OR = {
tag = CNN
tag = LEI
tag = MNS
tag = TYR
tag = MTH
tag = ULS
tag = DMS
tag = SLN
tag = KID
tag = ORD
tag = TRY
tag = FLY
tag = MCM
}
NOT = {
is_year = 1460
}
}
}
text = { # Scotland
localisation_key = string_start_scotland
trigger = {
tag = SCO
NOT = {
is_year = 1461
}
}
}
text = { # Brittany
localisation_key = string_start_brittany
trigger = {
tag = BRI
NOT = {
is_year = 1488
}
}
}
text = { # Provence
localisation_key = string_start_provence
trigger = {
tag = PRO
NOT = {
is_year = 1481 # death of Rene
}
}
}
text = { # Papal State
localisation_key = string_start_papal_state
trigger = {
OR = {
tag = PAP
tag = PGA
tag = URB
}
}
}
text = { # Lantus
localisation_key = string_start_LANTUS
trigger = {
OR = {
tag = LAN
tag = SIE
tag = LUC
}
NOT = {
is_year = 1569
}
}
}
text = { # Dutch Minors
localisation_key = string_start_dutch_minors
trigger = {
OR = {
tag = HOL
tag = BRB
tag = FLA
tag = FRI
tag = UTR
tag = GEL
}
NOT = {
is_year = 1467
}
}
}
text = { # Venice
localisation_key = string_start_venice
trigger = {
tag = VEN
}
}
text = { # Hanseatic
localisation_key = string_start_hanseatic
trigger = {
OR = {
tag = HSA
tag = BRE
tag = HAM
}
}
}
text = { # Byzantium
localisation_key = string_start_byzantium
trigger = {
tag = BYZ
}
}
text = { # Naples
localisation_key = string_start_naples
trigger = {
tag = NAP
}
}
text = { # Genoa
localisation_key = string_start_genoa
trigger = {
tag = GEN
}
}
text = { # Norway
localisation_key = string_start_norway
trigger = {
tag = NOR
NOT = {
is_year = 1448
}
}
}
text = { # Teutonic Order
localisation_key = string_start_teutonic_order
trigger = {
tag = TEU
NOT = {
is_year = 1525
}
}
}
text = { # Livonian Order
localisation_key = string_start_livonian_order
trigger = {
tag = LIV
NOT = {
is_year = 1561
}
}
}
text = { # Riga
localisation_key = string_start_riga
trigger = {
tag = RIG
NOT = {
is_year = 1581
}
}
}
text = { # Gotland
localisation_key = string_start_gotland
trigger = {
tag = GOT
NOT = {
is_year = 1449
}
}
}
#Middle & Near East
text = { # The Tatar Hordes
localisation_key = string_start_tatars
trigger = {
OR = {
tag = KAZ
tag = GOL
tag = CRI
tag = SHY
tag = NOG
}
NOT = {
is_year = 1466
}
}
}
text = { # The Ottoman Empire
localisation_key = string_start_ottomans
trigger = {
tag = TUR
NOT = {
is_year = 1448
}
}
}
text = { # The Mamluk Sultanate
localisation_key = string_start_mamluks_history
trigger = {
tag = MAM
NOT = {
is_year = 1450
}
}
}
text = { # Timurids
localisation_key = string_start_timurids
trigger = {
tag = TIM
NOT = {
is_year = 1446
}
}
}
text = { # Qara Qoyunlu
localisation_key = string_start_qara_qoyunlu
trigger = {
tag = QAR
NOT = {
is_year = 1446
}
}
}
text = { # Aq Qoyunlu
localisation_key = string_start_aq_qoyunlu
trigger = {
tag = AKK
NOT = {
is_year = 1446
}
}
}
text = { # Khorasan
localisation_key = string_start_khorasan
trigger = {
tag = KHO
NOT = {
is_year = 1446
}
}
}
text = { # Transoxiana
localisation_key = string_start_transoxiana
trigger = {
tag = TRS
NOT = {
is_year = 1446
}
}
}
text = { # Hisn Kayfa
localisation_key = string_start_hisn_kayfa
trigger = {
tag = HSN
NOT = {
is_year = 1450
}
}
}
text = { # Kharabakh
localisation_key = string_start_kharabakh
trigger = {
tag = MLK
}
}
text = { # The Georgian tags
localisation_key = string_start_georgia
trigger = {
NOT = {
is_year = 1450
}
OR = {
tag = GEO
tag = IME
tag = SME
}
}
}
text = { # States of Yemen
localisation_key = string_start_yemen
trigger = {
OR = {
tag = YEM
tag = ADE
tag = RAS
}
}
}
text = { # Ajam
localisation_key = string_start_ajam
trigger = {
tag = QOM
}
}
text = { # Ardabil
localisation_key = string_start_ardabil
trigger = {
tag = ARL
}
}
text = { # Theodoro
localisation_key = string_start_theodoro
trigger = {
tag = FEO
}
}
text = { # Theodoro
localisation_key = string_start_oman_hormuz
trigger = {
OR = {
tag = ORM
tag = OMA
}
}
}
# India
text = { # The remnants of Delhi
localisation_key = string_start_delhi
trigger = {
OR = {
tag = DLH
tag = SRH
tag = JNP
}
NOT = {
is_year = 1450 # Lodi becomes Sultan
}
}
}
text = { # Vijayanagar
localisation_key = string_start_vijayanagar
trigger = {
tag = VIJ
NOT = {
is_year = 1450
}
}
}
text = { # Bengal
localisation_key = string_start_bengal
trigger = {
tag = BNG
NOT = {
is_year = 1450
}
}
}
text = { # Bahmanis
localisation_key = string_start_bahmanis
trigger = {
tag = BAH
NOT = {
is_year = 1450
}
}
}
#Regions
text = { # North India
localisation_key = string_start_tag_north_india
trigger = {
capital_scope = {
OR = {
region = hindusthan_region
region = west_india_region
area = north_bengal_area
area = naga_hills_area
area = assam_area
area = tripura_area
}
}
NOT = {
is_year = 1450
}
}
}
text = { # South India
localisation_key = string_start_tag_south_india
trigger = {
capital_scope = {
OR = {
region = deccan_region
region = coromandel_region
region = bengal_region # The ones that didn't already get the above one.
}
}
NOT = {
is_year = 1450
}
}
}
text = { # Horn of Africa
localisation_key = string_start_tag_horn_of_africa
trigger = {
capital_scope = {
region = horn_of_africa_region
}
}
}
text = { # West Africa
localisation_key = string_start_tag_north_west_africa
trigger = {
capital_scope = {
OR = {
region = niger_region
region = guinea_region
region = sahel_region
}
}
}
}
text = { # Central Africa
localisation_key = string_start_tag_central_africa
trigger = {
capital_scope = {
OR = {
region = central_africa_region
region = kongo_region
}
}
}
}
text = { # East Africa
localisation_key = string_start_tag_east_africa
trigger = {
capital_scope = {
OR = {
region = south_africa_region
region = east_africa_region
}
}
}
}
text = { # Arabia
localisation_key = string_start_tag_arabia
trigger = {
capital_scope = {
region = arabia_region
}
}
}
text = { # Central Asia
localisation_key = string_start_tag_central_asia
trigger = {
capital_scope = {
region = central_asia_region
}
}
}
#Super Regions
text = { # India
localisation_key = string_start_tag_india
trigger = {
capital_scope = {
superregion = india_superregion
}
}
}
text = { # Far East
localisation_key = string_start_tag_far_east
trigger = {
capital_scope = {
OR = {
superregion = far_east_superregion
superregion = china_superregion
region = tibet_region
region = mongolia_region
region = manchuria_region
}
}
}
}
text = { # South East Asia
localisation_key = string_start_tag_south_east_asia
trigger = {
capital_scope = {
superregion = east_indies_superregion
}
}
}
text = { # Central America
localisation_key = string_start_tag_central_america
trigger = {
capital_scope = {
superregion = central_america_superregion
}
}
}
text = { # Middle East
localisation_key = string_start_tag_middle_east
trigger = {
capital_scope = {
OR = {
superregion = near_east_superregion
superregion = persia_superregion
}
}
}
}
#Continents
text = { # Europe
localisation_key = string_start_tag_europe
trigger = {
capital_scope = {
continent = europe
}
}
}
text = { # Asia
localisation_key = string_start_tag_asia
trigger = {
capital_scope = {
continent = asia
}
}
}
text = { # Africa
localisation_key = string_start_tag_africa
trigger = {
capital_scope = {
continent = africa
}
}
}
text = { # North America
localisation_key = string_start_tag_north_america
trigger = {
capital_scope = {
continent = north_america
}
}
}
text = { # South America
localisation_key = string_start_tag_south_america
trigger = {
capital_scope = {
continent = south_america
}
}
}
text = { # Oceania
localisation_key = string_start_tag_oceania
trigger = {
capital_scope = {
continent = oceania
}
}
}
text = { # Random New World
localisation_key = string_start_tag_rnw
trigger = {
capital_scope = {
continent = new_world
}
}
}
text = { # Fallback
localisation_key = string_start_tag_generic
trigger = {
always = yes
}
}
}
### Upper right description textbox
#Ex: ""
defined_text = {
name = StartScreenUpRightDesc
random = no
#Religion Mechanics - Base Text, these refer to custom loc keys below to insert DLC specific information.
#Christians:
#Orthodox (Patriarch Authority)
text = {
localisation_key = string_start_religion_orthodox
trigger = {
religion = orthodox
}
}
#Catholics (Papacy & The Reformation)
text = {
localisation_key = string_start_religion_catholic
trigger = {
religion = catholic
}
}
#Hussite (The Reformation)
text = {
localisation_key = string_start_religion_hussite
trigger = {
religion = hussite
}
}
#Protestant (The Reformation)
text = {
localisation_key = string_start_religion_protestant
trigger = {
religion = protestant
}
}
#Reformed (The Reformation)
text = {
localisation_key = string_start_religion_reformed
trigger = {
religion = reformed
}
}
#Coptic
text = {
localisation_key = string_start_religion_coptic
trigger = {
religion = coptic
}
}
#Muslims (Piety):
text = {
localisation_key = string_start_religion_muslim_sunni
trigger = {
religion = sunni
}
}
text = {
localisation_key = string_start_religion_muslim_shiite
trigger = {
religion = shiite
}
}
text = {
localisation_key = string_start_religion_muslim_ibadi
trigger = {
religion = ibadi
}
}
#Eastern - Buddhists
text = {
localisation_key = string_start_religion_buddhist_theravada
trigger = {
religion = buddhism # Theravada
}
}
text = {
localisation_key = string_start_religion_buddhist_mahayana
trigger = {
religion = mahayana
}
}
text = {
localisation_key = string_start_religion_buddhist_vajrayana
trigger = {
religion = vajrayana
}
}
#Confucian
text = {
localisation_key = string_start_religion_confucianism
trigger = {
religion = confucianism
}
}
#Shinto
text = {
localisation_key = string_start_religion_shinto
trigger = {
religion = shinto
}
}
#Hindu
text = {
localisation_key = string_start_religion_hindu
trigger = {
religion = hinduism
}
}
#Sikh
text = {
localisation_key = string_start_religion_sikh
trigger = {
religion = sikhism
}
}
#Fetishist
text = {
localisation_key = string_start_religion_fetishist
trigger = {
religion = shamanism # Fetishist
}
}
#Fetishist
text = {
localisation_key = string_start_religion_tengri
trigger = {
religion = tengri_pagan_reformed # Tengri
}
}
#Inti
text = {
localisation_key = string_start_religion_inti
trigger = {
religion = inti
}
}
#Nahuatl
text = {
localisation_key = string_start_religion_nahuatl
trigger = {
religion = nahuatl
}
}
#Mayan
text = {
localisation_key = string_start_religion_mayan
trigger = {
religion = mesoamerican_religion
}
}
#Zoroastrianism
text = {
localisation_key = string_start_religion_zoroastrian
trigger = {
religion = zoroastrian
}
}
#Norse
text = {
localisation_key = string_start_religion_norse
trigger = {
religion = norse_pagan_reformed
}
}
#Totemism
text = {
localisation_key = string_start_religion_totemism
trigger = {
religion = totemism
}
}
#Alcheringa
text = {
localisation_key = string_start_religion_dreamtime
trigger = {
religion = dreamtime # Alcheringa
}
}
#Judaism
text = {
localisation_key = string_start_religion_jewish
trigger = {
religion = jewish
}
}
#Fallback (Currently used by Animism)
text = {
localisation_key = string_start_religion_fallback
trigger = {
always = yes
}
}
}
#Describing the bonuses from this religion (not really a dynamic key, just used to make the texts more modular and easier to edit).
defined_text = {
name = start_religion_intro
random = no
text = {
localisation_key = string_start_religion_intro_text
trigger = {
always = yes
}
}
}
#DLC Mechanics (these keys are inserted into the keys above, see the localization file)
#Muslim Schools
defined_text = {
name = start_religion_muslim_dlc_check
random = no
text = {
localisation_key = string_muslim_school # Has to end with \n
trigger = {
religion_group = muslim
has_dlc = "Cradle of Civilization"
}
}
text = {
localisation_key = string_muslim_school_no # \n
trigger = {
NOT = {
has_dlc = "Cradle of Civilization"
}
}
}
}
#Iconography & Consecrate Patriarchs
defined_text = {
name = start_religion_orthodox_dlc_check
random = no
text = {
localisation_key = string_orthodox_icons # Has to end with \n
trigger = {
religion = orthodox
has_dlc = "Third Rome"
}
}
text = {
localisation_key = string_orthodox_icons_no # \n
trigger = {
religion = orthodox
NOT = {
has_dlc = "Third Rome"
}
}
}
}
#Tordesillas
defined_text = {
name = start_religion_catholic_tordesillas
random = no
text = {
localisation_key = string_catholic_tordesillas # Has to end with \n
trigger = {
religion = catholic
has_dlc = "El Dorado"
}
}
text = {
localisation_key = string_catholic_tordesillas_no # \n
trigger = {
religion = catholic
NOT = {
has_dlc = "El Dorado"
}
}
}
}
#Church Power
defined_text = {
name = start_protestant_hussite_church_power
random = no
text = {
localisation_key = string_church_power_info # Has to end with \n
trigger = {
religion = protestant
has_dlc = "Common Sense"
}
}
text = {
localisation_key = string_church_power_hussite_info # Has to end with \n
trigger = {
religion = hussite
has_dlc = "Emperor"
}
}
text = {
localisation_key = string_church_power_info_no # \n
trigger = {
religion = protestant
NOT = {
has_dlc = "Common Sense"
}
}
}
text = {
localisation_key = string_hussite_power_info_no # \n
trigger = {
religion = hussite
NOT = {
has_dlc = "Emperor"
}
}
}
}
#Fervor
defined_text = {
name = start_reformed_fervor
random = no
text = {
localisation_key = string_fervor_info # Has to end with \n
trigger = {
religion = reformed
has_dlc = "Wealth of Nations"
}
}
text = {
localisation_key = string_fervor_info_no # \n
trigger = {
religion = reformed
NOT = {
has_dlc = "Wealth of Nations"
}
}
}
}
#Coptic / Zoroastrian Blessings
defined_text = {
name = start_coptic_zoroastrian_blessings
random = no
text = {
localisation_key = string_blessings_info # Has to end with \n
trigger = {
religion = coptic
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_blessings_info_no # \n
trigger = {
religion = coptic
NOT = {
has_dlc = "Rights of Man"
}
}
}
text = {
localisation_key = string_rituals_info # Has to end with \n
trigger = {
religion = zoroastrian
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_rituals_info_no # \n
trigger = {
religion = zoroastrian
NOT = {
has_dlc = "Rights of Man"
}
}
}
}
#Buddhist Karma
defined_text = {
name = start_buddhist_karma
random = no
text = {
localisation_key = string_karma_info # Has to end with \n
trigger = {
OR = {
religion = buddhism
religion = mahayana
religion = vajrayana
}
has_dlc = "Common Sense"
}
}
text = {
localisation_key = string_karma_info_no # \n
trigger = {
OR = {
religion = buddhism
religion = mahayana
religion = vajrayana
}
NOT = {
has_dlc = "Common Sense"
}
}
}
}
#Confucian Harmonization
defined_text = {
name = start_confucian_harmonization
random = no
text = {
localisation_key = string_harmonization_info # Has to end with \n
trigger = {
religion = confucianism
has_dlc = "Mandate of Heaven"
}
}
text = {
localisation_key = string_harmonization_info_no # \n
trigger = {
religion = confucianism
NOT = {
has_dlc = "Mandate of Heaven"
}
}
}
}
#Shinto Isolationism
defined_text = {
name = start_shinto_isolationism
random = no
text = {
localisation_key = string_isolationism_info # Has to end with \n
trigger = {
religion = shinto
has_dlc = "Mandate of Heaven"
}
}
text = {
localisation_key = string_isolationism_info_no # \n
trigger = {
religion = shinto
NOT = {
has_dlc = "Mandate of Heaven"
}
}
}
}
#Hindu Deities
defined_text = {
name = start_hindu_deities
random = no
text = {
localisation_key = string_deities_info # Has to end with \n
trigger = {
religion = hinduism
has_dlc = "Wealth of Nations"
}
}
text = {
localisation_key = string_deities_info_no # \n
trigger = {
religion = hinduism
NOT = {
has_dlc = "Wealth of Nations"
}
}
}
}
#Fetishist Cults
defined_text = {
name = start_fetishist_alcheringa_cults
random = no
text = {
localisation_key = string_cults_info # Has to end with \n
trigger = {
religion = shamanism
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_cults_info_no # \n
trigger = {
religion = shamanism
NOT = {
has_dlc = "Rights of Man"
}
}
}
text = {
localisation_key = string_stories_info # Has to end with \n
trigger = {
religion = dreamtime
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_stories_info_no # \n
trigger = {
religion = dreamtime
NOT = {
has_dlc = "Rights of Man"
}
}
}
}
#Tengri Syncretism
defined_text = {
name = start_tengri_syncretism
random = no
text = {
localisation_key = string_syncretism_info # Has to end with \n
trigger = {
religion = tengri_pagan_reformed # Tengri
has_dlc = "The Cossacks"
}
}
text = {
localisation_key = string_syncretism_info_no # \n
trigger = {
religion = tengri_pagan_reformed # Tengri
NOT = {
has_dlc = "The Cossacks"
}
}
}
}
#Inti Authority
defined_text = {
name = start_inti_authority
random = no
text = {
localisation_key = string_authority_info # Has to end with \n
trigger = {
religion = inti
has_dlc = "El Dorado"
}
}
text = {
localisation_key = string_authority_info_no # \n
trigger = {
religion = inti
NOT = {
has_dlc = "El Dorado"
}
}
}
}
#Nahuatl DOOM!
defined_text = {
name = start_nahuatl_doom
random = no
text = {
localisation_key = string_doom_info # Has to end with \n
trigger = {
religion = nahuatl
has_dlc = "El Dorado"
}
}
text = {
localisation_key = string_doom_info_no # \n
trigger = {
religion = nahuatl
NOT = {
has_dlc = "El Dorado"
}
}
}
}
#Mayan Mechanics
defined_text = {
name = start_mayan_mechanics
random = no
text = {
localisation_key = string_mayan_info # Has to end with \n
trigger = {
religion = mesoamerican_religion
has_dlc = "El Dorado"
}
}
text = {
localisation_key = string_mayan_info_no # \n
trigger = {
religion = mesoamerican_religion
NOT = {
has_dlc = "El Dorado"
}
}
}
}
#Totemism Ancestors
defined_text = {
name = start_totemism_ancestor
random = no
text = {
localisation_key = string_ancestor_info # Has to end with \n
trigger = {
religion = totemism
has_dlc = "Leviathan"
}
}
text = {
localisation_key = string_ancestor_info_no # \n
trigger = {
religion = totemism
NOT = {
has_dlc = "Leviathan"
}
}
}
}
#Jewish Aspects
defined_text = {
name = start_judaism_aspects
random = no
text = {
localisation_key = string_jewish_aspects_info # Has to end with \n
trigger = {
religion = jewish
has_dlc = "Origins"
}
}
text = {
localisation_key = string_jewish_aspects_info_no # \n
trigger = {
religion = jewish
NOT = {
has_dlc = "Origins"
}
}
}
}
### Lower left description textbox
#Ex: "As a Russian Nation Muscovy has...."
defined_text = {
name = StartScreenDownLeftDesc
random = no
text = {
localisation_key = string_government_culture_explanation
trigger = {
always = yes
}
}
}
#Culture specific Mechanics
defined_text = {
name = startup_culture_explanation
random = no
text = {
localisation_key = string_manchu_culture
trigger = {
primary_culture = manchu
has_dlc = "Mandate of Heaven"
}
}
text = {
localisation_key = string_no_special_culture
trigger = {
always = yes
}
}
}
#Base Government Explanation
defined_text = {
name = startup_government_explanation
random = no
text = {
localisation_key = string_start_government_monarchy_regency
trigger = {
has_regency = yes
government = monarchy
}
}
text = {
localisation_key = string_start_government_monarchy
trigger = {
government = monarchy
}
}
text = {
localisation_key = string_start_government_republic
trigger = {
government = republic
}
}
text = {
localisation_key = string_start_government_papacy
trigger = {
has_reform = papacy_reform
}
}
text = {
localisation_key = string_start_government_theocracy
trigger = {
government = theocracy
}
}
text = {
localisation_key = string_start_government_native_councils_plural
trigger = {
tag_with_plural_name_trigger = yes
OR = {
has_reform = siberian_tribe
government = native
}
}
}
text = {
localisation_key = string_start_government_native_councils
trigger = {
OR = {
has_reform = siberian_tribe
government = native
}
}
}
}
defined_text = {
name = startup_government_heirs
random = no
text = {
localisation_key = string_start_government_heirs
trigger = {
government = monarchy
NOT = {
has_reform = mamluk_government
}
NOT = {
has_reform = steppe_horde
}
}
}
text = {
localisation_key = string_start_government_horde_heirs
trigger = {
government = monarchy
has_reform = steppe_horde
}
}
text = {
localisation_key = string_start_government_heirs_no
trigger = {
always = yes
}
}
}
#Factions for Merchant & Veche Republics, Celestial Empire, Revolutionary Republic
defined_text = {
name = startup_government_factions
random = no
text = {
localisation_key = string_start_factions
trigger = {
OR = {
has_government_attribute = is_merchant_republic
has_reform = veche_republic
AND = {
has_reform = celestial_empire
NOT = {
has_dlc = "Mandate of Heaven"
}
}
AND = {
is_revolutionary_republic_trigger = yes
has_dlc = "Rights of Man"
}
}
}
}
text = {
localisation_key = string_start_factions_no
trigger = {
always = yes
}
}
}
defined_text = {
name = startup_estates_explanation
random = no
text = {
localisation_key = string_startup_estates_explanation_cossacks
trigger = {
has_dlc = "The Cossacks"
has_estate = estate_cossacks
}
}
text = {
localisation_key = string_startup_estates_explanation
trigger = {
has_estate = yes
NOT = {
has_estate = estate_cossacks
}
}
}
text = {
localisation_key = string_startup_estates_explanation_no
trigger = {
always = yes
}
}
}
#Tribal Reforms
defined_text = {
name = startup_government_tribal
random = no
text = {
localisation_key = string_tribal_reform
trigger = {
government = tribal
}
}
text = {
localisation_key = string_tribal_reform_no
trigger = {
always = yes
}
}
}
#Tribal Federations don't get institution spread penalties.
defined_text = {
name = startup_government_tribal_institution_penalty
random = no
text = {
localisation_key = string_tribal_institution_penalty
trigger = {
NOT = {
has_reform = tribal_federation
}
}
}
text = {
localisation_key = string_tribal_institution_penalty_no
trigger = {
always = yes
}
}
}
#DLC Content Explanation
#Consorts
defined_text = {
name = startup_consorts_explanation
random = no
text = {
localisation_key = string_start_consorts
trigger = {
government = monarchy
NOT = {
has_reform = iqta
}
NOT = {
has_reform = steppe_horde
}
NOT = {
has_reform = mamluk_government
}
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_start_consorts_no # Empty string
trigger = {
NOT = {
has_dlc = "Rights of Man"
}
}
}
}
#Devotion
defined_text = {
name = startup_devotion_explanation
random = no
text = {
localisation_key = string_start_devotion
trigger = {
government = theocracy
has_dlc = "Common Sense"
}
}
text = {
localisation_key = string_start_devotion_no # Empty string
trigger = {
NOT = {
has_dlc = "Common Sense"
}
}
}
}
#Russian Interactions
defined_text = {
name = startup_russian_government_interactions
random = no
text = {
localisation_key = string_start_russian_mechanics
trigger = {
has_government_mechanic = russian_mechanic
}
}
text = {
localisation_key = string_start_russian_mechanics_no # Empty string
trigger = {
always = yes
}
}
}
#Iqta
defined_text = {
name = startup_iqta_government
random = no
text = {
localisation_key = string_start_iqta
trigger = {
has_reform = iqta
has_dlc = "Cradle of Civilization"
}
}
text = {
localisation_key = string_start_iqta_no # Empty string
trigger = {
always = yes
}
}
}
#Feudal Theocracy
defined_text = {
name = startup_feudal_theocracy_government
random = no
text = {
localisation_key = string_start_feudal_theocracy
trigger = {
has_reform = feudal_theocracy
has_dlc = "Cradle of Civilization"
}
}
text = {
localisation_key = string_start_feudal_theocracy_no # Empty string
trigger = {
always = yes
}
}
}
#Ottoman Government
defined_text = {
name = startup_ottoman_government_harem
random = no
text = {
localisation_key = string_start_harem
trigger = {
OR = {
has_reform = ottoman_government
has_reform = sultanate_of_rum_reform
}
OR = {
has_dlc = "Rights of Man"
has_dlc = "Domination"
}
}
}
text = {
localisation_key = string_start_harem_no # Empty string
trigger = {
always = yes
}
}
}
#Ottoman Government - Pashas And Janissaries
defined_text = {
name = startup_ottoman_government_pashas
random = no
text = {
localisation_key = string_start_pashas
trigger = {
OR = {
has_reform = ottoman_government
has_reform = sultanate_of_rum_reform
}
OR = {
has_dlc = "Cradle of Civilization"
has_dlc = "Domination"
}
}
}
text = {
localisation_key = string_start_pashas_no # Empty string
trigger = {
always = yes
}
}
}
#Mamluk Government
defined_text = {
name = startup_tribal_federation_government
random = no
text = {
localisation_key = string_start_tribal_federation
trigger = {
has_reform = tribal_federation
has_dlc = "Cradle of Civilization"
}
}
text = {
localisation_key = start_tribal_federation_no # Empty string
trigger = {
always = yes
}
}
}
#Mamluk Government
defined_text = {
name = startup_mamluk_government
random = no
text = {
localisation_key = string_start_mamluks
trigger = {
has_reform = mamluk_government
has_dlc = "Cradle of Civilization"
}
}
text = {
localisation_key = string_start_harem_no # Empty string
trigger = {
always = yes
}
}
}
#Trade League
defined_text = {
name = startup_government_trade_league
random = no
text = {
localisation_key = string_start_trade_league
trigger = {
OR = {
has_government_attribute = is_merchant_republic
has_reform = veche_republic
}
has_dlc = "Mare Nostrum"
}
}
text = {
localisation_key = string_start_trade_league_no # Empty string
trigger = {
always = yes
}
}
}
#Parliaments
defined_text = {
name = startup_government_parliaments
random = no
text = {
localisation_key = string_start_parliaments
trigger = {
has_parliament = yes
}
}
text = {
localisation_key = string_start_parliaments_no # Empty string
trigger = {
always = yes
}
}
}
#Prussian Monarchies
defined_text = {
name = startup_government_prussian
random = no
text = {
localisation_key = string_start_prussian_government
trigger = {
OR = {
has_reform = prussian_monarchy_base
has_reform = prussian_monarchy
}
}
}
text = {
localisation_key = string_start_prussian_government_no # Empty string
trigger = {
always = yes
}
}
}
#Prussian Monarchies DLC Part
defined_text = {
name = startup_government_prussian_dlc
random = no
text = {
localisation_key = string_start_prussian_government_dlc
trigger = {
has_dlc = "Rights of Man"
}
}
text = {
localisation_key = string_start_prussian_government_dlc_no # Empty string
trigger = {
always = yes
}
}
}
#Elective Monarchies
defined_text = {
name = startup_government_elective
random = no
text = {
localisation_key = string_start_elective_monarchy
trigger = {
has_reform = elective_monarchy
has_dlc = "Res Publica"
}
}
text = {
localisation_key = string_start_elective_monarchy_not_yet
trigger = {
tag = POL
has_dlc = "Res Publica"
}
}
text = {
localisation_key = string_start_elective_monarchy_no # Empty string
trigger = {
always = yes
}
}
}
#Hordes - Horde Unity
defined_text = {
name = startup_government_horde
random = no
text = {
localisation_key = string_start_horde
trigger = {
has_reform = steppe_horde
has_dlc = "The Cossacks"
}
}
text = {
localisation_key = string_start_horde_no # Empty string
trigger = {
always = yes
}
}
}
#Native Council
defined_text = {
name = startup_government_native_council
random = no
text = {
localisation_key = string_start_native_council_opm
trigger = {
government = native
has_dlc = "Conquest of Paradise"
NOT = {
num_of_cities = 2
}
}
}
text = {
localisation_key = string_start_native_council
trigger = {
government = native
has_dlc = "Conquest of Paradise"
}
}
text = {
localisation_key = string_native_council_no # Empty string
trigger = {
always = yes
}
}
}
#Siberian Council
defined_text = {
name = startup_government_siberian_native_council
random = no
text = {
localisation_key = string_start_siberian_native_council_opm
trigger = {
has_reform = siberian_tribe
has_dlc = "Conquest of Paradise"
NOT = {
num_of_cities = 2
}
}
}
text = {
localisation_key = string_siberian_native_council_no # Empty string
trigger = {
always = yes
}
}
}
#Meritocracy
defined_text = {
name = startup_government_meritocracy
random = no
text = {
localisation_key = string_start_meritocracy
trigger = {
uses_meritocracy = yes
}
}
text = {
localisation_key = string_meritocracy_no # Empty string
trigger = {
always = yes
}
}
}
#Shogunate
defined_text = {
name = startup_government_shogunate
random = no
text = {
localisation_key = string_start_shogunate_moh
trigger = {
has_reform = shogunate
has_dlc = "Mandate of Heaven"
}
}
text = {
localisation_key = string_start_shogunate
trigger = {
has_reform = shogunate
NOT = {
has_dlc = "Mandate of Heaven"
}
}
}
text = {
localisation_key = string_shogunate_no # Empty string
trigger = {
always = yes
}
}
}
### Lower right description textbox
#Ex: "Looong text about the HRE"
defined_text = {
name = StartScreenDownRightDesc
random = no
text = {
localisation_key = string_start_east_asia_description # Japan, Eoc and Tributaries
trigger = {
has_dlc = "Mandate of Heaven"
capital_scope = {
OR = {
region = mongolia_region
region = manchuria_region
region = east_siberia_region
region = tibet_region
area = shanshan_area
area = tarim_basin_area
superregion = far_east_superregion
superregion = china_superregion
superregion = east_indies_superregion
}
}
}
}
text = {
localisation_key = string_start_steppes_rest_of_asia_description # Steppes have Tributaries
trigger = {
has_dlc = "Mandate of Heaven"
capital_scope = {
continent = asia
}
}
}
text = {
localisation_key = string_start_europe_description # The HRE & The Kingdom of Italy
trigger = {
capital_scope = {
continent = europe
}
}
}
text = {
localisation_key = string_start_africa_americas_description
trigger = {
capital_scope = {
OR = {
AND = {
continent = africa
NOT = {
region = maghreb_region
}
NOT = {
region = egypt_region
}
}
continent = new_world
continent = north_america
continent = south_america
}
}
}
}
text = {
localisation_key = string_start_no_special_region_description
trigger = {
always = yes
}
}
}
defined_text = {
name = start_tributaries_descriptions
random = no
text = {
localisation_key = string_tributaries_desc
trigger = {
has_dlc = "Mandate of Heaven"
capital_scope = {
OR = {
continent = asia
region = ural_region
region = crimea_region # Pontic Steppe
}
}
}
}
text = {
localisation_key = string_tributaries_desc_no # Empty String
trigger = {
always = yes
}
}
}
defined_text = {
name = start_eoc_tributaries_descriptions
random = no
text = {
localisation_key = string_eoc_tributaries_desc
trigger = {
has_dlc = "Mandate of Heaven"
capital_scope = {
OR = {
continent = asia
region = ural_region
region = crimea_region # Pontic Steppe
}
}
}
}
text = {
localisation_key = string_eoc_tributaries_desc_no # Empty String
trigger = {
always = yes
}
}
}
defined_text = {
name = start_imperial_cities_description
random = no
text = {
localisation_key = string_imperial_cities_desc
trigger = {
always = yes
}
}
}
defined_text = {
name = start_shogun_holders_through_the_years # used to display right clan name for the Shogunate in startup screen.
random = no
text = {
localisation_key = ASK
trigger = {
exists = ASK
ASK = {
has_reform = shogunate
}
}
}
text = {
localisation_key = ODA
trigger = {
exists = ODA
ODA = {
has_reform = shogunate
}
}
}
text = {
localisation_key = TKG
trigger = {
exists = TKG
TKG = {
has_reform = shogunate
}
}
}
}
defined_text = {
name = start_anglicanism_description
random = no
text = {
localisation_key = string_anglicanism_desc
trigger = {
has_dlc = "Rule Britannia"
OR = {
culture_group = british
primary_culture = anglois
}
}
}
text = {
localisation_key = string_anglicanism_no # Empty String
trigger = {
always = yes
}
}
}
defined_text = {
name = start_dharma_gov_reforms
random = no
text = {
localisation_key = string_dharma_government_reforms
}
}
defined_text = {
name = start_cossacks_steppe_nomads
random = no
text = {
localisation_key = string_cossacks_steppe_nomads
trigger = {
has_reform = steppe_horde
has_dlc = "The Cossacks"
}
}
text = {
localisation_key = string_cossacks_steppe_nomads_no
trigger = {
always = yes
}
}
}
|