File size: 103,632 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "Broker",
Conditions = {
PlaceObj('SectorIsInConflict', {
Negate = true,
sector_id = "H9",
}),
},
DefaultActor = "Broker",
Parameters = {
PlaceObj('PresetParamNumber', {
'Name', "NeclacePrice_High",
'Value', 15000,
'Tag', "<NeclacePrice_High>",
}),
PlaceObj('PresetParamNumber', {
'Name', "NeclacePrice_Mid",
'Value', 12000,
'Tag', "<NeclacePrice_Mid>",
}),
PlaceObj('PresetParamNumber', {
'Name', "NeclacePrice_Low",
'Value', 3000,
'Tag', "<NeclacePrice_Low>",
}),
PlaceObj('PresetParamNumber', {
'Name', "LoyaltyGain",
'Value', 5,
'Tag', "<LoyaltyGain>",
}),
},
disabledInConflict = true,
group = "Savanna - Fleatown",
id = "Broker_1",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(749869918467, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting]] "Welcome to my little corner of Fleatown! My name is Lalee. You here to buy or sell? Don't tell me, let me guess... You're here about <em>diamonds</em>, right? I got a <em>good nose</em> for diamond traders - they smell like dirt, sweat, and blood. Or maybe that's just your clothes. Errr, no offense, of course."),
}),
},
id = "Greeting",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "DiamondNecklace",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
Completed = false,
Failed = false,
Given = true,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.Completed and not quest.Failed and quest.Given
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(393635307311, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting2]] "Have you found the necklace of Madam Lecoq? Please, tell me you got it!"),
}),
},
NoBackOption = true,
id = "Greeting2",
PlaceObj('ConversationPhrase', {
Align = "right",
Keyword = "We have the necklace",
KeywordT = T(635956574878, --[[Conversation Broker_1 KeywordT]] "We have the necklace"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(582515219690, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:We have the necklace]] "Let me see it! Oh, looking good! I can't wait to see how much I can squeeze out of those diamond-hungry <em>Adonis</em> fools for it! But I am getting ahead of myself. How do you feel about letting it go for <em>three grand</em>?"),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_action",
id = "Ihavethenecklace",
PlaceObj('ConversationPhrase', {
Align = "right",
CompleteQuests = {
"TheTwelveChairs",
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "DiamondNecklace",
}),
PlaceObj('PlayerGrantMoney', {
Amount = 3000,
param_bindings = {
Amount = "NeclacePrice_Low",
},
}),
PlaceObj('UnitGrantItem', {
LootTableId = "Herman_Diamonds",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "SoldToBroker",
QuestId = "TheTwelveChairs",
}),
PlaceObj('CityGrantLoyalty', {
Amount = 10,
City = "Fleatown",
SpecialConversationMessage = T(353790174869, --[[Conversation Broker_1 SpecialConversationMessage]] "sold the necklace to <em>Lalee</em>"),
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Medium",
}),
},
GoTo = "<root>",
Keyword = "Okay, here it is",
KeywordT = T(617159912542, --[[Conversation Broker_1 KeywordT]] "Okay, here it is"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(871023589221, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Okay, here it is]] "That's the way to strike a deal! Boom, and it's done! Here, take the money plus a little present in appreciation for not wasting my time. Hope you like it!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(859416979219, --[[Conversation Broker_1 Text voice:Red section:Broker_1 keyword:Okay, here it is]] "May have left a wee bit of money on the table, but the vest will come in handy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(179207844650, --[[Conversation Broker_1 Text voice:Fox section:Broker_1 keyword:Okay, here it is]] "I do like presents, especially ones I can put on... and then take off."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(387627926070, --[[Conversation Broker_1 Text voice:Gus section:Broker_1 keyword:Okay, here it is]] "I'll take a Kevlar vest over a dang necklace any day!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(141912780817, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:Okay, here it is]] "A Kevlar vest, huh? It's cute, but not my type."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_trade",
id = "Okay",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
CompleteQuests = {
"TheTwelveChairs",
},
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Negotiator",
Negate = true,
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "DiamondNecklace",
}),
PlaceObj('PlayerGrantMoney', {
Amount = 12000,
param_bindings = {
Amount = "NeclacePrice_Mid",
},
}),
PlaceObj('QuestSetVariableBool', {
Prop = "SoldToBroker",
QuestId = "TheTwelveChairs",
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Medium",
}),
},
GoTo = "<root>",
Keyword = "Fifty grand!",
KeywordT = T(374022391200, --[[Conversation Broker_1 KeywordT]] "Fifty grand!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(879220880405, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Fifty grand!]] "Fifty!? You see the Hope Diamond on this thing or something? No. Best I can do is ten grand."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(685840260783, --[[Conversation Broker_1 Text voice:Tex section:Broker_1 keyword:Fifty grand!]] "Then we go sell somewhere else!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(969434139681, --[[Conversation Broker_1 Text voice:Raven section:Broker_1 keyword:Fifty grand!]] "I'll tell you what I DO see - a robbery in progress!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(699341801550, --[[Conversation Broker_1 Text voice:Scope section:Broker_1 keyword:Fifty grand!]] "We had to ruin a good deal of fine upholstery to find this thing, you know."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(358568169923, --[[Conversation Broker_1 Text voice:Blood section:Broker_1 keyword:Fifty grand!]] "A lot of blood was spilled over this necklace... or at least, there could be."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(638038412070, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Fifty grand!]] "But, wait. No. For you, I can do better. Probably wasn't easy finding it, right? You deserve a little extra for that! <em>Twelve grand</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(803522628903, --[[Conversation Broker_1 Text voice:Tex section:Broker_1 keyword:Fifty grand!]] "Good thing I know how to haggle!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_trade",
id = "OkayMid",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
CompleteQuests = {
"TheTwelveChairs",
},
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Negotiator",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "DiamondNecklace",
}),
PlaceObj('PlayerGrantMoney', {
Amount = 15000,
param_bindings = {
Amount = "NeclacePrice_High",
},
}),
PlaceObj('QuestSetVariableBool', {
Prop = "SoldToBroker",
QuestId = "TheTwelveChairs",
}),
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Fleatown",
SpecialConversationMessage = T(320027619657, --[[Conversation Broker_1 SpecialConversationMessage]] "sold the necklace to <em>Lalee</em>"),
param_bindings = {},
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Medium",
}),
},
GoTo = "<root>",
Keyword = "Make it twenty",
KeywordT = T(629782640102, --[[Conversation Broker_1 KeywordT]] "Make it twenty"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(795515502559, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:Make it twenty]] "We have already paid you a diamond for the information that has lead us to finding this necklace. We are not, however, bound by contract to sell it to you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(430116188897, --[[Conversation Broker_1 Text voice:Raider section:Broker_1 keyword:Make it twenty]] "That necklace looks valuable. Maybe we should consider finding its rightful owner."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(108535011221, --[[Conversation Broker_1 Text voice:Sidney section:Broker_1 keyword:Make it twenty]] "Allow me to clarify. You were good enough to sell us the information regarding this object. However, since a price for the object was not stipulated at the time, we are not bound to solely consider your offer..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(897982990675, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Make it twenty]] "You certainly know how to haggle. Shall we agree to <em>fifteen grand</em>? It's refreshing to meet someone who can really play this game. Haggling is better than chess, change my mind!"),
}),
},
StoryBranchIcon = "conversation_trade",
id = "OkayMax",
}),
PlaceObj('ConversationPhrase', {
Keyword = "Adonis?!",
KeywordT = T(824788006643, --[[Conversation Broker_1 KeywordT]] "Adonis?!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(168507264975, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Adonis?!]] "Since they lost control of their mines, they've been gobbling up all the diamonds that appear on the black market. The fools are paying top dollar! Diamonds make people crazy."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "sarcastic",
Character = "Raven",
Text = T(660675868550, --[[Conversation Broker_1 Text sarcastic voice:Raven section:Broker_1 keyword:Adonis?!]] "I hadn't noticed."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(826195066013, --[[Conversation Broker_1 Text voice:Blood section:Broker_1 keyword:Adonis?!]] "Typical colonizer move."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(921515699151, --[[Conversation Broker_1 Text voice:Fauda section:Broker_1 keyword:Adonis?!]] "They seek to accomplish their objective through other means. Makes sense."),
}),
},
}),
},
}),
},
id = "Adonis",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Still searching for it",
KeywordT = T(368312669134, --[[Conversation Broker_1 KeywordT]] "Still searching for it"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(581644237103, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Still searching for it]] "You come to me first if you find it, okay? You won't find a better deal anywhere else, and besides, don't forget that I was the one who tipped you off, eh?"),
}),
},
PhraseRolloverText = T(238086260201, --[[Conversation Broker_1 PhraseRolloverText]] "Lie"),
StoryBranchIcon = "conversation_action",
id = "lieStillsearchingforit",
}),
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('PlayerControlSectors', {
Amount = 1,
Condition = ">=",
POIs = "Mine",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
BossInvited = false,
MentionFavor = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.BossInvited and not quest.MentionFavor
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
BossDead = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "RimvilleGuardsLogic",
Vars = set({
TCE_AlertAllGuards = false,
}),
__eval = function ()
local quest = gv_Quests['RimvilleGuardsLogic'] or QuestGetState('RimvilleGuardsLogic')
return not quest.TCE_AlertAllGuards
end,
}),
PlaceObj('VillainIsDefeated', {
Group = "FleatownBoss",
Negate = true,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BossInvited",
QuestId = "Luigi",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(985023898315, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting9]] "My friends! I heard that <em>Boss Blaubert</em> wants to meet you. You won't forget your old friend Lalee now that you're swimming with the big fish, eh?"),
}),
},
id = "Greeting9",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "Needs a condition added to check if the player has found at least one chair and no necklace.",
Conditions = {
PlaceObj('QuestIsVariableNum', {
Amount = 1,
Prop = "NumberChairsFound",
QuestId = "TheTwelveChairs",
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "DiamondNecklace",
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
Completed = false,
Failed = false,
Given = true,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.Completed and not quest.Failed and quest.Given
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(921690043598, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting4]] "Found a chair but no necklace, eh? Don't get discouraged!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(670258508786, --[[Conversation Broker_1 Text voice:Fauda section:Broker_1 keyword:Greeting4]] "We have more important things to do than playing your game of chairs."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(631234327074, --[[Conversation Broker_1 Text voice:Thor section:Broker_1 keyword:Greeting4]] "Oh, I never get discouraged. That's what my breathing exercises are for."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(310578538192, --[[Conversation Broker_1 Text voice:Meltdown section:Broker_1 keyword:Greeting4]] "I ain't discouraged. You'll know when I get discouraged. Stuff usually blows up."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(950934124032, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting4]] "I'm telling you, the necklace is inside the lining of one of those chairs! Keep looking! Find the <em>diamond necklace</em>, bring it to me and I'll give you a good price for it."),
}),
},
id = "Greeting4",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerGossip",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(564374947916, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting3]] "Well hello, my friends! You need <em>information</em>, or you just love to see my face?"),
}),
},
VariantPhrase = true,
id = "Greeting3",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerGossip",
QuestId = "TheTwelveChairs",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerLootBoxes",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(279596739430, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting6]] "Well hello, my friends! I just came up with a great new concept. I call it <em>subscription</em>. You give me a diamond a month, and in return I will mail you a loot box! Great idea, isn't it?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(658195470558, --[[Conversation Broker_1 Text voice:Red section:Broker_1 keyword:Greeting6]] "That's a crock o'shit, lad. I willnae be buyin' somethin' I dinnae need, ye ken?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(611191309034, --[[Conversation Broker_1 Text voice:Meltdown section:Broker_1 keyword:Greeting6]] "Last guy who tried to sell me a subscription got a magazine jammed up his ass."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(846540570589, --[[Conversation Broker_1 Text voice:Igor section:Broker_1 keyword:Greeting6]] "I am already subscribed to vodka-of-the-month club."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(184067013805, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting6]] "Are you here to buy <em>loot boxes</em>, or you need <em>information</em>?"),
}),
},
VariantPhrase = true,
id = "Greeting6",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerGossip",
QuestId = "TheTwelveChairs",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerLootBoxes",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(815236330647, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting7]] "Well hello, my friends! Tell me what you think of this: the <em>season pass</em>! You give me a lot of diamonds up front, and I will give you a lot of loot boxes at some point in the future! Sounds exciting, eh?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(889650002266, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:Greeting7]] "So we don't even get a cat in a sack for our money, but only the promise of a potential cat in a sack?!"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(408637463504, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting7]] "Exactly! This is the future of commerce!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(451261008624, --[[Conversation Broker_1 Text voice:Igor section:Broker_1 keyword:Greeting7]] "What about opposite: You give me vodka. I drink all of it. Next day, you come for payment while I have hangover. I guarantee you get biggest deal of your life."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(119414743248, --[[Conversation Broker_1 Text voice:Grunty section:Broker_1 keyword:Greeting7]] "Ach! So complicated! I would rather go back to the barter system."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(796224413598, --[[Conversation Broker_1 Text voice:Grizzly section:Broker_1 keyword:Greeting7]] "Only season pass I have is for football - the MANLY kind of football, not this sissy-footsy ball you got over here."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(334947362178, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting7]] "Are you here to buy <em>loot boxes</em>, or you need <em>information</em>?"),
}),
},
VariantPhrase = true,
id = "Greeting7",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerGossip",
QuestId = "TheTwelveChairs",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerLootBoxes",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Broker_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(556669241332, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting8]] "Well hello, my friends! You know, diamonds are great, but with so many people trying to control mining, cutting, selling... bleh! It's confusing! I'm thinking I should introduce a new kind of currency - an electric currency - controlled by just me, trustworthy Lalee! I call it <em>shitcoins</em>! Working title. "),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(604531643118, --[[Conversation Broker_1 Text voice:Mouse section:Broker_1 keyword:Greeting8]] "In that case, why don't you give me the diamonds and you keep your... er, whatever it is you called it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(830483155937, --[[Conversation Broker_1 Text voice:Livewire section:Broker_1 keyword:Greeting8]] "Well, you will need some kind of a public ledger, as well as some way to encrypt and broadcast the transactions... Hmm, I'll give it some thought."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(900207257121, --[[Conversation Broker_1 Text voice:Wolf section:Broker_1 keyword:Greeting8]] "Yeah, you might want to workshop that title a bit."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(972714683964, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Greeting8]] "Are you here to buy <em>loot boxes</em>, or you need <em>information</em>?"),
}),
},
VariantPhrase = true,
id = "Greeting8",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
BrokerGossip = true,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return quest.BrokerGossip
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
PhraseId = "WhatInformation2",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "Broker_1",
PhraseId = "WhatInformation2",
Seen = true,
}),
},
GoTo = "WhatInformation2",
Keyword = "What information?",
KeywordT = T(596075870444, --[[Conversation Broker_1 KeywordT]] "What information?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(279263997736, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What information?]] "Oh, I happen to know all sorts of things. If you would be kind enough to grant me a <em>tiny diamond</em>, trusty Lalee will tell you a secret. What do you say? Trade what's in my head for what's in your pockets?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(859602180399, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What information?]] "A whole diamond for your pep talk? You be crazy, mon."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(413465561242, --[[Conversation Broker_1 Text voice:Len section:Broker_1 keyword:What information?]] "If it's good intel, it's a deal. If it's not, then we might have a problem."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(802789825450, --[[Conversation Broker_1 Text voice:Shadow section:Broker_1 keyword:What information?]] "I give you a diamond and you give me a story? Better be one hell of a story."),
}),
},
}),
},
}),
},
id = "WhatInformation1",
}),
PlaceObj('ConversationPhrase', {
Enabled = false,
Keyword = "What information?",
KeywordT = T(596075870444, --[[Conversation Broker_1 KeywordT]] "What information?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(135028141416, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What information?]] "I know what's cooking! One <em>tiny diamond</em> for each recipe, my friends."),
}),
},
ShowDisabled = true,
id = "WhatInformation2",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
Completed = false,
Failed = false,
Given = false,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.Completed and not quest.Failed and not quest.Given
end,
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "Broker_1",
PhraseId = "RemindUsAboutThe12Chairs",
Seen = true,
}),
},
GiveQuests = {
"TheTwelveChairs",
},
GoTo = "RemindUsAboutThe12Chairs",
Keyword = "How do we get rich?",
KeywordT = T(609408091901, --[[Conversation Broker_1 KeywordT]] "How do we get rich?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(220257602671, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:How do we get rich?]] "Save your money and never get sick. Next question. I am joking with you, of course! It just so happens your friend Lalee has a little get-rich-quick scheme you might be interested in..."),
}),
},
NoBackOption = true,
PlayGoToPhrase = true,
ShowDisabled = true,
StoryBranchIcon = "conversation_trade",
id = "HowdoIgetrich",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
Completed = false,
Failed = false,
Given = true,
Lead_Broker = false,
SmileyMet = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.Completed and not quest.Failed and quest.Given and not quest.Lead_Broker and not quest.SmileyMet
end,
}),
},
GoTo = "WhatInformation2",
Keyword = "Something about Smiley",
KeywordT = T(227068826348, --[[Conversation Broker_1 KeywordT]] "Something about Smiley"),
PhraseRolloverText = T(107705575214, --[[Conversation Broker_1 PhraseRolloverText]] "<color EmStyle>1 Tiny Diamond</color> required"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_trade",
id = "SomethingaboutSmiley_Initial",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
Completed = false,
Failed = false,
Given = true,
SmileyMet = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.Completed and not quest.Failed and quest.Given and not quest.SmileyMet
end,
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('ConditionalEffect', {
'Conditions', {
PlaceObj('QuestIsVariableNum', {
Amount = 3,
Condition = "<",
Prop = "Clues",
QuestId = "Smiley",
}),
},
'Effects', {
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Clues",
QuestId = "Smiley",
}),
PlaceObj('LogMessageAdd', {
message = T(790832201643, --[[Conversation Broker_1 message]] "Clue: <em>Smiley</em> was with Father Tooker in Fleatown"),
}),
},
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Lead_Broker",
QuestId = "Smiley",
}),
},
Keyword = "Something about Smiley",
KeywordT = T(227068826348, --[[Conversation Broker_1 KeywordT]] "Something about Smiley"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(885707807242, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Something about Smiley]] "I knew it! You are after the boy! You're not the only one. A group of smugglers went after his girl and he <em>killed</em> one of them. They were ready to cut him down on the spot!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"Mala\'dets" - meaning champion',
Character = "Ivan",
Text = T(263789542222, --[[Conversation Broker_1 Text "Mala'dets" - meaning champion voice:Ivan section:Broker_1 keyword:Something about Smiley]] "Молодец!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(625661445050, --[[Conversation Broker_1 Text voice:Grizzly section:Broker_1 keyword:Something about Smiley]] "Kid's got balls."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(317366269894, --[[Conversation Broker_1 Text voice:Wolf section:Broker_1 keyword:Something about Smiley]] "Sticks up for his girl, huh? I like him already."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(184363308274, --[[Conversation Broker_1 Text voice:Kalyna section:Broker_1 keyword:Something about Smiley]] "Like a prince from a fairy tale!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(135756247316, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Something about Smiley]] "I don't blame the boy - the <em>Carnival Queen</em> from <em>Pantagruel</em> is quite a treat. He was about to get sliced into pieces, but Boss Blaubert himself intervened and told the smugglers to get out. You should have seen their faces!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(207512663954, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:Something about Smiley]] "Me, I'm starting to like this Boss."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(261848807388, --[[Conversation Broker_1 Text voice:Fox section:Broker_1 keyword:Something about Smiley]] "I'm sure this \"Boss\" was eying the girl."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(852475606487, --[[Conversation Broker_1 Text voice:Hitman section:Broker_1 keyword:Something about Smiley]] "That worked? No wonder they call him the Boss."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(433445194826, --[[Conversation Broker_1 Text voice:Magic section:Broker_1 keyword:Something about Smiley]] "Smooth. Boss likes things chill on his turf."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(926815274752, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Something about Smiley]] "And now comes the spicy part: the chick is with <em>Boss Blaubert</em> now! If you want to find her - Mollie, I think is her name - then check Blaubert's place down in <em>Rimville</em>. Be careful, though. The Boss doesn't like trespassers!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(879597873482, --[[Conversation Broker_1 Text voice:Fox section:Broker_1 keyword:Something about Smiley]] "A-ha!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(446854187571, --[[Conversation Broker_1 Text voice:Kalyna section:Broker_1 keyword:Something about Smiley]] "A captured princess! But what of the prince... er, I mean, Smiley."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(128080868369, --[[Conversation Broker_1 Text voice:Omryn section:Broker_1 keyword:Something about Smiley]] "This story is long. Is there popcorn?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(314963376544, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Something about Smiley]] "As for the boy, my exquisite nose tells me my friend <em>Father Tooker</em> knows more about him than he lets on. Uh, don't tell him I said so, though."),
}),
},
PhraseConditionRolloverText = T(908115815413, --[[Conversation Broker_1 PhraseConditionRolloverText]] "Delivered 1 x <color EmStyle>Tiny diamond</color>\nGained a <em>clue</em> about <em>Smiley</em>"),
StoryBranchIcon = "conversation_trade",
id = "SomethingaboutSmiley",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
},
Effects = {
PlaceObj('SectorGrantIntel', {
sector_id = "H9",
}),
PlaceObj('SectorGrantIntel', {
sector_id = "H8",
}),
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Fleatown",
}),
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
},
Keyword = "The secrets of this town",
KeywordT = T(484679303371, --[[Conversation Broker_1 KeywordT]] "The secrets of this town"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(920431424598, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:The secrets of this town]] "Geez, I could write a book on that topic, and it wouldn't be enough to cover it! Where should I start?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(497592841906, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:The secrets of this town]] "When writing books, I start with an outline, followed by a glossary of terms, followed by a list of contributing sources. When those are complete, I..."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(540337180249, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:The secrets of this town]] "Never mind the book. It was just a joke, eh?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(408254000164, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:The secrets of this town]] "Hmm, I think I know what you might be interested in. Come on, give me your map."),
}),
},
ShowDisabled = true,
StoryBranchIcon = "conversation_trade",
id = "Thesecretsofthistown",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Psycho",
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
Amount = 2,
ItemId = "TinyDiamonds",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
Enabled = false,
PhraseId = "WhatInformation2.Whatisthemeaningoflife2",
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Minor",
}),
},
Keyword = "What is the meaning of life?",
KeywordT = T(457674284146, --[[Conversation Broker_1 KeywordT]] "What is the meaning of life?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(481513958089, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is the meaning of life?]] "Oh, that's an easy one! It's 42. Next question!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(235921296917, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:What is the meaning of life?]] "Listen up, you little shit. How about you stop playing games with me, and I don't break your pretty nose. Deal?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(314543963314, --[[Conversation Broker_1 Text voice:Fidel section:Broker_1 keyword:What is the meaning of life?]] "How about Fidel break that many bones in your body?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(746619907882, --[[Conversation Broker_1 Text voice:Meltdown section:Broker_1 keyword:What is the meaning of life?]] "Are you trying my patience, dumbass? "),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(995345338937, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is the meaning of life?]] 'Okay, okay, I was just joking! Here, have your diamond back, and another one as a way to say "I\'m sorry". We\'re friends again, yeah?'),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(301818262024, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:What is the meaning of life?]] "We've never been buds, and we'll never be."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(914904621557, --[[Conversation Broker_1 Text voice:Meltdown section:Broker_1 keyword:What is the meaning of life?]] "We're not \"friends\", it's just me not kicking you in the nuts."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(524760587269, --[[Conversation Broker_1 Text voice:Fidel section:Broker_1 keyword:What is the meaning of life?]] "You want that?! Friends of Fidel, they no live very long. "),
}),
},
}),
},
}),
},
ShowDisabled = true,
StoryBranchIcon = "conversation_trade",
id = "Whatisthemeaningoflife",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Psycho",
Negate = true,
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
Enabled = false,
PhraseId = "WhatInformation2.Whatisthemeaningoflife",
}),
},
Keyword = "What is the meaning of life?",
KeywordT = T(457674284146, --[[Conversation Broker_1 KeywordT]] "What is the meaning of life?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(481513958089, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is the meaning of life?]] "Oh, that's an easy one! It's 42. Next question!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(289027372156, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What is the meaning of life?]] "That be a very dumb joke, mon. Give us our diamond back!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(251610189649, --[[Conversation Broker_1 Text voice:Grizzly section:Broker_1 keyword:What is the meaning of life?]] "Nerd jokes? Man, we didn't fork over a diamond for nerd jokes."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(802549532904, --[[Conversation Broker_1 Text voice:Scope section:Broker_1 keyword:What is the meaning of life?]] "That joke was old when I was young. You expect us to pay for that?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(790661782242, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is the meaning of life?]] "Come on, you asked a question! It was a fair deal."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(134674197165, --[[Conversation Broker_1 Text voice:Red section:Broker_1 keyword:What is the meaning of life?]] "Pushing yer luck, ye ken?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(919328091633, --[[Conversation Broker_1 Text voice:Livewire section:Broker_1 keyword:What is the meaning of life?]] "Actually, looking at the question from a computer programming perspective, this answer is really quite correct."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(965052784022, --[[Conversation Broker_1 Text voice:Mouse section:Broker_1 keyword:What is the meaning of life?]] "Ask a stupid question, get a stupid answer."),
}),
},
}),
},
}),
},
ShowDisabled = true,
StoryBranchIcon = "conversation_trade",
id = "Whatisthemeaningoflife2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "RefugeeBlues",
Vars = set({
Completed = false,
Failed = false,
KarenKilled = false,
KarenPassportFound = false,
KarenPassportGiven = false,
KarenQuestGiven = true,
}),
__eval = function ()
local quest = gv_Quests['RefugeeBlues'] or QuestGetState('RefugeeBlues')
return not quest.Completed and not quest.Failed and not quest.KarenKilled and not quest.KarenPassportFound and not quest.KarenPassportGiven and quest.KarenQuestGiven
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
PhraseId = "WhatInformation2.ForgeapassportforKarenGosling",
}),
},
Keyword = "Can you forge a passport?",
KeywordT = T(585617463682, --[[Conversation Broker_1 KeywordT]] "Can you forge a passport?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(930664361995, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Can you forge a passport?]] "Sure! No problem, my friends! Just tell me the name. Oh, it will cost you <em>one diamond</em>, please."),
}),
},
id = "Canyouforgeapassport",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "RefugeeBlues",
Vars = set({
Completed = false,
Failed = false,
KarenKilled = false,
KarenPassportFound = false,
KarenPassportGiven = false,
KarenQuestGiven = true,
}),
__eval = function ()
local quest = gv_Quests['RefugeeBlues'] or QuestGetState('RefugeeBlues')
return not quest.Completed and not quest.Failed and not quest.KarenKilled and not quest.KarenPassportFound and not quest.KarenPassportGiven and quest.KarenQuestGiven
end,
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "US_Passport",
Negate = true,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "KarenPassportFound",
QuestId = "RefugeeBlues",
}),
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
ItemId = "US_Passport",
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Minor",
}),
},
Enabled = false,
Keyword = "Forge a passport for Karen Gosling",
KeywordT = T(741070339900, --[[Conversation Broker_1 KeywordT]] "Forge a passport for Karen Gosling"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(318922768363, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Forge a passport for Karen Gosling]] "Here you go, even better than the real McCoy."),
}),
},
PhraseConditionRolloverText = T(871001974207, --[[Conversation Broker_1 PhraseConditionRolloverText]] "Delivered 1 x <color EmStyle>Tiny diamond</color>\nGained a forged passport for <em>Karen</em>"),
StoryBranchIcon = "conversation_trade",
id = "ForgeapassportforKarenGosling",
}),
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PantagruelDramas",
Vars = set({
ChimurengaDead = false,
ChimurengaEnemy = false,
ChimurengaLeave = false,
}),
__eval = function ()
local quest = gv_Quests['PantagruelDramas'] or QuestGetState('PantagruelDramas')
return not quest.ChimurengaDead and not quest.ChimurengaEnemy and not quest.ChimurengaLeave
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
BrokerGossip = true,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return quest.BrokerGossip
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "Pamphlets",
}),
PlaceObj('UnitSquadHasItem', {
ItemId = "Pamphlets_LysRouge",
}),
},
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 3,
City = "Pantagruel",
SpecialConversationMessage = T(688720428548, --[[Conversation Broker_1 SpecialConversationMessage]] "Maquis Manifesto"),
}),
PlaceObj('CityGrantLoyalty', {
Amount = 3,
City = "Fleatown",
SpecialConversationMessage = T(870656734498, --[[Conversation Broker_1 SpecialConversationMessage]] "Maquis Manifesto"),
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "PamphletsGiven",
QuestId = "RebelManifesto",
}),
},
Keyword = "Read this Maquis Manifesto",
KeywordT = T(576499920250, --[[Conversation Broker_1 KeywordT]] "Read this Maquis Manifesto"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(763610846438, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Read this Maquis Manifesto]] "Nice paper, very soft to the touch. Not many readers around here, but everybody poops, right? You got any more of these? Most people haven't had a good wipe in years. This is the new shit, everyone will love it!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(176388926667, --[[Conversation Broker_1 Text voice:Barry section:Broker_1 keyword:Read this Maquis Manifesto]] "I have no love for communism, but I do not think manifesto was meant to be personal hygiene aid."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(629702558495, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Read this Maquis Manifesto]] "Communists believe in propaganda. I believe in supply and demand!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(475167888785, --[[Conversation Broker_1 Text voice:Grizzly section:Broker_1 keyword:Read this Maquis Manifesto]] "Fuck yeah! Another victory for capitalism!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(674602372536, --[[Conversation Broker_1 Text voice:Igor section:Broker_1 keyword:Read this Maquis Manifesto]] "Well, at least the proletariat will have good hygiene. We will call it a win for comrade Lenin."),
}),
},
}),
},
}),
},
PhraseRolloverText = T(294821871464, --[[Conversation Broker_1 PhraseRolloverText]] "Give a propaganda pamphlet"),
StoryBranchIcon = "conversation_action",
id = "ReadthisMaquisManifesto",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
BrokerLootBoxes = false,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.BrokerLootBoxes
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerLootBoxes",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Are you buying diamonds?",
KeywordT = T(906080048590, --[[Conversation Broker_1 KeywordT]] "Are you buying diamonds?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(154032631430, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Are you buying diamonds?]] "Not buying. No, no. Trading! If you have diamonds, I have some very special items you may be interested in acquiring. You see, I have an innovative approach which one day will become the future of commerce! I'm trading only in <em>loot boxes</em>!"),
}),
},
id = "Areyoubuyingdiamonds",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
BrokerLootBoxes = true,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return quest.BrokerLootBoxes
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
PhraseId = "Lootboxes2",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "Broker_1",
PhraseId = "Lootboxes2",
Seen = true,
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
PhraseId = "Lootboxes2.Remindusabouttheselootboxes",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "Broker_1",
PhraseId = "Lootboxes2.Remindusabouttheselootboxes",
Seen = true,
}),
},
GoTo = "Lootboxes2.Remindusabouttheselootboxes",
Keyword = "Loot boxes?!",
KeywordT = T(729568239782, --[[Conversation Broker_1 KeywordT]] "Loot boxes?!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(654050104229, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Loot boxes?!]] "Oh yes!... "),
}),
},
PlayGoToPhrase = true,
id = "Lootboxes1",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Enabled = false,
Keyword = "Loot boxes",
KeywordT = T(432038144609, --[[Conversation Broker_1 KeywordT]] "Loot boxes"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(770971743360, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Loot boxes]] "Just one <em>tiny diamond</em> for a box, my friend! There could be anything inside. Definitely won't be nothing."),
}),
},
StoryBranchIcon = "conversation_trade",
id = "Lootboxes2",
PlaceObj('ConversationPhrase', {
Enabled = false,
Keyword = "Remind us about these “loot boxes”",
KeywordT = T(330170136085, --[[Conversation Broker_1 KeywordT]] "Remind us about these “loot boxes”"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(586890518346, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about these “loot boxes”]] "A <em>loot box</em> is a box of mystery! Maybe you'll find a pile of treasure or maybe you'll find a pair of dirty underwear. Who knows? Fun, right? No money involved - just <em>one tiny diamond</em> buys you a box. Buy as many boxes as you like! "),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(615173071377, --[[Conversation Broker_1 Text voice:Ivan section:Broker_1 keyword:Remind us about these “loot boxes”]] "Idiot game for idiots."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(463432629357, --[[Conversation Broker_1 Text voice:Fauda section:Broker_1 keyword:Remind us about these “loot boxes”]] "Just so we're clear - if you sell me a box of dirty underwear, I'll make you eat it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(507626449770, --[[Conversation Broker_1 Text voice:Larry section:Broker_1 keyword:Remind us about these “loot boxes”]] "Is this gambling? Sounds like gambling. I'm in!"),
}),
},
}),
},
}),
},
id = "Remindusabouttheselootboxes",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "KnowAboutBroker",
QuestId = "TheTwelveChairs",
}),
},
Enabled = false,
Keyword = "Where do we get diamonds?",
KeywordT = T(702085987637, --[[Conversation Broker_1 KeywordT]] "Where do we get diamonds?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(815631523864, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we get diamonds?]] "You should go to my good friend <em>Father Tooker</em> in La Boue! The holy man buys and sells diamonds to support his hobby of saving the souls of the needy - which is good, because those poor buggers are DAMN needy! "),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(727417633052, --[[Conversation Broker_1 Text voice:Barry section:Broker_1 keyword:Where do we get diamonds?]] "The Father has strange ideas, but he has good heart."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(947324100470, --[[Conversation Broker_1 Text voice:Thor section:Broker_1 keyword:Where do we get diamonds?]] "I'm guessing you don't get much sensitivity training around here."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(281573677362, --[[Conversation Broker_1 Text voice:Grunty section:Broker_1 keyword:Where do we get diamonds?]] "Everyone needs a hobby. Mine is collecting early twentieth century clown paraphernalia."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(695945001002, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we get diamonds?]] "And I'm proud to say that I'm contributing to his noble mission by helping him <em>resell</em> any gems he manages to find."),
}),
},
id = "WhereDoWeGetDiamonds",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
KnowAboutBroker = true,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return quest.KnowAboutBroker
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "KnowAboutPastor",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "What is your deal with Father Tooker?",
KeywordT = T(193388631525, --[[Conversation Broker_1 KeywordT]] "What is your deal with Father Tooker?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(583362271779, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "Oh, I'm glad you asked! You see, he pays about 600 per gem. If he resells them to the <em>smugglers</em>, they'd give him merely 400 per gem. That's why he makes a deal with <em>my generous person</em> for 900. Are you following me?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(464614428681, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What is your deal with Father Tooker?]] "Okay..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(833231395982, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:What is your deal with Father Tooker?]] "I already have questions..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(306353477093, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:What is your deal with Father Tooker?]] "With you so far..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(951330654929, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "Then he pays 100 more to <em>Boss Blaubert</em> in exchange for protection against acts of God and whatnot, and keeps the remaining 200 for his church. Then I sell the gems to the <em>smugglers</em> for only 400 a piece, because they are my friends and everyone must make a profit!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(634342362135, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What is your deal with Father Tooker?]] "What the..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(282591900287, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:What is your deal with Father Tooker?]] "My questions have multiplied..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(793132734770, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:What is your deal with Father Tooker?]] "Hold up, homes. You lost me."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(320838938141, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "The <em>smugglers</em> sell to the <em>Boss</em> for 500 a piece, which he can pay because he's rich. He then resells all the gems to <em>Adonis</em> at 600 each, which they'll pay, because they prefer to deal with the boss instead of all the small fish."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(329342566618, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What is your deal with Father Tooker?]] "What the hell, mon?!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(275503647146, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:What is your deal with Father Tooker?]] "Did you just say Adonis?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(811953994631, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:What is your deal with Father Tooker?]] "Yeah, okay. That last part I got."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(754797943319, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "Finally, Adonis pays me 600 as a broker's fee, and everyone is happy, because everyone gets their share! Simple, right?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(243281942725, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:What is your deal with Father Tooker?]] "So, you be nothing more than a middle-man."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(803188979640, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "I prefer to think of myself as a facilitator who oils the wheels of commerce!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(228917025910, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:What is your deal with Father Tooker?]] "So, you're just using everyone to make money off of Adonis?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(808661313130, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "Why not? They're the ones with the money."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(637079871836, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:What is your deal with Father Tooker?]] "Ain't you afraid someone will find out you're cheating everyone?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(707291565905, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:What is your deal with Father Tooker?]] "Who's cheating? Everyone sacrifices a little profit to make sure everyone makes a little profit."),
}),
},
}),
},
}),
},
id = "WhatisyourdealwiththePastor",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = {
KnowAboutPastor = true,
},
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return quest.KnowAboutPastor
end,
}),
},
Keyword = "You mentioned Adonis?",
KeywordT = T(230824080063, --[[Conversation Broker_1 KeywordT]] "You mentioned Adonis?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(457290922991, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:You mentioned Adonis?]] "They used to control the diamond mines until the Legion pushed them out. They must miss their <em>diamonds</em>, because lately they've been buying them off the black market in bulk! Nice people with deep pockets who let everyone get their share!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(927608397763, --[[Conversation Broker_1 Text voice:Magic section:Broker_1 keyword:You mentioned Adonis?]] "Nice people with deep pockets are my very favorite kind of people."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(543081803223, --[[Conversation Broker_1 Text voice:DrQ section:Broker_1 keyword:You mentioned Adonis?]] "Deep pockets often hide deep secrets."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(155455383011, --[[Conversation Broker_1 Text voice:Omryn section:Broker_1 keyword:You mentioned Adonis?]] "They seem nice. Hey, do you sell snacks? You should sell snacks."),
}),
},
}),
},
}),
},
id = "Adonis",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
Negate = true,
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Broker_1",
PhraseId = "Lootboxes2.WhereDoWeGetDiamonds",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(705644678261, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Happily! Just one <em>tiny diamond</em> per loot box! Don't have any? Go buy some from Father Tooker!"),
}),
},
StoryBranchIcon = "conversation_action",
VariantPhrase = true,
id = "Sellusalootbox3",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox01_metaviron",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MetavironSold",
QuestId = "TheTwelveChairs",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(847976481459, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "There you go! Do you like it? This here is a powerful substance, my friends - it prolongs life, grants visions of the future, and makes your eyes blue! You might have to take a lot of it to make that last thing happen."),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(237341474980, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Hmm, looks like a dead cat. Well, that's the mystery of the loot box for you! Could have just as easily been a live one, but it wasn't."),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox02_AliveCat",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(903215306507, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Whoa! Damn, that cat scared the poop out of me! How did it even survive in there? Well, that's the mystery of the loot box. Could have just as easily been a dead cat, but it wasn't."),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox4",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox04_grenades",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(883359560894, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "BANG! He-he, made you jump! I'm sure you'll have a blast with those."),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox5",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox05_ammo",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(859037681834, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Well, I guess you'll get some use out of those. Me, I don't like guns. I prefer loot boxes! Care to try again?"),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox6",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox06_AK",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(894842245374, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Well, that's... You know, I'm not sure how that even fit in there. Well, that's the mystery of the loot box for you!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(109810834232, --[[Conversation Broker_1 Text voice:Igor section:Broker_1 keyword:Sell us a loot box]] 'He-he, my favorite toy. I will call it "Legion Surprise"!'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(812404740086, --[[Conversation Broker_1 Text voice:Ivan section:Broker_1 keyword:Sell us a loot box]] "Наконец-то этот идиот продал нам что-то стоящее."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(443718959106, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:Sell us a loot box]] "Now that's what I call a good deal!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox7",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox07_mag",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(674325240237, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Oh, a comic book collection! Good quality paper, too. Good for reading, that is, not for wiping. Too much ink."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(192948080346, --[[Conversation Broker_1 Text voice:Larry section:Broker_1 keyword:Sell us a loot box]] "I love it, man!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(869251241852, --[[Conversation Broker_1 Text voice:Larry_Clean section:Broker_1 keyword:Sell us a loot box]] "I love it, man!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(517183933411, --[[Conversation Broker_1 Text voice:MD section:Broker_1 keyword:Sell us a loot box]] "Oh, hey! Neat!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(165301303160, --[[Conversation Broker_1 Text voice:Kalyna section:Broker_1 keyword:Sell us a loot box]] "Now THIS is a treasure!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox8",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox08_junk",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(517474095191, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Oh, that's... You know, I have no idea what that is. Behold, the mystery of the loot box! Care to try again?"),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox9",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox09_parts",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(217137901492, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Hmm, this came as a shipment from <em>Ille Morat</em>. There is this weird mechanic lives down around there..."),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox10",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasItem', {
ItemId = "TinyDiamonds",
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "LootBoxesBought",
Prop2 = "LootBoxesMax",
QuestId = "FleatownGeneral",
QuestId2 = "FleatownGeneral",
}),
},
Effects = {
PlaceObj('UnitTakeItem', {
AnySquad = true,
ItemId = "TinyDiamonds",
}),
PlaceObj('UnitGrantItem', {
LootTableId = "LootBox10_diamonds",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "LootBoxesBought",
QuestId = "FleatownGeneral",
}),
},
Keyword = "Sell us a loot box",
KeywordT = T(654653220919, --[[Conversation Broker_1 KeywordT]] "Sell us a loot box"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(484248374973, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Sell us a loot box]] "Oh, this seems to be our promotional package, my friends! You pay one diamond, and you get back two! "),
}),
},
StoryBranchIcon = "conversation_trade",
VariantPhrase = true,
id = "Sellusalootbox11",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
BrokerGossip = false,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.BrokerGossip
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BrokerGossip",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Be careful about your nose",
KeywordT = T(598647041973, --[[Conversation Broker_1 KeywordT]] "Be careful about your nose"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(141482254235, --[[Conversation Broker_1 Text voice:Red section:Broker_1 keyword:Be careful about your nose]] "Ya know what's bad about your good nose? Someone may break it for smelling too much."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(458356708522, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:Be careful about your nose]] "You want that nose of yours smashed?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(267802430602, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Be careful about your nose]] "Non-non..."),
}),
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(118317129895, --[[Conversation Broker_1 Text voice:Nails section:Broker_1 keyword:Be careful about your nose]] "Then don't play the smart guy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(644781881396, --[[Conversation Broker_1 Text voice:Hitman section:Broker_1 keyword:Be careful about your nose]] "That's funny. I don't like so much you being funny."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(758288246187, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Be careful about your nose]] "No need to get worked up, my friends. I can't help myself. My nose is specially designed for smelling useful <em>information</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(107294168716, --[[Conversation Broker_1 Text voice:Red section:Broker_1 keyword:Be careful about your nose]] "Don't worry, lad, I can fix it."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(811413317139, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Be careful about your nose]] "It would be a shame to damage such an exquisite tool!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_threaten",
id = "BeCareful",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
Completed = false,
Failed = false,
Given = true,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.Completed and not quest.Failed and quest.Given
end,
}),
},
Keyword = "Remind us about the twelve chairs",
KeywordT = T(429246536447, --[[Conversation Broker_1 KeywordT]] "Remind us about the twelve chairs"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(405731931559, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "This is the story: some years ago <em>twelve special chairs</em> from the mansion of the late Madam Lecoq in Pantagruel were sold right here in this very market."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(649951102840, --[[Conversation Broker_1 Text voice:Len section:Broker_1 keyword:Remind us about the twelve chairs]] "We don't deal in stolen goods."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(376129123752, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "They weren't stolen! It was an estate sale. Now listen:"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(987319371204, --[[Conversation Broker_1 Text voice:Reaper section:Broker_1 keyword:Remind us about the twelve chairs]] "Special how? Were they constructed out of the bones of her ancestors?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(822992183034, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "What?! No! Why would you even think that? Nevermind. I don't want to know. Just listen:"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(387361944802, --[[Conversation Broker_1 Text voice:Ice section:Broker_1 keyword:Remind us about the twelve chairs]] "He-he... Madam Lecock?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(180818804110, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "It's pronounced \"Lecoq.\" Now listen:"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(369585031307, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "Rumor has it that good old Madam Lecoq sewed her priceless <em>brilliant diamond necklace</em> into one of those chairs! In a journal an associate of mine just recovered, she admitted doing this because she feared Pantagruel commies would rob her. Sadly, she left no clue as to which chair she used!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(683274635918, --[[Conversation Broker_1 Text voice:Vicki section:Broker_1 keyword:Remind us about the twelve chairs]] "Why you be telling us that, mon?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(993380093236, --[[Conversation Broker_1 Text voice:Magic section:Broker_1 keyword:Remind us about the twelve chairs]] "Sounds to me like you need a personal shopper, not a merc."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(947089006790, --[[Conversation Broker_1 Text voice:Wolf section:Broker_1 keyword:Remind us about the twelve chairs]] "Now comes the part where you tell us the chairs were bought by a bloodthirsty warlord."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(585987647290, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "Look, I'd track them down myself, but I'm no treasure hunter. You, on the other hand, I bet you've got what it takes to get that necklace. Bring it to me and you'll get both a good price and the undying gratitude of me - trusty Lalee! "),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(934455723594, --[[Conversation Broker_1 Text voice:Fauda section:Broker_1 keyword:Remind us about the twelve chairs]] "But this necklace was property of the old woman. Does her family not search for it?"),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(183237363539, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Remind us about the twelve chairs]] "Don't worry, she's got no living heirs."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(526240172627, --[[Conversation Broker_1 Text voice:MD section:Broker_1 keyword:Remind us about the twelve chairs]] "You... You think I've got what it takes? I mean, of course! Of course, I do!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "RemindUsAboutThe12Chairs",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTwelveChairs",
Vars = set({
Completed = false,
Failed = false,
Given = true,
}),
__eval = function ()
local quest = gv_Quests['TheTwelveChairs'] or QuestGetState('TheTwelveChairs')
return not quest.Completed and not quest.Failed and quest.Given
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Lead_Blaubert",
QuestId = "TheTwelveChairs",
}),
},
Keyword = "Where do we find those chairs?",
KeywordT = T(209755619118, --[[Conversation Broker_1 KeywordT]] "Where do we find those chairs?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(181184308809, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we find those chairs?]] 'I know for sure that two of the chairs were given as "good will" gifts to <em>Boss Blaubert</em>. You\'re lucky, because one of them is right here in his villa! The other one is probably in <em>Rimville</em>.'),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(818511603423, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we find those chairs?]] "Speaking for myself, I wouldn't touch something that belongs to the guy who practically owns Fleatown, but you... well, I'm betting the boss doesn't scare someone like you, he-he!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(599764704785, --[[Conversation Broker_1 Text voice:Reaper section:Broker_1 keyword:Where do we find those chairs?]] "Fear is a commodity bought and sold at auction, where the loudest voice gets the most."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(160708848561, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we find those chairs?]] "I like that! I'm not sure what it means, but I like it!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(425153637388, --[[Conversation Broker_1 Text voice:Buns section:Broker_1 keyword:Where do we find those chairs?]] "I haven't been scared since I was a little girl. Mommy forgot it was class picture day and dressed me in overalls. I don't like to talk about it."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(866139428118, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we find those chairs?]] "I'll make a note never to bring it up."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(229938624663, --[[Conversation Broker_1 Text voice:Grizzly section:Broker_1 keyword:Where do we find those chairs?]] "I eat fear for breakfast and crap bullets in the afternoon."),
}),
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(325385346006, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Where do we find those chairs?]] "You may want to see a doctor about that."),
}),
},
}),
},
}),
},
PhraseConditionRolloverText = T(184809253711, --[[Conversation Broker_1 PhraseConditionRolloverText]] "Gained information about some of the <em>chairs</em>"),
id = "Whoboughtthosechairs",
}),
PlaceObj('ConversationPhrase', {
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Broker_1 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Broker",
Text = T(128686616438, --[[Conversation Broker_1 Text voice:Broker section:Broker_1 keyword:Goodbye]] "Goodbye, my friends!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
})
|