File size: 84,852 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "DrKronenberg",
Conditions = {
PlaceObj('PlayerIsInSectors', {
Sectors = {
"H12_Underground",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "HospitalInfectedKilled" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HospitalInfectedKilled
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "U-Bahn",
Vars = set({
OutcomeSanatorium = false,
}),
__eval = function ()
local quest = gv_Quests['U-Bahn'] or QuestGetState('U-Bahn')
return not quest.OutcomeSanatorium
end,
}),
},
DefaultActor = "DrKronenberg",
Parameters = {
PlaceObj('PresetParamNumber', {
'Name', "MedsGain",
'Value', 6,
'Tag', "<MedsGain>",
}),
PlaceObj('PresetParamNumber', {
'Name', "Samples",
'Value', 4,
'Tag', "<Samples>",
}),
},
disabledInConflict = true,
group = "Jungle",
id = "DrKronenberg",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Comment = "initial",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HospitalGuardsKilled = false,
MangelExposed = false,
MangelSamples = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.HospitalGuardsKilled and not quest.MangelExposed and not quest.MangelSamples
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelMet",
QuestId = "Sanatorium",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(482449667788, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting]] "Who are you? Why have you <em>murdered my patients</em>?!"),
}),
},
id = "Greeting",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Comment = "initial",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HospitalGuardsKilled = true,
MangelExposed = false,
MangelSamples = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HospitalGuardsKilled and not quest.MangelExposed and not quest.MangelSamples
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelMet",
QuestId = "Sanatorium",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(479245665097, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting8]] "Who are you? Why have you shot the clinic guards and <em>murdered my patients</em>?!"),
}),
},
id = "Greeting8",
}),
PlaceObj('ConversationPhrase', {
Comment = "repeated",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
MangelSamples = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed and not quest.MangelSamples
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(216102885391, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting2]] "Now what do you want? Haven't you caused enough trouble by <em>murdering my patients</em>?!"),
}),
},
id = "Greeting2",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = true,
MangelSamples = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelExposed and not quest.MangelSamples
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(846692151279, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting3]] "What now?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(982165672233, --[[Conversation DrKronenberg Text voice:Larry section:DrKronenberg keyword:Greeting3]] "Hi, Doc! I'm here for more of your sweet, sweet treatment."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(656074051583, --[[Conversation DrKronenberg Text voice:Larry_Clean section:DrKronenberg keyword:Greeting3]] "I'm fine, Dr. Kronenberg, I swear! I'm clean! There is no need for any more treatment!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Larry",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "Larry_Clean",
}),
},
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(697085862875, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting3]] "Mr. Roachburn, I do not have time for you right now. Please see one of the nurses."),
}),
},
}),
},
}),
},
id = "Greeting3",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "HumanExperiments", "MangelSamples" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HumanExperiments and quest.MangelSamples
end,
}),
PlaceObj('UnitSquadHasItem', {
Amount = 4,
ItemId = "VirusSample",
Negate = true,
param_bindings = {
Amount = "Samples",
},
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(716089205819, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting4]] "I... have not made much progress. I need more samples. Do I need to go and gather them myself?!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(585343090036, --[[Conversation DrKronenberg Text voice:Larry section:DrKronenberg keyword:Greeting4]] "I'll do anything to help you, Doc! Come on. Where's the table? Strap me down and give me the electric blasts of your maternal love."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(164349764397, --[[Conversation DrKronenberg Text voice:Larry_Clean section:DrKronenberg keyword:Greeting4]] "But you told me we were making progress, Doctor. You told me that every time you flipped the switch!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Larry",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "Larry_Clean",
}),
},
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(296792386306, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting4]] "Mr. Roachburn, control yourself."),
}),
},
}),
},
}),
},
id = "Greeting4",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HumanExperiments = false,
HumanExperimentsStopped = true,
MangelSamples = true,
MangelTimerExpired = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.HumanExperiments and quest.HumanExperimentsStopped and quest.MangelSamples and not quest.MangelTimerExpired
end,
}),
PlaceObj('UnitSquadHasItem', {
Amount = 4,
ItemId = "VirusSample",
Negate = true,
param_bindings = {
Amount = "Samples",
},
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(474767618876, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting5]] "Where are my samples? I don't have much time! AND STOP MAKING SO MUCH NOISE WITH YOUR SHOES!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(884844696232, --[[Conversation DrKronenberg Text voice:Larry section:DrKronenberg keyword:Greeting5]] "Yes, Doc, I'm ready! I'm taking them off right away, Doc! Please strap me down and unleash your electric love upon me!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(496438195674, --[[Conversation DrKronenberg Text voice:Larry_Clean section:DrKronenberg keyword:Greeting5]] "I'm taking them off right away! I'll be good, I swear. There is no need of any more electrical treatment!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Larry",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "Larry_Clean",
}),
},
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(257914274728, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting5]] "Thank you, Mr. Roachburn, that won't be necessary. Now LEAVE before I change my mind."),
}),
},
}),
},
}),
},
id = "Greeting5",
}),
PlaceObj('ConversationPhrase', {
Comment = "trigger final scene (failure)",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "MangelSamples", "MangelTimerExpired" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelSamples and quest.MangelTimerExpired
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelCombat",
QuestId = "Sanatorium",
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = "caughing, snarling",
Character = "DrKronenberg",
Text = T(186634243134, --[[Conversation DrKronenberg Text caughing, snarling voice:DrKronenberg section:DrKronenberg keyword:Greeting7]] "It is... it is too late... WHERE HAVE YOU BEEN?!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(198441938765, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Greeting7]] "Um..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(406167532828, --[[Conversation DrKronenberg Text voice:Fox section:DrKronenberg keyword:Greeting7]] "Well..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(974627051667, --[[Conversation DrKronenberg Text voice:Ice section:DrKronenberg keyword:Greeting7]] "See, what had happened was..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(645572671111, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting7]] "I DON'T NEED YOUR EXCUSES! I need a transfusion... Arrrgh, I can't... This is all your fault!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(296276346249, --[[Conversation DrKronenberg Text voice:Fidel section:DrKronenberg keyword:Greeting7]] "You sound like Fidel's own mamá!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(960874045004, --[[Conversation DrKronenberg Text voice:Livewire section:DrKronenberg keyword:Greeting7]] "I cannot help but point out that I am certainly not completely to blame here."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(314576417236, --[[Conversation DrKronenberg Text voice:Reaper section:DrKronenberg keyword:Greeting7]] "Time to reap the whirlwind, Doctor."),
}),
},
}),
},
}),
},
id = "Greeting7",
}),
PlaceObj('ConversationPhrase', {
Comment = "trigger final scene (success)",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelSamples = true,
MangelTimerExpired = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelSamples and not quest.MangelTimerExpired
end,
}),
PlaceObj('UnitSquadHasItem', {
Amount = 4,
ItemId = "VirusSample",
param_bindings = {
Amount = "Samples",
},
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "SamplesGiven",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "MangelCombat",
QuestId = "Sanatorium",
}),
PlaceObj('UnitTakeItem', {
Amount = 4,
AnySquad = true,
ItemId = "VirusSample",
param_bindings = {
Amount = "Samples",
},
}),
PlaceObj('CityGrantLoyalty', {
Amount = 10,
City = "PortDiancie",
SpecialConversationMessage = T(979398679906, --[[Conversation DrKronenberg SpecialConversationMessage]] "helped discover a cure for the <em>Red Rabies</em>"),
}),
PlaceObj('CityGrantLoyalty', {
Amount = 10,
City = "Chalet",
SpecialConversationMessage = T(809053584058, --[[Conversation DrKronenberg SpecialConversationMessage]] "helped discover a cure for the <em>Red Rabies</em>"),
}),
PlaceObj('CityGrantLoyalty', {
Amount = 10,
City = "Payak",
SpecialConversationMessage = T(809053584058, --[[Conversation DrKronenberg SpecialConversationMessage]] "helped discover a cure for the <em>Red Rabies</em>"),
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrKronenberg KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(818509811797, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting6]] "You have the samples! Good. Now, the moment of truth. I should be able to extract a <em>serum</em> that kills all forms of the virus. With a little bit of luck, it may even work on me."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(520614472315, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Greeting6]] "Um, I see the visual markers of progressing inflammation, as well as some increased salivation..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(208079616615, --[[Conversation DrKronenberg Text voice:Buns section:DrKronenberg keyword:Greeting6]] "I would advise you to be careful, as your illness has obviously progressed."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(829559158351, --[[Conversation DrKronenberg Text voice:DrQ section:DrKronenberg keyword:Greeting6]] "It may be too late for the Queen Bee to be saved, but there is still a chance for the hive to survive."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(742920687217, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting6]] "YES! I can confirm it is working well on the cellular level, and a healthy immune response is observed... STEP ASIDE YOU MORONS!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(296276346249, --[[Conversation DrKronenberg Text voice:Fidel section:DrKronenberg keyword:Greeting6]] "You sound like Fidel's own mamá!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(328277109392, --[[Conversation DrKronenberg Text voice:Shadow section:DrKronenberg keyword:Greeting6]] "Gladly. I don't even want to be in the same room with you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(815627980403, --[[Conversation DrKronenberg Text voice:Thor section:DrKronenberg keyword:Greeting6]] "I guess it's true what they say - doctors make the worst patients."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(387763854369, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Greeting6]] "What is... NO, NO, NO! The infection has spread too far! I... not enough... healthy tissue... Need more... ARGH!"),
}),
},
id = "Greeting6",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrKronenberg",
PhraseId = "Yourguardsdidshootyourpatients",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "DrKronenberg",
PhraseId = "Notmuchofmedicalaid",
}),
},
Keyword = "Your “patients” are monsters",
KeywordT = T(741824500981, --[[Conversation DrKronenberg KeywordT]] "Your “patients” are monsters"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(626538953159, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Your “patients” are monsters]] "They are people in dire need of medical aid and I refuse to let them die without receiving it."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(462110014815, --[[Conversation DrKronenberg Text voice:Fauda section:DrKronenberg keyword:Your “patients” are monsters]] "You give them medicine, but still they die? What is the point of this?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(241596770363, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Your “patients” are monsters]] "So it is okay when they die WITH medical aid?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(415442100814, --[[Conversation DrKronenberg Text voice:Thor section:DrKronenberg keyword:Your “patients” are monsters]] "You almost make it sound as if YOU are the one receiving the aid."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(937559506793, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Your “patients” are monsters]] "I am doing what I can... I am doing what I HAVE to do. At the very least, I am relieving their pain and not <em>shooting my patients</em>."),
}),
},
StoryBranchIcon = "conversation_threaten",
id = "Yourpatientsaremonsters",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
ClinicCombat = true,
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.ClinicCombat and not quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Clues",
QuestId = "Sanatorium",
}),
},
Enabled = false,
Keyword = "Your guards did shoot your patients",
KeywordT = T(197335506025, --[[Conversation DrKronenberg KeywordT]] "Your guards did shoot your patients"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(859583052875, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Your guards did shoot your patients]] "It is up to the hospital guards' discretion to stop an outbreak by any means necessary."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(739401022048, --[[Conversation DrKronenberg Text voice:Fidel section:DrKronenberg keyword:Your guards did shoot your patients]] "Fidel has means to stop all the outbreak!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(526297646179, --[[Conversation DrKronenberg Text voice:Len section:DrKronenberg keyword:Your guards did shoot your patients]] "So you're saying it is alright if your goons are doing the atrocities, ma'am?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(588108683432, --[[Conversation DrKronenberg Text voice:Gus section:DrKronenberg keyword:Your guards did shoot your patients]] "They call that plausible deniability, Dr. Woodworm."),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(482033006631, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Your guards did shoot your patients]] "My name is Dr. Kronenberg."),
}),
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(838095338038, --[[Conversation DrKronenberg Text voice:Gus section:DrKronenberg keyword:Your guards did shoot your patients]] "I'll make a note of it."),
}),
},
}),
},
}),
},
PhraseConditionRolloverText = T(426184890759, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Gained a <em>clue</em> about the <em>Sanatorium</em>"),
id = "Yourguardsdidshootyourpatients",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Medical",
StatValue = 50,
}),
},
Effects = {
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Clues",
QuestId = "Sanatorium",
}),
},
Enabled = false,
Keyword = "Not much medical aid",
KeywordT = T(546950156894, --[[Conversation DrKronenberg KeywordT]] "Not much medical aid"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(998547865216, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Not much medical aid]] "The medical procedures I observed on my way here are in the best case, um, unsanitary."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(374766027998, --[[Conversation DrKronenberg Text voice:Blood section:DrKronenberg keyword:Not much medical aid]] "This place looks more like a butcher shop than a hospital!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(671009368501, --[[Conversation DrKronenberg Text voice:Thor section:DrKronenberg keyword:Not much medical aid]] "This place seems to do little to heal the body and even less to tend to the soul."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(128409018494, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Not much medical aid]] "And who are you to tell me how I am to handle my patients?! If they need to die for the sake of science, then they will die and no half-baked field nurse can tell me what to do with them!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(724572374086, --[[Conversation DrKronenberg Text voice:Buns section:DrKronenberg keyword:Not much medical aid]] "And I suppose the sloppy hospital management and filthy conditions here are supposed to prove your superior medical skills?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(949766353288, --[[Conversation DrKronenberg Text voice:Fox section:DrKronenberg keyword:Not much medical aid]] 'The term is "combat medic"! I only dressed up as a field nurse that one time.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(529983879046, --[[Conversation DrKronenberg Text voice:Mouse section:DrKronenberg keyword:Not much medical aid]] "Excuse me! I am fully baked! No, wait, that came out wrong."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(911738684721, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Not much medical aid]] "And I can order YOU to be infected as well!"),
}),
},
PhraseConditionRolloverText = T(692497779846, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "<color EmStyle>Medical</color> check successful\nGained a <em>clue</em> about the <em>Sanatorium</em>"),
id = "Notmuchofmedicalaid",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.goodending
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "doctordead", "townflip" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.doctordead and quest.townflip
end,
}),
},
}),
},
Effects = {
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Clues",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Clue_Chalet",
QuestId = "Sanatorium",
}),
},
Keyword = "Doc Robert infected a village for you",
KeywordT = T(871763225950, --[[Conversation DrKronenberg KeywordT]] "Doc Robert infected a village for you"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_DocRobert",
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(813711643740, --[[Conversation DrKronenberg Text voice:Blood section:DrKronenberg keyword:Doc Robert infected a village for you]] "Doc Robert was a real psychotic scuzzwad, but he's fish food now."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(136827212003, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Doc Robert infected a village for you]] "Doc Robert was doing nightmarish experiments with the Red Rabies virus. Did you know about that?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(519661611908, --[[Conversation DrKronenberg Text voice:Scope section:DrKronenberg keyword:Doc Robert infected a village for you]] "Many people died at Chalet de la Paix because your coroner decided to play mad scientist."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(424095759393, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Doc Robert infected a village for you]] "That moron. Yes, I did send him to the village, but that doesn't mean I am accountable for his mistakes. However, working on a cure for a disease of this scale is a complex process and collateral damage is inevitable."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(617128099352, --[[Conversation DrKronenberg Text voice:Shadow section:DrKronenberg keyword:Doc Robert infected a village for you]] "The damage was not collateral. Those people were targeted."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(102016932661, --[[Conversation DrKronenberg Text voice:DrQ section:DrKronenberg keyword:Doc Robert infected a village for you]] "I would not call the deliberate infecting of half a town's population \"collateral damage\"... Doctor."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(284689302245, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Doc Robert infected a village for you]] "Collateral damage? He was using those people like lab rats! They didn't even have a choice!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Shadow",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "DrQ",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "MD",
}),
},
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(781625884800, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Doc Robert infected a village for you]] "As I said - I cannot be held responsible for his... carelessness."),
}),
},
}),
},
}),
},
PhraseConditionRolloverText = T(260243113665, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Gained a <em>clue</em> about the <em>Sanatorium</em>"),
id = "WeranacrossyourpalPainlessDocRobert",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrKronenberg",
PhraseId = "Thereissomethingwronggoingonhere",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "DrKronenberg",
PhraseId = "YOUaretheonemurderingyourpatients",
}),
},
Keyword = "People are dying in here",
KeywordT = T(346861401412, --[[Conversation DrKronenberg KeywordT]] "People are dying in here"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(795957031171, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:People are dying in here]] "Of course they are dying here! People don't go to the beach to die, they come to the hospital!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(414882247135, --[[Conversation DrKronenberg Text voice:Fidel section:DrKronenberg keyword:People are dying in here]] "Ah, Fidel see you have never been to Havana beach."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(362650637235, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:People are dying in here]] "Um... That may be statistically true, but... It is not the actual reason why people go to the hospital."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(226686921254, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:People are dying in here]] "Your logic is inescapable... but strangely, I am not comforted."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Peoplearedyinginhere",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Condition = "<",
Prop = "Clues",
Prop2 = "CluesRequired",
QuestId = "Sanatorium",
QuestId2 = "Sanatorium",
}),
},
Enabled = false,
Keyword = "There is something wrong going on here",
KeywordT = T(573250826361, --[[Conversation DrKronenberg KeywordT]] "There is something wrong going on here"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(918933339472, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:There is something wrong going on here]] "Yes, there is. A group of armed thugs appeared and started murdering my patients!"),
}),
},
PhraseConditionRolloverText = T(586416898078, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Not enough <em>clues</em>"),
StoryBranchIcon = "conversation_arrow",
id = "Thereissomethingwronggoingonhere",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
PlaceObj('QuestIsVariableNum', {
AgainstVar = true,
Prop = "Clues",
Prop2 = "CluesRequired",
QuestId = "Sanatorium",
QuestId2 = "Sanatorium",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelExposed",
QuestId = "Sanatorium",
}),
},
Enabled = false,
Keyword = "YOU are the one murdering your patients!",
KeywordT = T(330515135708, --[[Conversation DrKronenberg KeywordT]] "YOU are the one murdering your patients!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(917119239305, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:YOU are the one murdering your patients!]] "It is not murder when it is done in the name of science."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(723176120887, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:YOU are the one murdering your patients!]] "Why are you not laughing?"),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(795940877413, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:YOU are the one murdering your patients!]] "What?!"),
}),
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(518081520593, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:YOU are the one murdering your patients!]] "You should be laughing maniacally when you say something like that. "),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"Portal" reference',
Character = "Raven",
Text = T(734227961473, --[[Conversation DrKronenberg Text "Portal" reference voice:Raven section:DrKronenberg keyword:YOU are the one murdering your patients!]] "Ah, I see, you're doing it for science! Did you promise them cake?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(547126911164, --[[Conversation DrKronenberg Text voice:Sidney section:DrKronenberg keyword:YOU are the one murdering your patients!]] "I hope you're making some sort of sick joke, Doctor. Murder is murder."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(717175821737, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:YOU are the one murdering your patients!]] "The <em>Red Rabies</em> is no joke. It is virulent and deadly, and the hosts spread it through acts of brutal violence. I was so close to breaking its genome when I became <em>infected</em>..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(968776015219, --[[Conversation DrKronenberg Text voice:DrQ section:DrKronenberg keyword:YOU are the one murdering your patients!]] "The work consumed your soul, now it consumes your body."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(293412364966, --[[Conversation DrKronenberg Text voice:Mouse section:DrKronenberg keyword:YOU are the one murdering your patients!]] "Oh, gross! Nope. Uh-uh. I think I need to be going now."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(615589416914, --[[Conversation DrKronenberg Text voice:Scope section:DrKronenberg keyword:YOU are the one murdering your patients!]] "And I'll be taking just a step or two back now."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(583727773366, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:YOU are the one murdering your patients!]] "I soon discovered that a blood transfusion from a newly infected host can temporarily halt the disease progression. In the interest of expediency, it was necessary to <em>infect volunteers</em> to insure a steady supply of recently exposed blood and tissue."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(296536406323, --[[Conversation DrKronenberg Text voice:Shadow section:DrKronenberg keyword:YOU are the one murdering your patients!]] "Somehow, I doubt these volunteers knew exactly what they were volunteering for."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(230105361401, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:YOU are the one murdering your patients!]] "This... This is too much. I think I'm going to be sick."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(576510423537, --[[Conversation DrKronenberg Text voice:Red section:DrKronenberg keyword:YOU are the one murdering your patients!]] "Are ye daft, woman?! You cannae play God with people like that."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(821472501492, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:YOU are the one murdering your patients!]] "I am so close to discovering a <em>cure</em>! Who will be helped if I die before I complete my research?"),
}),
},
PhraseConditionRolloverText = T(584744805651, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Dr. Kronenberg <em>exposed</em>"),
StoryBranchIcon = "conversation_arrow",
id = "YOUaretheonemurderingyourpatients",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HumanExperiments = false,
HumanExperimentsStopped = false,
MangelExposed = true,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.HumanExperiments and not quest.HumanExperimentsStopped and quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrKronenberg",
PhraseId = "Whatdoyouneedtofinishyourresearch",
}),
},
Keyword = "You can’t go around infecting people!",
KeywordT = T(444345259820, --[[Conversation DrKronenberg KeywordT]] "You can’t go around infecting people!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(903181649737, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:You can’t go around infecting people!]] "Why? Hundreds have died already, but if I do not <em>finish my research</em> the disease will spread and it will claim the lives of millions more. It is simple math."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"That\'s right"',
Character = "Ivan",
Text = T(399446992127, --[[Conversation DrKronenberg Text "That's right" voice:Ivan section:DrKronenberg keyword:You can’t go around infecting people!]] "Правильно. Hundreds may die to save millions."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(996319635405, --[[Conversation DrKronenberg Text voice:Sidney section:DrKronenberg keyword:You can’t go around infecting people!]] "I hate to admit it, but she does have a point."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(690000801154, --[[Conversation DrKronenberg Text voice:DrQ section:DrKronenberg keyword:You can’t go around infecting people!]] "If this is their fate, then millions must die. It is not her choice to make."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(258060434199, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:You can’t go around infecting people!]] "This is not the only way to do medical research. As doctors, our job is to alleviate suffering, not make use of it."),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(934654044110, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:You can’t go around infecting people!]] "Ha! Tell that to the doctors of both World Wars. Nothing has contributed to medical science more than using human test subjects."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(739159889111, --[[Conversation DrKronenberg Text voice:Flay section:DrKronenberg keyword:You can’t go around infecting people!]] "Meh. The herd will be thinned. The strong will survive and the weak will perish. This is Nature."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(811943796118, --[[Conversation DrKronenberg Text voice:Vicki section:DrKronenberg keyword:You can’t go around infecting people!]] "That kind of math don't add up to nothing for me."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(135307024088, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:You can’t go around infecting people!]] "I need to continue with my <em>experiments</em>, or the Red Rabies will kill me and my research will die with me."),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Youcantgoaroundinfectingpeople",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "HumanExperiments",
QuestId = "Sanatorium",
}),
PlaceObj('ApplyGuiltyOrRighteous', {
effectType = "negative",
}),
},
GoTo = "<root>",
Keyword = "That is reasonable",
KeywordT = T(323132029349, --[[Conversation DrKronenberg KeywordT]] "That is reasonable"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(514398836666, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:That is reasonable]] "I am pleased to see that someone can see reason. I will make sure my... condition remains stable, and I will continue with my experiments. However, some <em>help with my research</em> would be appreciated."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(170105305938, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:That is reasonable]] "Wait, are we going to become accomplices to her hideous crimes?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Sounds unhappy about it",
Character = "Sidney",
Text = T(755813937450, --[[Conversation DrKronenberg Text Sounds unhappy about it voice:Sidney section:DrKronenberg keyword:That is reasonable]] "It is regrettable, but it is for the greater good."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(588900726371, --[[Conversation DrKronenberg Text voice:Fox section:DrKronenberg keyword:That is reasonable]] "This is horrible. I don't want to be part of this."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(684154907273, --[[Conversation DrKronenberg Text voice:Nails section:DrKronenberg keyword:That is reasonable]] "Whoever is dumb enough to volunteer for her experiments deserves what they get. "),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(908795279436, --[[Conversation DrKronenberg Text voice:Omryn section:DrKronenberg keyword:That is reasonable]] "Ugh... This kind of talk make me lose appetite."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(220883980309, --[[Conversation DrKronenberg Text voice:Mouse section:DrKronenberg keyword:That is reasonable]] "If it ends that icky rabies virus sooner, then it's probably the best thing to do... right?"),
}),
},
}),
},
MaxPlayed = 2,
}),
},
PhraseConditionRolloverText = T(264459780538, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Dr. Kronenberg will keep her condition stable"),
PhraseRolloverText = T(618648734429, --[[Conversation DrKronenberg PhraseRolloverText]] "Dr. Kronenberg will continue to <em>infect people</em> in order to finish her research"),
StoryBranchIcon = "conversation_action",
id = "Thisisreasonable",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "PortDiancie",
SpecialConversationMessage = T(485042352994, --[[Conversation DrKronenberg SpecialConversationMessage]] "stopped human experiments in the Sanatorium"),
}),
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "Chalet",
SpecialConversationMessage = T(485042352994, --[[Conversation DrKronenberg SpecialConversationMessage]] "stopped human experiments in the Sanatorium"),
}),
PlaceObj('QuestSetVariableBool', {
Prop = "HumanExperimentsStopped",
QuestId = "Sanatorium",
}),
},
GoTo = "<root>",
Keyword = "Out of the question",
KeywordT = T(361363950107, --[[Conversation DrKronenberg KeywordT]] "Out of the question"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(479159523955, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Out of the question]] "That means not only will I become just another victim of the disease, but there will be thousands and probably millions more soon after."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ivan",
Text = T(878750183006, --[[Conversation DrKronenberg Text voice:Ivan section:DrKronenberg keyword:Out of the question]] "Так точно. We make mistake."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(511914421612, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Out of the question]] "Then millions must die. The alternative is inhumane."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(476479892512, --[[Conversation DrKronenberg Text voice:Hitman section:DrKronenberg keyword:Out of the question]] "Not so sure we're making the right call here, Ace."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(441857032106, --[[Conversation DrKronenberg Text voice:Reaper section:DrKronenberg keyword:Out of the question]] "Death will always take who it will take. Our struggles against it are futile."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(706694716906, --[[Conversation DrKronenberg Text voice:Blood section:DrKronenberg keyword:Out of the question]] "I wonder if maybe the evil doctor lady might be right about this."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(890841184622, --[[Conversation DrKronenberg Text voice:DrQ section:DrKronenberg keyword:Out of the question]] "If we sacrifice our humanity to save humans, then we are nothing more than animals."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(157386846819, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Out of the question]] "Well... We still have a chance to avoid that fate if we act quickly. You must <em>help me with my research</em> with utmost haste before the disease... makes that impossible."),
}),
},
PhraseConditionRolloverText = T(980676146689, --[[Conversation DrKronenberg PhraseConditionRolloverText]] "Dr. Kronenberg will die from the Red Rabies in about a week"),
PhraseRolloverText = T(967369891863, --[[Conversation DrKronenberg PhraseRolloverText]] "We will forbid Dr. Kronenberg from infecting people and the virus will soon <em>kill her</em>"),
StoryBranchIcon = "conversation_action",
id = "Outofthequestion",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelSamples",
QuestId = "Sanatorium",
}),
},
Enabled = false,
Keyword = "What do you need to finish your research?",
KeywordT = T(352133605402, --[[Conversation DrKronenberg KeywordT]] "What do you need to finish your research?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(760309270031, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:What do you need to finish your research?]] "I need <em>samples</em> of Red Rabies strains and mutations from all over the region. And I need them fast. I will give you a map and I can provide the necessary equipment."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(549828250869, --[[Conversation DrKronenberg Text voice:Blood section:DrKronenberg keyword:What do you need to finish your research?]] "Do you need... Blood samples?"),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(157732600186, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:What do you need to finish your research?]] "Normally yes, but you are not my Type."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(160071405305, --[[Conversation DrKronenberg Text voice:Tex section:DrKronenberg keyword:What do you need to finish your research?]] "I will wrangle those samples for you, Doc!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(850589718973, --[[Conversation DrKronenberg Text voice:Raven section:DrKronenberg keyword:What do you need to finish your research?]] "Greaaaat. Virus hunting. This will be... not even remotely fun."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Whatdoyouneedtofinishyourresearch",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "MangelSamples" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelSamples
end,
}),
},
Effects = {
PlaceObj('UnitGrantItem', {
LootTableId = "DrMangel",
}),
},
Keyword = "We will need medical supplies",
KeywordT = T(562475364246, --[[Conversation DrKronenberg KeywordT]] "We will need medical supplies"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(562433834130, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:We will need medical supplies]] "Of course. Here, take these. Just make sure you put them to good use. We are in dire need of medications ourselves."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "Clue_Cabinet" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.Clue_Cabinet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(589548382179, --[[Conversation DrKronenberg Text voice:Buns section:DrKronenberg keyword:We will need medical supplies]] "Why, are you out of cyanide?"),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(963337872861, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:We will need medical supplies]] "I will not respond to that."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(941363675522, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:We will need medical supplies]] "I am surprised. I was under the impression you were killing more patients than saving."),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(926331515194, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:We will need medical supplies]] "I will not respond to that."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(332678926832, --[[Conversation DrKronenberg Text voice:Shadow section:DrKronenberg keyword:We will need medical supplies]] "Must be tough to make room in the budget for new meds when you have to order so many body bags."),
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(500698385593, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:We will need medical supplies]] "I will not respond to that."),
}),
},
}),
},
}),
},
PhraseConditionRolloverText = "",
StoryBranchIcon = "conversation_sarcastic",
id = "Wewillneedmedicalsupplies",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelCombat",
QuestId = "Sanatorium",
}),
},
GoTo = "<end conversation>",
Keyword = "Time to die!",
KeywordT = T(931136781922, --[[Conversation DrKronenberg KeywordT]] "Time to die!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(662666829670, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Time to die!]] "You! You made a mistake..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(618186072558, --[[Conversation DrKronenberg Text voice:Blood section:DrKronenberg keyword:Time to die!]] "No mistake, Miss."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(927511722978, --[[Conversation DrKronenberg Text voice:Fauda section:DrKronenberg keyword:Time to die!]] "Mistake? I have made many. This will not be one."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(929816327743, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Time to die!]] "Do we really have to, um, just kill everyone we meet?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(874094897186, --[[Conversation DrKronenberg Text voice:Meltdown section:DrKronenberg keyword:Time to die!]] "Newsflash, Doc. All I do is make mistakes."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(292162514005, --[[Conversation DrKronenberg Text voice:Barry section:DrKronenberg keyword:Time to die!]] "I fear God's judgement. Yours, not so much."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(859580845887, --[[Conversation DrKronenberg Text voice:Scully section:DrKronenberg keyword:Time to die!]] "I was feeling bad about this, but now you just sound like every one of my ex-wives."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_attack",
id = "Timetodie",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HumanExperiments = false,
MangelExposed = true,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.HumanExperiments and quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelCombat",
QuestId = "Sanatorium",
}),
},
GoTo = "<end conversation>",
Keyword = "Die, murderer!",
KeywordT = T(303323272789, --[[Conversation DrKronenberg KeywordT]] "Die, murderer!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(220582407896, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Die, murderer!]] "No! There is no one but me qualified enough to..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(190597384289, --[[Conversation DrKronenberg Text voice:Vicki section:DrKronenberg keyword:Die, murderer!]] "You gonna pay now for these things you been doing!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(181350359371, --[[Conversation DrKronenberg Text voice:Len section:DrKronenberg keyword:Die, murderer!]] "The graveyards are full of irreplaceable people."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(481964093865, --[[Conversation DrKronenberg Text voice:Nails section:DrKronenberg keyword:Die, murderer!]] "I've scraped shit off my boot I liked better than you."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_attack",
id = "Timetodie2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "HumanExperiments", "MangelExposed" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HumanExperiments and quest.MangelExposed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelCombat",
QuestId = "Sanatorium",
}),
},
GoTo = "<end conversation>",
Keyword = "Actually, you must die",
KeywordT = T(963497319101, --[[Conversation DrKronenberg KeywordT]] "Actually, you must die"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(755699786485, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Actually, you must die]] "You psychopaths!..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(296276346249, --[[Conversation DrKronenberg Text voice:Fidel section:DrKronenberg keyword:Actually, you must die]] "You sound like Fidel's own mamá!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(954374841061, --[[Conversation DrKronenberg Text voice:Mouse section:DrKronenberg keyword:Actually, you must die]] "That is SO not fair. A girl is allowed to change her mind. That doesn't make her crazy!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(408679645448, --[[Conversation DrKronenberg Text voice:Scope section:DrKronenberg keyword:Actually, you must die]] "It takes one to know one, love."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_attack",
id = "Diemurderer",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HospitalGuardsKilled = false,
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.HospitalGuardsKilled and not quest.MangelExposed
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(167883919813, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Get away from my lab and leave this place, or I'll call the guards!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
HospitalGuardsKilled = true,
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HospitalGuardsKilled and not quest.MangelExposed
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(951005945659, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Get out of here, you murderers! I can't stop you from invading my hospital, but at least leave my lab! I have important work to do here."),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye5",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "repeated",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelExposed = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return not quest.MangelExposed
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(108269434900, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Leave! Leave!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye6",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "HumanExperiments", "MangelExposed", "MangelSamples" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HumanExperiments and quest.MangelExposed and quest.MangelSamples
end,
}),
},
Effects = {
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Medium",
}),
PlaceObj('SectorGrantIntel', {
sector_id = "H12_Underground",
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(341836669557, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "The hospital is at your disposal, but please, stop killing my patients. "),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(485144896898, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:Goodbye]] "Yes. Apparently, that is your job."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(126881168346, --[[Conversation DrKronenberg Text voice:Red section:DrKronenberg keyword:Goodbye]] "Now that'd be a real shame, wouldn't it missy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(767441506356, --[[Conversation DrKronenberg Text voice:Wolf section:DrKronenberg keyword:Goodbye]] "Awww... And here I was thinking you didn't care about them."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(123465900094, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "I need them alive as long as possible for... Well, you know why I need them."),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "timer",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "HumanExperimentsStopped", "MangelExposed", "MangelSamples" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.HumanExperimentsStopped and quest.MangelExposed and quest.MangelSamples
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "MangelTimerGiven",
QuestId = "Sanatorium",
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Medium",
}),
PlaceObj('SectorGrantIntel', {
sector_id = "H12_Underground",
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(317030624181, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Alright, hurry up and find me those samples. The clock is ticking."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(989589697217, --[[Conversation DrKronenberg Text voice:MD section:DrKronenberg keyword:Goodbye]] "We will do our best. "),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(455181197398, --[[Conversation DrKronenberg Text voice:Tex section:DrKronenberg keyword:Goodbye]] "We promise to be back before high noon!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(609181452200, --[[Conversation DrKronenberg Text voice:Grizzly section:DrKronenberg keyword:Goodbye]] "We're on it, Doc. Just sit tight."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(744316972189, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "In the meantime, the hospital is at your disposal. Please refrain from killing my patients."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(548200366313, --[[Conversation DrKronenberg Text voice:Scope section:DrKronenberg keyword:Goodbye]] "Same to you, love."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(546115159288, --[[Conversation DrKronenberg Text voice:Grunty section:DrKronenberg keyword:Goodbye]] "I encourage you to do the same, Frau Doctor."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(825293773958, --[[Conversation DrKronenberg Text voice:Mouse section:DrKronenberg keyword:Goodbye]] "We will if you will. Let's make a pinky promise!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye3",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "MangelExposed" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelExposed
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrKronenberg KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(131316296765, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Alright, back to work. You know where the door is."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(287452645293, --[[Conversation DrKronenberg Text voice:Larry section:DrKronenberg keyword:Goodbye]] "We sure do, Doc. Okay if we grab some Jell-O on the way out?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(869529518848, --[[Conversation DrKronenberg Text voice:Larry_Clean section:DrKronenberg keyword:Goodbye]] "Of course, Dr. Kronenberg. We'll be good, we promise. You look, um, lovely as always."),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Larry",
Vars = set( "SanatoriumTreatment" ),
__eval = function ()
local quest = gv_Quests['Larry'] or QuestGetState('Larry')
return quest.SanatoriumTreatment
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Larry",
}),
PlaceObj('UnitSquadHasMerc', {
Name = "Larry_Clean",
}),
},
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "DrKronenberg",
Text = T(388436723133, --[[Conversation DrKronenberg Text voice:DrKronenberg section:DrKronenberg keyword:Goodbye]] "Mr. Roachburn... Just leave."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye4",
}),
})
|