File size: 138,484 Bytes
b6a38d7 |
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 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 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "Chimurenga",
Comment = "default, not retired",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set({
YoungHearts = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return not quest.YoungHearts
end,
}),
PlaceObj('VillainIsDefeated', {
Group = "Chimurenga",
Negate = true,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"D8",
},
}),
},
DefaultActor = "Chimurenga",
disabledInConflict = true,
group = "Savanna - Pantagruel",
id = "Chimurenga_1",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Comment = "Chimurenga retires",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "RetireChimurenga" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.RetireChimurenga
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = "LOTR reference",
Character = "Chimurenga",
Text = T(483688858217, --[[Conversation Chimurenga_1 Text LOTR reference voice:Chimurenga section:Chimurenga_1 keyword:Greeting2]] "Grand Chien has changed. I see it in the intel reports. I feel it in my bones. I smell it on the wind."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(636401779009, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:Greeting2]] "Sorry lad, that's just me. Gassy as all hell today."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "PierreMerc",
Text = T(542065302387, --[[Conversation Chimurenga_1 Text voice:PierreMerc section:Chimurenga_1 keyword:Greeting2]] "Yes, Grand Chien is changing. But to what... I am no longer sure."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(728167868798, --[[Conversation Chimurenga_1 Text voice:Thor section:Chimurenga_1 keyword:Greeting2]] "You must have a very sensitive soul. It's reaching out. That's great!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Annotation = "LOTR reference",
Character = "Chimurenga",
Text = T(488420244848, --[[Conversation Chimurenga_1 Text LOTR reference voice:Chimurenga section:Chimurenga_1 keyword:Greeting2]] "There is no one that lives who still remembers the old Resistance. No one but me. And I'm tired of fighting. I'm thinking that the time has come for the Savanna Lion to <em>step down</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(175841430263, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:Greeting2]] "Yeah, I know what you mean. I'm also not as young as I used to be. "),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(413685107925, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Greeting2]] "It's no use, Woodrow. They'll just pull you right back."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(801995028099, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:Greeting2]] "There's no bloody point. You stop moving, you die. Of course, if you move forward, you die that way, too. Either way, yer fucked!"),
}),
},
}),
},
}),
},
NoBackOption = true,
id = "Greeting2",
PlaceObj('ConversationPhrase', {
Keyword = "What about your Maquis?",
KeywordT = T(175493217064, --[[Conversation Chimurenga_1 KeywordT]] "What about your Maquis?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(639690110298, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What about your Maquis?]] "My Maquis are nice boys and girls. They are good at following orders, but there is not one visionary among them. The Revolution needs a leader with vision, otherwise it becomes a monster that eats its own children."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(701073707069, --[[Conversation Chimurenga_1 Text voice:Sidney section:Chimurenga_1 keyword:What about your Maquis?]] "Revolutions have a nasty habit of burning out or burning up. The flames rarely are concerned about who is consumed."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(251650869061, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:What about your Maquis?]] "Leader with vision бывает even bigger монстр."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(402911354451, --[[Conversation Chimurenga_1 Text voice:Kalyna section:Chimurenga_1 keyword:What about your Maquis?]] "Child-eating monsters? Yuck! Those are the worst."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(859048750692, --[[Conversation Chimurenga_1 Text voice:DrQ section:Chimurenga_1 keyword:What about your Maquis?]] "Indeed. Revolution simply means change. Change without vision is chaos."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(381811374357, --[[Conversation Chimurenga_1 Text voice:Smiley section:Chimurenga_1 keyword:What about your Maquis?]] "I do not know about vision, but I know about revolution. It is best done when there is a common problem to solve, like trying to depose a deranged psychopath who likes to run over babies with her tanks."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(768176202949, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:What about your Maquis?]] "You guys should really consider democracy. You get to have mini-revolutions every few years and hardly anybody dies."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
id = "WhataboutyourMaquis",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "Greeting2.Dontyouhaveafamily",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "Greeting2.Safetravels",
}),
},
Keyword = "Who will succeed you?",
KeywordT = T(480654302106, --[[Conversation Chimurenga_1 KeywordT]] "Who will succeed you?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(280521576997, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who will succeed you?]] "You. I have watched you closely. I see what you are doing and I already know it: you will bring the change that Grand Chien needs."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(395962935299, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Who will succeed you?]] "What? We are no Commies."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(173120078434, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Who will succeed you?]] "Ya'll trust us with that, Woody?!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(424545087976, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Who will succeed you?]] "You're pulling my leg, Chimichanga. I'd rather be dead than red."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(511376345585, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who will succeed you?]] "You have proven to me that you care about our life, our struggle, our pride. You know about our problems and you have the strength to solve them. Whatever power I have, I give it to you, to help you. Do not disappoint me."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(827140859678, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:Who will succeed you?]] "Вот это настоящий командир!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(977968341594, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Who will succeed you?]] "A Commie giving instead of taking... This world must be going crazy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(354717571593, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:Who will succeed you?]] "I've never met a reasonable Commie in my life. You're the first and probably the only one."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(154799173994, --[[Conversation Chimurenga_1 Text voice:Sidney section:Chimurenga_1 keyword:Who will succeed you?]] "I'm certainly impressed."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(383054456723, --[[Conversation Chimurenga_1 Text voice:Fidel section:Chimurenga_1 keyword:Who will succeed you?]] "Let's make ourselves a revolution!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(284308181619, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:Who will succeed you?]] "This is great honor."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(727073396151, --[[Conversation Chimurenga_1 Text voice:Vicki section:Chimurenga_1 keyword:Who will succeed you?]] "You no fooling around? You serious? Aieee... All right, mon. We do our best."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(608701220949, --[[Conversation Chimurenga_1 Text voice:Nails section:Chimurenga_1 keyword:Who will succeed you?]] "I ain't wearing no damn beret."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(169328392178, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who will succeed you?]] "I give you <em>Fosse Noire</em> and the command over my Maquis. As for me... I guess it is time to go and see the world."),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Whowillsucceedyou",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "Greeting2.YouandMaman",
}),
},
Enabled = false,
Keyword = "Don't you have a family?",
KeywordT = T(631976324037, --[[Conversation Chimurenga_1 KeywordT]] "Don't you have a family?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(120667100344, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Don't you have a family?]] "No. The Revolution was always my bride and the Maquis were my children."),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Dontyouhaveafamily",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "MamanFeelings" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.MamanFeelings
end,
}),
},
Enabled = false,
Keyword = "How about Maman Liliane?",
KeywordT = T(400130778122, --[[Conversation Chimurenga_1 KeywordT]] "How about Maman Liliane?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(655835819549, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:How about Maman Liliane?]] "Hmmm... She's been trying to get me to retire for years. <em>Liliane</em> is a good woman and I... Well, as the Maquis leader I needed to remain devoted to the cause. I do not object to her profession, but I could never risk the distraction."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"The Shining" reference',
Character = "Fox",
Text = T(154844671589, --[[Conversation Chimurenga_1 Text "The Shining" reference voice:Fox section:Chimurenga_1 keyword:How about Maman Liliane?]] "All work and no play makes for a very dull revolution if you ask me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "PierreMerc",
Text = T(205846830007, --[[Conversation Chimurenga_1 Text voice:PierreMerc section:Chimurenga_1 keyword:How about Maman Liliane?]] "That is... very noble of you. I did not expect that."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(851345061518, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:How about Maman Liliane?]] "Yeah, mate, I gotta tell you - I heard all the words you just said, but they didn't make a lick of sense to me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(438307186803, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:How about Maman Liliane?]] "Hey man, I get it. You have to stay away from enablers."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(267730394298, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:How about Maman Liliane?]] "But now that I have found fresh leadership for the Maquis, perhaps I can allow myself a bit of personal happiness. So, what do you think? Will she have me?"),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "YouandMaman",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "Greeting2.YouandMaman.Redirect",
Keyword = "You will make her happy!",
KeywordT = T(338519157042, --[[Conversation Chimurenga_1 KeywordT]] "You will make her happy!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(236414130723, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:You will make her happy!]] "You bet! You're a nice looking man and a real gentleman on top of that. If I was her, I'd say \"yes\" before you even started!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(806701506749, --[[Conversation Chimurenga_1 Text voice:Scope section:Chimurenga_1 keyword:You will make her happy!]] "Don't worry, love. She's all yours, you just have to ask her."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(216390013934, --[[Conversation Chimurenga_1 Text voice:Raven section:Chimurenga_1 keyword:You will make her happy!]] "You're both fierce. You're both leaders. I think we're looking at a power couple here."),
}),
},
}),
},
}),
},
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Youwillmakeherhappy",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "Greeting2.YouandMaman.Redirect",
Keyword = "She needs a man like you",
KeywordT = T(810595453658, --[[Conversation Chimurenga_1 KeywordT]] "She needs a man like you"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(862651256422, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:She needs a man like you]] "Somewhere deep inside every woman is a scared little girl. Trust me - having the Savanna Lion by her side is going to make that little girl jump for joy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(862651256422, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:She needs a man like you]] "Somewhere deep inside every woman is a scared little girl. Trust me - having the Savanna Lion by her side is going to make that little girl jump for joy."),
}),
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(708422824430, --[[Conversation Chimurenga_1 Text voice:Meltdown section:Chimurenga_1 keyword:She needs a man like you]] "That's utter bullshit and if you ever say that again I will beat you until there is nothing left but a scared little girl."),
}),
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(827162335305, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:She needs a man like you]] "See? That's the scared little girl talking."),
}),
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(448824293151, --[[Conversation Chimurenga_1 Text voice:Meltdown section:Chimurenga_1 keyword:She needs a man like you]] "Shut. Up."),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(213345079693, --[[Conversation Chimurenga_1 Text voice:Raider section:Chimurenga_1 keyword:She needs a man like you]] "You'll do alright. She needs a real man who's not afraid to take charge when she needs to take a break from being strong all the time."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(138270038717, --[[Conversation Chimurenga_1 Text voice:Raider section:Chimurenga_1 keyword:She needs a man like you]] "You'll do alright. She needs a real man who's not afraid to take charge when she needs to take a break from being strong all the time."),
}),
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(408652191619, --[[Conversation Chimurenga_1 Text voice:Raven section:Chimurenga_1 keyword:She needs a man like you]] "Ron, you better shut that pretty mouth of yours or I'm going to start kissing it."),
}),
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(498949609421, --[[Conversation Chimurenga_1 Text voice:Raider section:Chimurenga_1 keyword:She needs a man like you]] "Well, now I'm feeling conflicted."),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(117630847909, --[[Conversation Chimurenga_1 Text voice:Wolf section:Chimurenga_1 keyword:She needs a man like you]] "Don't let a good woman slip through your hands just because you're afraid of what comes next, chief. You get your ass over there and grab her."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(834639750142, --[[Conversation Chimurenga_1 Text voice:Fauda section:Chimurenga_1 keyword:She needs a man like you]] "She is not the type of woman who needs a man to take care of her. Yet, she needs you. That should tell you something."),
}),
},
}),
},
}),
},
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Sheneedsamanlikeyou",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "YoungHearts",
QuestId = "PantagruelDramas",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "SucceedChimurenga",
QuestId = "PantagruelDramas",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "Chimurenga_Reward",
}),
PlaceObj('NpcUnitTakeItem', {
ItemId = "LionRoar",
TargetUnit = "Chimurenga",
}),
PlaceObj('ApplyGuiltyOrRighteous', {}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Redirect",
KeywordT = T(328092960140, --[[Conversation Chimurenga_1 KeywordT]] "Redirect"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(187591623874, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Redirect]] "I have seen so many battles in my life, and I was never as nervous before a fight as I am now. But I will trust you and I will talk to Liliane."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(994609719907, --[[Conversation Chimurenga_1 Text voice:Magic section:Chimurenga_1 keyword:Redirect]] "My man!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(830229138648, --[[Conversation Chimurenga_1 Text voice:Raider section:Chimurenga_1 keyword:Redirect]] "It is never too late to talk to the woman you like. You will start a new life. You'll see."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(277185418207, --[[Conversation Chimurenga_1 Text voice:Hitman section:Chimurenga_1 keyword:Redirect]] "Show her the beast, Ace! You're the freakin' Savanna Lion!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(343947084639, --[[Conversation Chimurenga_1 Text voice:Raven section:Chimurenga_1 keyword:Redirect]] "You'll do fine! She likes you a lot."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(324954772569, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Redirect]] "Just make sure you have adequate foot powder. If you are like me, sweaty feet have been a problem on dates."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(909124415297, --[[Conversation Chimurenga_1 Text voice:Tex section:Chimurenga_1 keyword:Redirect]] "This best part of script. Hero accepts challenge!"),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(884056555186, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Redirect]] "I'll ask her. And you know what? I won't need the <em>Lion's Roar</em> where I'm heading. Here, take it. Let its voice terrify the enemies of the People. Now, wish me luck, comrade!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(481050980254, --[[Conversation Chimurenga_1 Text voice:Scope section:Chimurenga_1 keyword:Redirect]] "Good luck, love, but you really don't need it. You'll see."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(404888989233, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Redirect]] "Good luck! Stay clean! I mean... oh gosh. Best wishes!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(456004479800, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Redirect]] "She will not know what hit her. Wait... Do not hit her!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
id = "Redirect",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "SucceedChimurenga",
QuestId = "PantagruelDramas",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Safe travels!",
KeywordT = T(505922627147, --[[Conversation Chimurenga_1 KeywordT]] "Safe travels!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(388808236049, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Safe travels!]] "Good luck to you. Farewell!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Safetravels",
}),
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "DRMaquisLiberated" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.DRMaquisLiberated
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
Enabled = false,
PhraseId = "Greeting",
}),
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Pantagruel",
SpecialConversationMessage = T(691849116914, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "good impression on <em>Chimurenga</em>"),
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Given",
QuestId = "RescueBiff",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(496450940740, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting6]] "Thank you, comrade Mercenaires, for liberating my brave <em>Maquis</em>! Let me hug you and kiss you for that!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(163977119966, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:Greeting6]] "Конечно, товарищ."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(317166107061, --[[Conversation Chimurenga_1 Text voice:Mouse section:Chimurenga_1 keyword:Greeting6]] "Oh, um... Sorry. Cold sore. Really bad one."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(179727202222, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:Greeting6]] "French kiss or a normal kiss?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(230731401721, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting6]] "Communists kiss on both cheeks and the mouth."),
}),
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(766897279921, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:Greeting6]] "Oh, okay! So, where are the other two guys?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(556967154061, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting6]] "Er... Maybe I just kiss you on the cheek for now."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(973541213776, --[[Conversation Chimurenga_1 Text voice:Ice section:Chimurenga_1 keyword:Greeting6]] "Nah, I'm good."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(500819574253, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Greeting6]] "Sorry, Chimichanga. You gotta buy me dinner first if you want that kind of action."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Sound of a noisy kiss",
Character = "Igor",
Text = T(501860025427, --[[Conversation Chimurenga_1 Text Sound of a noisy kiss voice:Igor section:Chimurenga_1 keyword:Greeting6]] "Ah! Your breath smells of vodka. Let me kiss you again."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(613527755293, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting6]] "As a reward, I offer you the greatest gift of them all - the friendship between our people!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(813167775377, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:Greeting6]] "Well, if that isn't everything I ever wanted. I feel all warm and fuzzy-like."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(540105102921, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Greeting6]] "Friendship is indeed the most precious gift one can give... except possibly a rocket launcher."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(830559269163, --[[Conversation Chimurenga_1 Text voice:Thor section:Chimurenga_1 keyword:Greeting6]] "This... This is so wonderful!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(377460505827, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:Greeting6]] "That's right, man! This is lit! Friendship is MAGIC!!!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(309185707811, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Greeting6]] 'We almost died because of your bullshit, man. And all you have to offer is "friendship".'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(685082246912, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Greeting6]] "Got to tell ya, Woody, I kinda prefer the Capitalist way of expressing gratitude."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
id = "Greeting6",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Comment = "first",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Given",
QuestId = "RescueBiff",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(801359966156, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting]] "Thank you for helping us, and please forgive me for this little deceit. I am aware you are not the same group as <em>les Mercenaires</em> of <em>Biff Apscott</em>, but my people needed some reassurance."),
}),
},
NoBackOption = true,
id = "Greeting",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Pantagruel",
SpecialConversationMessage = T(739350741476, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "good impression on <em>Chimurenga</em>"),
}),
},
GoTo = "<root>",
Keyword = "We don’t mind, comrade",
KeywordT = T(409959115915, --[[Conversation Chimurenga_1 KeywordT]] "We don’t mind, comrade"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "It is okay...",
Character = "Ivan",
Text = T(196211166380, --[[Conversation Chimurenga_1 Text It is okay... voice:Ivan section:Chimurenga_1 keyword:We don’t mind, comrade]] "Всё в порядке. People need faith in command."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(539367560317, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:We don’t mind, comrade]] "We are all brothers in one great family!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(727801309025, --[[Conversation Chimurenga_1 Text voice:Shadow section:Chimurenga_1 keyword:We don’t mind, comrade]] "I've been known to use a little deception myself."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(252648203764, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We don’t mind, comrade]] "I see we have much in common."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(641824760782, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:We don’t mind, comrade]] "You don't see much."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(808459633749, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:We don’t mind, comrade]] "You should maybe get your eyes checked, lad."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(938899889445, --[[Conversation Chimurenga_1 Text voice:Fauda section:Chimurenga_1 keyword:We don’t mind, comrade]] "Yes. Mainly enemies, but it is enough."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_friendly",
id = "Wedontmindcomrade",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "<root>",
Keyword = "You are deceiving your troops",
KeywordT = T(115963947134, --[[Conversation Chimurenga_1 KeywordT]] "You are deceiving your troops"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(665405082124, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You are deceiving your troops]] "It is the unfortunate necessity of any government. People want to hear something that makes sense to them. The truth is not for everyone."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"Yes. exactly."',
Character = "Ivan",
Text = T(311853863757, --[[Conversation Chimurenga_1 Text "Yes. exactly." voice:Ivan section:Chimurenga_1 keyword:You are deceiving your troops]] "Конечно."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(126529755013, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:You are deceiving your troops]] "Yeah, you Commies just love this shit."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(366316815441, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You are deceiving your troops]] "You Americans are not much different."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(831685537145, --[[Conversation Chimurenga_1 Text voice:Kalyna section:Chimurenga_1 keyword:You are deceiving your troops]] "It's true! Most people just want a good story. The problem with the truth is there isn't any end to it. It just keeps going. A story has a nice neat ending, usually a happy one."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(499223580214, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You are deceiving your troops]] "You have uncommon wisdom for one so young."),
}),
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(571034111778, --[[Conversation Chimurenga_1 Text voice:Kalyna section:Chimurenga_1 keyword:You are deceiving your troops]] "I read a lot."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_threaten",
id = "Youaredeceivingyourtroops",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "We would have attacked the Legion anyway",
KeywordT = T(143208201866, --[[Conversation Chimurenga_1 KeywordT]] "We would have attacked the Legion anyway"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(965446698319, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We would have attacked the Legion anyway]] "Yes, but now the friends of the Revolution will see you as heroes for doing that!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(468846681890, --[[Conversation Chimurenga_1 Text voice:Fidel section:Chimurenga_1 keyword:We would have attacked the Legion anyway]] "Fidel does not just kill people and have fun! Fidel is a hero! When will they go and make Fidel a statue?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(888362358750, --[[Conversation Chimurenga_1 Text voice:Shadow section:Chimurenga_1 keyword:We would have attacked the Legion anyway]] "If I see even one poster with my face on it looking bravely into the middle distance, you and I are gonna have words."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(997750683613, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We would have attacked the Legion anyway]] "Uh... Of course, my friend, of course! I would never allow that to happen."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(128053787792, --[[Conversation Chimurenga_1 Text voice:Tex section:Chimurenga_1 keyword:We would have attacked the Legion anyway]] "Maybe you put me on poster? Look, I make hero pose."),
}),
},
}),
},
}),
},
id = "WewouldhaveshottheLegionanyway",
}),
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Pantagruel",
Condition = ">=",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "04_Betrayal",
Vars = set( "TriggerWorldFlip" ),
__eval = function ()
local quest = gv_Quests['04_Betrayal'] or QuestGetState('04_Betrayal')
return quest.TriggerWorldFlip
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(738686258944, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting3]] "I heard about what you did at the <em>Refugee Camp</em>, comrades. I'm sure you had your reasons. We Maquis will support you, even if others have betrayed you."),
}),
},
NoBackOption = true,
id = "Greeting3",
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Leadership",
StatValue = 70,
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Pantagruel",
SpecialConversationMessage = T(973315334539, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "good impression on <em>Chimurenga</em>"),
}),
},
GoTo = "<root>",
Keyword = "We didn’t do it!",
KeywordT = T(416389478432, --[[Conversation Chimurenga_1 KeywordT]] "We didn’t do it!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(286871074486, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:We didn’t do it!]] "Don't believe everything you hear, mate."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(624912606247, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:We didn’t do it!]] "It's fake news, Woodward. We're being set up."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(194855153679, --[[Conversation Chimurenga_1 Text voice:Raider section:Chimurenga_1 keyword:We didn’t do it!]] "We're innocent until proven guilty, and there is zero evidence. We didn't do it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(859676754181, --[[Conversation Chimurenga_1 Text voice:Spike section:Chimurenga_1 keyword:We didn’t do it!]] "We got stabbed in the back - multiple times, in fact. Whoever did that, it wasn't us."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(493114984191, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t do it!]] "Someone is making you out to be the villain, is that it? I've been a victim of that myself in the past. Regardless, I know your worth and we will remain by your side."),
}),
},
ShowPhraseRollover = false,
StoryBranchIcon = "conversation_threaten",
id = "Wedidntdoit",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Leadership",
Negate = true,
StatValue = 70,
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = -5,
City = "Pantagruel",
SpecialConversationMessage = T(574707738582, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "bad impression on <em>Chimurenga</em>"),
}),
},
GoTo = "<root>",
Keyword = "We didn’t do it!",
KeywordT = T(416389478432, --[[Conversation Chimurenga_1 KeywordT]] "We didn’t do it!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(511461980710, --[[Conversation Chimurenga_1 Text voice:Flay section:Chimurenga_1 keyword:We didn’t do it!]] "If I had been there, I would have left my mark."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(219477713811, --[[Conversation Chimurenga_1 Text voice:Scope section:Chimurenga_1 keyword:We didn’t do it!]] "We would never have done such a horrible thing!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(363964154061, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:We didn’t do it!]] "We're being set up, man! You gotta believe me!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(462533856574, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t do it!]] "If you say so. You don't have to explain your operations to me, comrades."),
}),
},
ShowPhraseRollover = false,
StoryBranchIcon = "conversation_threaten",
id = "Wedidntdoit2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Thank you, comrade",
KeywordT = T(592451549862, --[[Conversation Chimurenga_1 KeywordT]] "Thank you, comrade"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(995082638472, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Thank you, comrade]] "I'm sure you have a plan for how to handle the situation. I don't expect you to share it with me. The less I know, the better."),
}),
},
StoryBranchIcon = "conversation_friendly",
id = "Thankyoucomrade",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Pantagruel",
SpecialConversationMessage = T(739350741476, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "good impression on <em>Chimurenga</em>"),
}),
},
GoTo = "<root>",
Keyword = "It is all part of our plan",
KeywordT = T(378126399854, --[[Conversation Chimurenga_1 KeywordT]] "It is all part of our plan"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(411893736295, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:It is all part of our plan]] "I have seen you operate. You are as cunning as a fox, comrades. I'll be watching to see your next move."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(679630612413, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:It is all part of our plan]] "We're as foxy as it gets."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(658599487774, --[[Conversation Chimurenga_1 Text voice:Livewire section:Chimurenga_1 keyword:It is all part of our plan]] "Honestly, you should not watch too closely. Maintaining plausible deniability might be better for you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(101780236624, --[[Conversation Chimurenga_1 Text voice:Magic section:Chimurenga_1 keyword:It is all part of our plan]] "I'm thinking we need to pull a rabbit out of a hat - a rabbit riding a main battle tank."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(926346562851, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:It is all part of our plan]] "Ha! Now that is a trick you will have to teach me."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "Itisallpartofourplan",
}),
}),
PlaceObj('ConversationPhrase', {
Comment = "default high Loyalty",
Conditions = {
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Pantagruel",
Condition = ">=",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(515706514706, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting4]] "Greetings, comrade Mercenaires!"),
}),
},
id = "Greeting4",
}),
PlaceObj('ConversationPhrase', {
Comment = "default",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Chimurenga_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(613746068561, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Greeting5]] "Good day, Mercenaires."),
}),
},
id = "Greeting5",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "ChimurengaRevolution",
QuestId = "PantagruelDramas",
}),
},
Keyword = "Who are you?",
KeywordT = T(860517763452, --[[Conversation Chimurenga_1 KeywordT]] "Who are you?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(757178598534, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] "They call me <em>Chimurenga</em>, the Savanna Lion. I am the leader of the People's Provisional Revolutionary Government. We are struggling to bring down the heartless capitalist government and lead the people of Grand Chien into a bright communist future!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(134214029789, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:Who are you?]] "This is the plan каждый раз."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(722559169808, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:Who are you?]] "Cheburashka, hahaha. Good name."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(940941289613, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] "It is pronounced Chimurenga."),
}),
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(370766929173, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:Who are you?]] "Chunga-Changa, whatever."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(551815611073, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Who are you?]] "Communist dumb speaking!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(107772867988, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Who are you?]] "I've heard it all before Chimichanga. There's no bright future under communism. It's just a big lie."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(580279836691, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] "Chimurenga. It is pronounced Chimurenga."),
}),
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(211107554740, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Who are you?]] "Doesn't matter how you pronounce it or what you call it - socialism, collectivism, welfare - it's all the same system of control. "),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(594450063875, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] "No, I meant... Never mind."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(963757629850, --[[Conversation Chimurenga_1 Text voice:Kalyna section:Chimurenga_1 keyword:Who are you?]] "And I thought I was the one who believed in fairy tales."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(700565337483, --[[Conversation Chimurenga_1 Text voice:Omryn section:Chimurenga_1 keyword:Who are you?]] "This kind of talk give me stomach ache."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(676052747827, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] 'But the truth is, our <em>Revolution</em> falters. The USSR fell and everyone says "why do it again"? To the young fighters, the <em>Legion</em> capitalists with their policy of free looting and pillaging are more attractive than communism.'),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(740756567950, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Who are you?]] "They are more real Commies than your Commies, ha-ha."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(785860875627, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Who are you?]] 'You can always say "but it wasn\'t real communism" and call it a day, heh.'),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(445908611319, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Who are you?]] "You think I haven't tried to explain how the USSR was built on Stalin's paranoia and not actually on the theories of Marx or Engels? The youth have no patience for nuanced debate."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(760901318732, --[[Conversation Chimurenga_1 Text voice:Shadow section:Chimurenga_1 keyword:Who are you?]] "Sounds like you're just not as good at redistributing wealth as the Legion."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(773933124936, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Who are you?]] "You should be the Fun Communist Party. Organize things like Workers' Karaoke Nights and ice cream socials. Wear festive hats. That sort of thing."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(891414501976, --[[Conversation Chimurenga_1 Text voice:Reaper section:Chimurenga_1 keyword:Who are you?]] "You should remind them that joining the Legion will only result in their tragic and premature death."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(825325866780, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:Who are you?]] "Damn kids with their looting and pillaging..."),
}),
},
}),
},
}),
},
id = "Revolutionary",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "ChimurengaRevolution" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.ChimurengaRevolution
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "Wealsowantthosemines",
}),
},
Keyword = "Why are you fighting the Legion?",
KeywordT = T(706970128544, --[[Conversation Chimurenga_1 KeywordT]] "Why are you fighting the Legion?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(107961978366, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "Before we can take over the corrupt government, we need to seize the means of production - namely, the <em>diamond mines</em>. Those capitalists dig diamonds that belong to the People of Grand Chien!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"They are also goddamn capitalists."',
Character = "Ivan",
Text = T(581956895381, --[[Conversation Chimurenga_1 Text "They are also goddamn capitalists." voice:Ivan section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "Они тоже проклятые капиталисты."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(952128134096, --[[Conversation Chimurenga_1 Text voice:Buns section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "And the People need you to take care of the diamonds, no?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(196827885831, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "The People rarely know what is good for them."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(632812738079, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "So, your plan is to distribute diamonds to all the people in Grand Chien?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(448301969768, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "My plan is to keep the diamonds out of the hands of fascists and capitalists!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(416025832545, --[[Conversation Chimurenga_1 Text voice:Vicki section:Chimurenga_1 keyword:Why are you fighting the Legion?]] "Good luck with that one, mon. Capitalists really love their diamonds."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
id = "WhyareyoufightingtheLegion",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Enabled = false,
Keyword = "We also want those mines",
KeywordT = T(183882033261, --[[Conversation Chimurenga_1 KeywordT]] "We also want those mines"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(401391973573, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We also want those mines]] "But of course I understand this. You are the enemy of my enemy and you will have need of diamonds. As long as you do not take <em>Fosse Noire</em> away from me, I will have no problem with you."),
}),
},
id = "Wealsowantthosemines",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "RescueBiff",
Vars = set({
ChimurengaBiffResolved = false,
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['RescueBiff'] or QuestGetState('RescueBiff')
return not quest.ChimurengaBiffResolved and not quest.Completed
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "TellUsAboutMERC2",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "Chimurenga_1",
PhraseId = "TellUsAboutMERC2",
Seen = true,
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MERC_DiamondRed",
QuestId = "RescueBiff",
}),
},
GoTo = "TellUsAboutMERC2",
Keyword = "Tell us about M.E.R.C.",
KeywordT = T(541270263044, --[[Conversation Chimurenga_1 KeywordT]] "Tell us about M.E.R.C."),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(194990756373, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Tell us about M.E.R.C.]] "Our <em>Mercenaires</em> comrades made a spectacular appearance during the <em>Carnival</em> celebrations, just before we attacked <em>Diamond Red</em> together."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(857564154447, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Tell us about M.E.R.C.]] 'They were "your" comrades?!'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(885408040965, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:Tell us about M.E.R.C.]] "Mercenary comrades, huh? What the hell is Biff up to?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(369508889685, --[[Conversation Chimurenga_1 Text voice:Omryn section:Chimurenga_1 keyword:Tell us about M.E.R.C.]] "Sound like story time. I get snack."),
}),
},
}),
},
}),
},
id = "TellusaboutMERC1",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "RescueBiff",
Vars = set({
ChimurengaBiffResolved = false,
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['RescueBiff'] or QuestGetState('RescueBiff')
return not quest.ChimurengaBiffResolved and not quest.Completed
end,
}),
},
Enabled = false,
Keyword = "Tell us about M.E.R.C.",
KeywordT = T(541270263044, --[[Conversation Chimurenga_1 KeywordT]] "Tell us about M.E.R.C."),
id = "TellUsAboutMERC2",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Keyword = "Carnival celebrations?",
KeywordT = T(767938132736, --[[Conversation Chimurenga_1 KeywordT]] "Carnival celebrations?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(860975165399, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Carnival celebrations?]] "Yes. There is a great Carnival celebration in town each year organized by <em>Maman Liliane</em> and her working girls."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(496852463570, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Carnival celebrations?]] "Greatest working class heroes, eh, Woody?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(140103129220, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Carnival celebrations?]] "That sounds like a wild party, man. Good thing I missed it, otherwise I'd have been... Oh, wait. Damn."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(483308835028, --[[Conversation Chimurenga_1 Text voice:Barry section:Chimurenga_1 keyword:Carnival celebrations?]] "I suppose there is too much hope I have for such girls giving up lives of sin for Lent?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(247330655200, --[[Conversation Chimurenga_1 Text voice:Smiley section:Chimurenga_1 keyword:Carnival celebrations?]] "Such a wonderful night!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(259382766059, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Carnival celebrations?]] "<em>Les Mercenaires</em> comrades appeared that night under cover, trying to move through the crowd unnoticed. But it was a party and they were stumbling around like clowns, so I knew they were doing it just to entertain us. We had a good laugh."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(430510982000, --[[Conversation Chimurenga_1 Text voice:Vicki section:Chimurenga_1 keyword:Carnival celebrations?]] "I wouldn't be so sure, mon."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(753290279877, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Carnival celebrations?]] "Clowns? What type of clowns? Did they have big shoes?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(514329415104, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Carnival celebrations?]] "I... I don't think so."),
}),
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(172804202063, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Carnival celebrations?]] "Hmmm. This is very interesting."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(859128015353, --[[Conversation Chimurenga_1 Text voice:Shadow section:Chimurenga_1 keyword:Carnival celebrations?]] "Probably just trying to blend in. Doesn't sound like they succeeded."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(814711390253, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Carnival celebrations?]] "I do remember a lot of laughing, but I think it was mostly me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(141283148461, --[[Conversation Chimurenga_1 Text voice:Smiley section:Chimurenga_1 keyword:Carnival celebrations?]] "Señor Apscott instructed us to blend in with our surroundings. I guess it worked?"),
}),
},
}),
},
}),
},
id = "TheCarnival",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set({
DRMaquisLiberated = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return not quest.DRMaquisLiberated
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Chimurenga_1",
PhraseId = "TellUsAboutMERC2.WhereareMERCnow",
}),
},
Keyword = "What happened in Diamond Red?",
KeywordT = T(575688678573, --[[Conversation Chimurenga_1 KeywordT]] "What happened in Diamond Red?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(460898426909, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Our <em>Mercenaires</em> comrades agreed to join our struggle against the enemies of Grand Chien!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(965832957654, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Which enemies exactly, I wonder?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(167656622068, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:What happened in Diamond Red?]] "They did what now, Woodstock?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(573612683123, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Yeah, I kinda remember that."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(930026315901, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Together with my Maquis, they used the <em>Carnival</em> celebrations as a distraction while they went to attack <em>Diamond Red</em>. Alas, something went wrong and they failed."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MentionRetreat",
QuestId = "PantagruelDramas",
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(462887684261, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Your idiot Maquis lead us right into a trap, man, that's what happened! We thought we had the damn Legion in front of us!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(803322026747, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Yeah! They had laser raptors and we did not! It just wasn't fair."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(637979189534, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:What happened in Diamond Red?]] "What a surprise."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(210992290648, --[[Conversation Chimurenga_1 Text voice:Meltdown section:Chimurenga_1 keyword:What happened in Diamond Red?]] "Yeah. The thing that went wrong was Biff Fucking Apscott."),
}),
},
}),
},
}),
},
id = "WhathappenedinDiamondRed",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set({
DRMaquisLiberated = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return not quest.DRMaquisLiberated
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "RescueBiff",
Vars = set({
ChimurengaBiffResolved = false,
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['RescueBiff'] or QuestGetState('RescueBiff')
return not quest.ChimurengaBiffResolved and not quest.Completed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MERC_DiamondRedBattle",
QuestId = "RescueBiff",
}),
},
Enabled = false,
Keyword = "Where is M.E.R.C. now?",
KeywordT = T(265001007185, --[[Conversation Chimurenga_1 KeywordT]] "Where is M.E.R.C. now?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(248546014592, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "I have reason to believe that <em>les Mercenaires</em> and some of my fighters were <em>captured</em> alive. But I can't spare the force needed to liberate them - you saw how ferocious the counterattack of the Legion was."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(684164291346, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "It is preferable to be captured alive. I'd be really pissed if they captured me dead."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(815128353054, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "Yeah... I got captured, all right. Good thing I was tripping balls or I'd be pissed, man."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(913811211576, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "Don't worry, Cheburashka, we will save everyone and you will give us a medal."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(996419443167, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "Chimurenga."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(957113791564, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "Don't you worry, Chimichanga. We'll get your people out of there."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(453070080104, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "It's Chimurenga."),
}),
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(481821960957, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Where is M.E.R.C. now?]] "Sorry, but I don't really care what you natives call it. We'll get your guys back safe and sound."),
}),
},
}),
},
}),
},
id = "WhereareMERCnow",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "DRMaquisLiberated" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.DRMaquisLiberated
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MentionRetreat",
QuestId = "PantagruelDramas",
}),
},
Keyword = "What exactly happened in Diamond Red?",
KeywordT = T(806293608460, --[[Conversation Chimurenga_1 KeywordT]] "What exactly happened in Diamond Red?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(816745149595, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "My Maquis and your <em>M.E.R.C.</em> comrades joined their effort against the rotten <em>capitalist forces</em> in Diamond Red. But the capitalists from <em>la Legion</em> had the very same idea and treacherously attacked our forces from behind."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(380948553879, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] '"Capitalist forces", Woody?'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(425379070929, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "I don't know, man. Maybe if your idiot Maquis didn't lie to us...?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(653259937619, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "They appeared in our back riding laser raptors! It all happened so fast!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "PierreMerc",
Text = T(482050852197, --[[Conversation Chimurenga_1 Text voice:PierreMerc section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "Treacherous. Such an interesting word."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(781145992119, --[[Conversation Chimurenga_1 Text voice:Sidney section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "That was impressively well-timed on their part. Very curious."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(101366161645, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "The Legion being able to orchestrate such a maneuver is a very worrying thought."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(149629860581, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "However, while my Maquis fell into captivity as the Legion conquered the mine, your mercenary friends did better. Thanks to their superior commander and utter professionalism, they managed to <em>retreat</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(802404283084, --[[Conversation Chimurenga_1 Text voice:Buns section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "They surely are very professional when it comes to retreating."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(868781627195, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "Except for me! I continued fighting and I shot no less than three laser raptors!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(112667704387, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "It's so easy to get turned around when everything is spinning."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(371381302481, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "That's a hell of an after-action report, sir. Thank you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(186283696723, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "Superior commander? I know this place is a bit backwards, Woody, but I didn't expect it to be upside down."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(105225453868, --[[Conversation Chimurenga_1 Text voice:Meltdown section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "You sure you ain't kissing Apscott's ass too much?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(708854106257, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "Biff Apscott is a hero who wants to leave a kind and generous mark upon the world!"),
}),
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(164890720991, --[[Conversation Chimurenga_1 Text voice:Meltdown section:Chimurenga_1 keyword:What exactly happened in Diamond Red?]] "Kind and generous skid mark, maybe."),
}),
},
}),
},
}),
},
id = "WhatexactlyhappenedinDiamondRed",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "MentionRetreat" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.MentionRetreat
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MentionLie",
QuestId = "PantagruelDramas",
}),
},
Keyword = "Wasn't the mine held by the Legion?",
KeywordT = T(755302225395, --[[Conversation Chimurenga_1 KeywordT]] "Wasn't the mine held by the Legion?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(673446796816, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Well, back at the time it was held by <em>Grand Chien</em> troops. We had to... deceive your comrades a little bit. I believe you will understand - we needed their military support to take <em>Diamond Red</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(444139425788, --[[Conversation Chimurenga_1 Text voice:Len section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "You told Biff they will be fighting the Legion, then the real Legion hit them from behind?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(397141497364, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "You just wanted that big diamond, man - and all the diamonds everywhere... probably. Anyway, I'm happy you won't get it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(994883132534, --[[Conversation Chimurenga_1 Text voice:Barry section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "This is a most terrible thing. You should have shame."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(406640694812, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "You didn't fool me! I saw right through your machinations as clear as I see this green rabbit on your shoulder."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(169888852793, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "You lying Commies!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(176547989812, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Mother taught me that lying is very bad, unless it is to an enemy. Did you think M.E.R.C. was an enemy?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(105620839556, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "No! They are heroes! I used them as expendable assets to accomplish my goal, yes, but they are still heroes."),
}),
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(733309280948, --[[Conversation Chimurenga_1 Text voice:Grunty section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Hmmm. Yes, that is the one exception to Mother's rule."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(766864809929, --[[Conversation Chimurenga_1 Text voice:Smiley section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Señor Apscott trusted you!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(504406167818, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Never trust a Commie."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(445147051571, --[[Conversation Chimurenga_1 Text voice:Tex section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "That was a low-down, dirty trick!"),
}),
},
}),
},
MaxPlayed = 3,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(206889692538, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Sometimes the Revolution requires sacrificing a small portion of the truth."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(348286884025, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Это понятно."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(195824409333, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "Your revolution is horsecrap."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(938616283321, --[[Conversation Chimurenga_1 Text voice:Raven section:Chimurenga_1 keyword:Wasn't the mine held by the Legion?]] "So much for high ideals, huh?"),
}),
},
}),
},
}),
},
id = "Capitalistforces",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "DRMaquisLiberated" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.DRMaquisLiberated
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "RescueBiff",
Vars = set({
ChimurengaBiffResolved = false,
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['RescueBiff'] or QuestGetState('RescueBiff')
return not quest.ChimurengaBiffResolved and not quest.Completed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MERC_Diamond",
QuestId = "RescueBiff",
}),
},
Keyword = "We didn’t find M.E.R.C. in Diamond Red",
KeywordT = T(951193418467, --[[Conversation Chimurenga_1 KeywordT]] "We didn’t find M.E.R.C. in Diamond Red"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(739652613865, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "I am sorry to hear that. I need to see one of your comrades as well... It seems they <em>took something from us</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(381591790812, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] 'Ah, now they are "our" comrades, huh?'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(668935349187, --[[Conversation Chimurenga_1 Text voice:Magic section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "I hope they did. Seems to me like you owe them."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(515967218415, --[[Conversation Chimurenga_1 Text voice:Wolf section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "They tried to help you out. Maybe you should call it even?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(983731693457, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "During the battle for Diamond Red, one of my elite fighters was able to retrieve an exquisite <em>green diamond</em> from the mine."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(954646094027, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "Elite fighter? Sound more like idiot fighter."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(562425064140, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "Oh, I remember! When they pinned us down, I saw this guy leave his position and instead of covering us, he ran over to the main building. And I thought to myself - ah, what an elite fighter!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(201580698762, --[[Conversation Chimurenga_1 Text voice:Scope section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "Let me get this straight. Instead of fighting, your man was looting?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(850803568607, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "I prefer to see it as making the best of a bad situation."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(639145356294, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "And I hope the damned fool got a bullet in his arse!"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(919718130903, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "He did. He died."),
}),
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(853717769118, --[[Conversation Chimurenga_1 Text voice:Red section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "Well... Good!"),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(530844139498, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "I am told he trusted it to your comrades and made them swear as he died in their arms to bring the <em>diamond</em> to me. I hope they have a good reason for not doing so."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(800649698384, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "Yeah, man, it's outrageous. What about me?! I got a bunch of cheap drugs and no diamond at all."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(760177394680, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:We didn’t find M.E.R.C. in Diamond Red]] "We'll help you retrieve it, man. You have my gun! And my crowbar! And my booby-trapped teddy bear!"),
}),
},
}),
},
}),
},
id = "WedidntfindMERCinDiamondRed",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "MentionRetreat" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.MentionRetreat
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "RescueBiff",
Vars = set({
ChimurengaBiffResolved = false,
Completed = false,
MERC_Diamond = true,
}),
__eval = function ()
local quest = gv_Quests['RescueBiff'] or QuestGetState('RescueBiff')
return not quest.ChimurengaBiffResolved and not quest.Completed and quest.MERC_Diamond
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Lead_LarryLocation",
QuestId = "Larry",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MERC_Location",
QuestId = "RescueBiff",
}),
},
Keyword = "Where do you think M.E.R.C. went?",
KeywordT = T(572206790384, --[[Conversation Chimurenga_1 KeywordT]] "Where do you think M.E.R.C. went?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(519285701653, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "One of them was taken prisoner - they transferred him to <em>Camp Savane</em>. I don't know about the main group, but if were in their shoes, I would retreat to the <em>Highlands</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(948453051477, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "Hello! Is it me you're looking for?"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(315268610464, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "Glad to see you survived, my friend."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(853226270848, --[[Conversation Chimurenga_1 Text voice:Larry_Clean section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "I have a name, man! Now that I can remember it."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(176106833901, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "Glad to see you survived, my friend."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(578929146124, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "I hope you're not bamboozling us this time, Woody."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(195517664937, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "I trust you to find them, and I want the <em>green diamond</em> back. It belongs to the People."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(254264118367, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Where do you think M.E.R.C. went?]] "Yeah... I even know the People by name."),
}),
},
}),
},
}),
},
id = "WheredoyouthinkMERCwent2",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "Maquis Manifesto",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set({
ChimurengaRevolution = true,
MaquisPamphlets = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.ChimurengaRevolution and not quest.MaquisPamphlets
end,
}),
},
Keyword = "How can we help the Revolution?",
KeywordT = T(720117512144, --[[Conversation Chimurenga_1 KeywordT]] "How can we help the Revolution?"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(217010235065, --[[Conversation Chimurenga_1 Text voice:Ivan section:Chimurenga_1 keyword:How can we help the Revolution?]] "We can lend hand, товарищ."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(275213180058, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:How can we help the Revolution?]] "Maybe you give commendation for help growing Revolution?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(216076934917, --[[Conversation Chimurenga_1 Text voice:Livewire section:Chimurenga_1 keyword:How can we help the Revolution?]] "I think you are some of the nicest people I have met so far. Do you need anything stolen, er, procured?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(543533368877, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:How can we help the Revolution?]] "I suppose you blokes aren't all bad. You need any help with your little Revolution?"),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(399815970889, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:How can we help the Revolution?]] "I know you have your own mission. But if you want to be comrades of the Revolution, there is another thing you can do for us. Take these pamphlets with the <em>Maquis Manifesto</em> and let them reach everyone you talk to. The People must learn of our struggle!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(647111231194, --[[Conversation Chimurenga_1 Text voice:Buns section:Chimurenga_1 keyword:How can we help the Revolution?]] "Especially about your struggle with grammar, as I happen to notice while I'm reading it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(392035968880, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:How can we help the Revolution?]] "Sounds like a great way to meet new people."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(299323724802, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:How can we help the Revolution?]] "This is very unapproving!"),
}),
},
}),
},
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "HowcanwehelptheRevolution",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphlets",
QuestId = "PantagruelDramas",
}),
PlaceObj('UnitGrantItem', {
ItemId = "Pamphlets",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphlets",
QuestId = "PantagruelDramas",
}),
},
GoTo = "<root>",
Keyword = "Alright, why not",
KeywordT = T(613710683595, --[[Conversation Chimurenga_1 KeywordT]] "Alright, why not"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(770239438196, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Alright, why not]] "Spread the word and let the world know we stand united as comrades!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(963432771573, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Alright, why not]] "Whoa, whoa, whoa, let's not overdo it, Woody."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(823828595902, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:Alright, why not]] "I didn't never not approve of this!..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(977265888829, --[[Conversation Chimurenga_1 Text voice:Larry section:Chimurenga_1 keyword:Alright, why not]] "May I illustrate them? I've got my crayons!"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(945455447666, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Alright, why not]] "Um... No."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(193258707946, --[[Conversation Chimurenga_1 Text voice:Smiley section:Chimurenga_1 keyword:Alright, why not]] "This is a good idea. I will make sure this is put in the hands of every girl in town!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(881822928996, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Alright, why not]] "I wouldn't go that far, Chimichanga, but I guess there's no harm in letting people make up their own minds about your little Revolution."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(406162989416, --[[Conversation Chimurenga_1 Text voice:Ice section:Chimurenga_1 keyword:Alright, why not]] "Whoa... Did I just join a gang?"),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Alrightwhynot",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Rather not",
KeywordT = T(228396692652, --[[Conversation Chimurenga_1 KeywordT]] "Rather not"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(381644073112, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Rather not]] "I see I cannot consider you as my comrades. This is fine."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "sarcastic",
Character = "Steroid",
Text = T(547885048827, --[[Conversation Chimurenga_1 Text sarcastic voice:Steroid section:Chimurenga_1 keyword:Rather not]] "I am in deep pity for that!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(194032269955, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Rather not]] "Cry me a river, Woody."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(200822747164, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:Rather not]] "Sorry, Chimichanga. Uncle Sam would never forgive me."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_back",
id = "Rathernot",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "Maquis Manifesto",
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "Pamphlets",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "MaquisPamphlets", "MaquisPamphletsOffer" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.MaquisPamphlets and quest.MaquisPamphletsOffer
end,
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "PamphletsGiven",
Prop2 = "PamphletsMax",
QuestId = "RebelManifesto",
QuestId2 = "RebelManifesto",
}),
},
Keyword = "Maman has this idea…",
KeywordT = T(361924633685, --[[Conversation Chimurenga_1 KeywordT]] "Maman has this idea…"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(204706833864, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Maman has this idea…]] "You want to do... WHAT?! Out of the question. The Maquis Manifesto can't be associated with some brothel!"),
}),
},
NoBackOption = true,
PhraseRolloverText = T(148206629078, --[[Conversation Chimurenga_1 PhraseRolloverText]] "Maman wants <em>Chimurenga</em> to include a <em>Lys Rouge advertisement</em> in his pamphlets"),
StoryBranchIcon = "conversation_arrow",
id = "Mamanhasthisidea",
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Wisdom",
StatValue = 80,
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "Pamphlets",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphletsAd",
QuestId = "PantagruelDramas",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphletsOffer",
QuestId = "PantagruelDramas",
Set = false,
}),
PlaceObj('UnitTakeItem', {
ItemId = "Pamphlets",
}),
PlaceObj('UnitGrantItem', {
ItemId = "Pamphlets_LysRouge",
}),
},
GoTo = "<root>",
Keyword = "This is how you reach the masses",
KeywordT = T(256532438932, --[[Conversation Chimurenga_1 KeywordT]] "This is how you reach the masses"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(834806236411, --[[Conversation Chimurenga_1 Text voice:Fauda section:Chimurenga_1 keyword:This is how you reach the masses]] "People will see that the Revolution cares about their... needs."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(515530991063, --[[Conversation Chimurenga_1 Text voice:Kalyna section:Chimurenga_1 keyword:This is how you reach the masses]] "Your manifesto is a little dry. It could use some... uh, juice."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(974790267253, --[[Conversation Chimurenga_1 Text voice:Livewire section:Chimurenga_1 keyword:This is how you reach the masses]] "Pretty pictures are a great way to keep people distracted!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(982716547376, --[[Conversation Chimurenga_1 Text voice:Reaper section:Chimurenga_1 keyword:This is how you reach the masses]] "Like sheep to the shepherd, they will come... That may have been an awkward metaphor for this situation."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(388157388891, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:This is how you reach the masses]] "You think? I guess the masses need their opium in one form or another."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(455773284772, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:This is how you reach the masses]] "Well, both the Commies and the whores will screw them. At least the girls know their business."),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(800201440387, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:This is how you reach the masses]] "The Revolution is no business! We shall unite the Proletariat and lead them to a bright future!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(852055734274, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:This is how you reach the masses]] 'They are dubbed "working girls", hence they are part of the Proletariat and the masses.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(305333548495, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:This is how you reach the masses]] "It is either that, or we add pictures of Gena the Crocodile."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(605662417617, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:This is how you reach the masses]] "Alright, I agree to this historic compromise."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Thisishowyoureachthemasses",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "Pamphlets",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphletsAd",
QuestId = "PantagruelDramas",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisPamphletsOffer",
QuestId = "PantagruelDramas",
Set = false,
}),
PlaceObj('UnitTakeItem', {
ItemId = "Pamphlets",
}),
PlaceObj('UnitGrantItem', {
ItemId = "Pamphlets_LysRouge",
}),
},
GoTo = "<root>",
Keyword = "Dress the girls like Maquis!",
KeywordT = T(482613548412, --[[Conversation Chimurenga_1 KeywordT]] "Dress the girls like Maquis!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(286596130901, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "You could ask the girls to wear cute little berets!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(453276555480, --[[Conversation Chimurenga_1 Text voice:Livewire section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "You could ask the ladies to pose with hammers and sickles."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(271096680170, --[[Conversation Chimurenga_1 Text voice:Magic section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "I bet those girls got some real nice communist-red lingerie they could wear."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(794768771925, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "You think that would look appropriate? Hmm. Well, I suppose if they behave for the photo and we dress them properly..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(900285521641, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "You better undress them properly."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(317395335478, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Dress the girls like Maquis!]] "Alright, I agree. Just make sure you deliver the pamphlets."),
}),
},
StoryBranchIcon = "conversation_action",
id = "DressthegirlslikeMaquis",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Whatever",
KeywordT = T(229331236660, --[[Conversation Chimurenga_1 KeywordT]] "Whatever"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(216012416610, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Whatever]] "Now stop joking around and do what you promised. Let those pamphlets get to the People!"),
}),
},
StoryBranchIcon = "conversation_back",
id = "Okay",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelClinic",
Vars = set({
Completed = false,
Failed = false,
MaquisConvinced = false,
MentionMaquis = true,
}),
__eval = function ()
local quest = gv_Quests['PantagruelClinic'] or QuestGetState('PantagruelClinic')
return not quest.Completed and not quest.Failed and not quest.MaquisConvinced and quest.MentionMaquis
end,
}),
},
Keyword = "About the Clinic…",
KeywordT = T(190684793048, --[[Conversation Chimurenga_1 KeywordT]] "About the Clinic…"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(539722067609, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:About the Clinic…]] 'We sorely need that clinic, but my answer remains "no." Healthcare should be free for everyone, especially for my freedom fighters.'),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "AbouttheClinic",
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Pantagruel",
Condition = ">=",
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = -10,
City = "Pantagruel",
SpecialConversationMessage = T(410083423766, --[[Conversation Chimurenga_1 SpecialConversationMessage]] "bad impression on <em>Chimurenga</em>"),
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisConvinced",
QuestId = "PantagruelClinic",
}),
},
GoTo = "<root>",
Keyword = "You need to reconsider… comrade",
KeywordT = T(979210869997, --[[Conversation Chimurenga_1 KeywordT]] "You need to reconsider… comrade"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(309677830488, --[[Conversation Chimurenga_1 Text voice:Igor section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Come on, comrade Cheburashka!"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(381190004763, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You need to reconsider… comrade]] "You are starting to get on my nerves."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(300063453624, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Come on, Chimichanga, quit being an old grump."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(335436414212, --[[Conversation Chimurenga_1 Text voice:MD section:Chimurenga_1 keyword:You need to reconsider… comrade]] "What better way to make new comrades than to share the same healthcare everyone else uses?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(658888429908, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Alright, I owe you a favor. Let it be as he requires. My Maquis will have to pay for medical service."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(403581218960, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Seems like the taint of Capitalism is all over you, Woody! Will you ever wash the stain, eh? He-he."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(822061625747, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:You need to reconsider… comrade]] "You're all right in my book, Chimichanga!"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(466937353697, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:You need to reconsider… comrade]] 'Please... Just call me "comrade".'),
}),
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(424321660979, --[[Conversation Chimurenga_1 Text voice:Grizzly section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Nonsense! We're on a first name basis here!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(230788318572, --[[Conversation Chimurenga_1 Text voice:Steroid section:Chimurenga_1 keyword:You need to reconsider… comrade]] "Yes! You WILL pay!"),
}),
},
}),
},
}),
},
ShowDisabled = true,
StoryBranchIcon = "conversation_friendly",
id = "Pleasereconsidercomrade",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MaquisConvinced",
QuestId = "PantagruelClinic",
}),
},
GoTo = "<root>",
Keyword = "Ask them to pay for protection!",
KeywordT = T(904666993929, --[[Conversation Chimurenga_1 KeywordT]] "Ask them to pay for protection!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(976093539790, --[[Conversation Chimurenga_1 Text voice:Livewire section:Chimurenga_1 keyword:Ask them to pay for protection!]] "Easy-peasy, grandpa! Ask them for payment for protection or something and then subtract - and boom! Free healthcare!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(591155081159, --[[Conversation Chimurenga_1 Text voice:Magic section:Chimurenga_1 keyword:Ask them to pay for protection!]] 'You just stroll down there and say: "Real nice clinic you got here. Be a shame if something were to happen to it." Ya dig?'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(349859329874, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:Ask them to pay for protection!]] "I'm sure they'd be happy to pay a big, strong man like you to protect them."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(787517241246, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Ask them to pay for protection!]] "What do you mean? We pay them for medical service and... then they pay us back for protecting them? Hmm, this may work. It helps me to save face."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(556378166195, --[[Conversation Chimurenga_1 Text voice:Gus section:Chimurenga_1 keyword:Ask them to pay for protection!]] "Welcome to Capitalism, Woody! Hope it doesn't hurt much."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "Askthemtopayforprotection",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "first condition checks if he heard about Maman and the second one (OR) makes sure there is space for this option in the conversation",
Conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "PantagruelDramas",
Vars = set( "MamanFeelings", "MaquisPamphletsOffer" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.MamanFeelings or quest.MaquisPamphletsOffer
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "PantagruelDramas",
Vars = set({
MaquisPamphlets = false,
MaquisPamphletsAd = true,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return not quest.MaquisPamphlets or quest.MaquisPamphletsAd
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "PantagruelClinic",
Vars = set({
Completed = true,
Failed = true,
MaquisConvinced = true,
MentionMaquis = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelClinic'] or QuestGetState('PantagruelClinic')
return quest.Completed or quest.Failed or quest.MaquisConvinced or not quest.MentionMaquis
end,
}),
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set( "ChimurengaRevolution" ),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return quest.ChimurengaRevolution
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MentionChimurenga",
QuestId = "PantagruelDramas",
}),
},
Keyword = "What do you think of Maman Liliane?",
KeywordT = T(694942493903, --[[Conversation Chimurenga_1 KeywordT]] "What do you think of Maman Liliane?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(523237641973, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "She is a very brave and beautiful woman. Perhaps in another life... Alas, the Revolution is my bride and the Maquis are my children."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(767800039121, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "You like her, you naughty old man!"),
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(545707340421, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "I thought I was better at keeping secrets."),
}),
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(642324325237, --[[Conversation Chimurenga_1 Text voice:Fox section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "You can't fool a woman about such things."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(726537377580, --[[Conversation Chimurenga_1 Text voice:Raven section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "It doesn't have to always be like that."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(364034198589, --[[Conversation Chimurenga_1 Text voice:Scully section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "Crikey... And here I thought I had a lot of kids."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(899762842996, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:What do you think of Maman Liliane?]] "Maybe one day, if I ever retire... But let's not talk of that. My feelings for Liliane and the Revolution are two separate things."),
}),
},
id = "WhatdoyouthinkofMamanLiliane",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Chimurenga_1 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Chimurenga",
Text = T(517858138846, --[[Conversation Chimurenga_1 Text voice:Chimurenga section:Chimurenga_1 keyword:Goodbye]] "Good luck in your struggle!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
})
|