File size: 60,442 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "DocRobert",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
DefaultActor = "DocRobert",
disabledInConflict = true,
group = "Jungle",
id = "DocRobert_1",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DocRobertMet",
QuestId = "PaixDisease",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DocRobert_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(802380698664, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting]] "Well, it looks like the cavalry's arrived! Come to check up on what's happening here? The name's <em>\"Painless\" Doc Robert</em>. Don't let the name fool ya. I can be a plenty big pain in the ass when I want to be, it's just not my specialty. HA!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(107775488679, --[[Conversation DocRobert_1 Text voice:DrQ section:DocRobert_1 keyword:Greeting]] "I too try to engage the matters at hand in the most painless way possible. But sometimes to relieve pain at one location, pain must be inflicted at another."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(762045592941, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting]] "Let me guess: Acupuncturist?"),
}),
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(324243932463, --[[Conversation DocRobert_1 Text voice:DrQ section:DocRobert_1 keyword:Greeting]] "Among other things."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(133694769198, --[[Conversation DocRobert_1 Text voice:Reaper section:DocRobert_1 keyword:Greeting]] "Pain is nothing but a sign post pointing toward the final destination."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(574269882034, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting]] "Charming. You must be a hit at parties."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(636978495145, --[[Conversation DocRobert_1 Text voice:Larry section:DocRobert_1 keyword:Greeting]] "I've got a pain that needs a little treatment. A little voyage dans la lune if you catch my drift. You think you can help me out, doc?"),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(702642797916, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting]] "I know the perfect bullet for you, my boy. But sadly I'm all out of stock."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(490342318080, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting]] "Anyways. What can I do for you, fellas?"),
}),
},
NoBackOption = true,
id = "Greeting",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
townflip = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.townflip
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DocRobert_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(812650655374, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting2]] "Well, well, if it isn't the wild bunch. What is it this time? Looking for meds or looking for trouble? What can Painless Doc Robert do for you?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(905925023535, --[[Conversation DocRobert_1 Text voice:Tex section:DocRobert_1 keyword:Greeting2]] "We much better than Wild Bunch, partner. You see when I make movie about us!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(978308606285, --[[Conversation DocRobert_1 Text voice:Larry_Clean section:DocRobert_1 keyword:Greeting2]] "I'm always looking for meds, but what I usually find is trouble."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(716742029792, --[[Conversation DocRobert_1 Text voice:Scope section:DocRobert_1 keyword:Greeting2]] "We're always looking for trouble, love. It's in the job description."),
}),
},
}),
},
}),
},
NoBackOption = true,
id = "Greeting2",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "townflip" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.townflip
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DocRobert_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(777987611011, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Greeting3]] "Hey, hey... the wild bunch is back in the game. I didn't expect to see you again."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(372731755732, --[[Conversation DocRobert_1 Text voice:Magic section:DocRobert_1 keyword:Greeting3]] "Well, I didn't expect you'd see anything at all with those glasses. So I guess we were both fooled."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(584039799388, --[[Conversation DocRobert_1 Text voice:Shadow section:DocRobert_1 keyword:Greeting3]] "Not my first choice, either."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(106687548272, --[[Conversation DocRobert_1 Text voice:Wolf section:DocRobert_1 keyword:Greeting3]] "What can I say? I guess we just can't quit you, Doc."),
}),
},
}),
},
}),
},
NoBackOption = true,
id = "Greeting3",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "GreetingRedirect",
Keyword = "What happened here? Why is everybody dead?",
KeywordT = T(402604713558, --[[Conversation DocRobert_1 KeywordT]] "What happened here? Why is everybody dead?"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Whatshappeninginthistown2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "GreetingRedirect",
Keyword = "Who are all these armed men?",
KeywordT = T(503681886704, --[[Conversation DocRobert_1 KeywordT]] "Who are all these armed men?"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "WhathappenedhereWhyiseverybodydead",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "GreetingRedirect",
Keyword = "You're behind this, aren't you?",
KeywordT = T(386830892534, --[[Conversation DocRobert_1 KeywordT]] "You're behind this, aren't you?"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Whoareallthesearmedmen",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "townflip" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.townflip
end,
}),
},
Effects = {
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "ChaletThugsGuard",
}),
PlaceObj('GroupAlert', {
TargetUnit = "ChaletThugsGuard",
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "DocRobert",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Clue_ChaletMention",
QuestId = "Sanatorium",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Redirect",
KeywordT = T(328092960140, --[[Conversation DocRobert_1 KeywordT]] "Redirect"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(359528888864, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Redirect]] "I'm afraid things took a different turn while you were gone. These fine gentlemen came here all the way from <em>Landsbach</em> to be our new hosts."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(101018381521, --[[Conversation DocRobert_1 Text voice:Meltdown section:DocRobert_1 keyword:Redirect]] "If those guys are gentlemen, then I'm a goddamn princess."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(653153391517, --[[Conversation DocRobert_1 Text voice:Omryn section:DocRobert_1 keyword:Redirect]] "New hosts? Like... dinner hosts?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(412490074235, --[[Conversation DocRobert_1 Text voice:Blood section:DocRobert_1 keyword:Redirect]] "I don't think \"gentlemen\" is the right word for them. I would describe them as \"scuzzballs\" or \"people I may have to kill soon.\""),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(713912377359, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Redirect]] "...And my new disease hosts, though they don't know it yet. But as <em>Dr. Kronenberg</em> says - if you interfere with an experiment, you become the experiment!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(145201600414, --[[Conversation DocRobert_1 Text voice:Grizzly section:DocRobert_1 keyword:Redirect]] "That's sick, Doc."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(976503843938, --[[Conversation DocRobert_1 Text voice:MD section:DocRobert_1 keyword:Redirect]] "That's... awful! What is wrong with you!?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(265321351476, --[[Conversation DocRobert_1 Text voice:Grunty section:DocRobert_1 keyword:Redirect]] "That is horrible! Does your mother know what you do?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(898292940250, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Redirect]] "Speaking of interfering, I'm afraid your days of sticking your noses where they don't belong are over. Time for the wild bunch to meet their inevitable, bloody end. Guards!"),
}),
},
NoBackOption = true,
ShowPhraseRollover = false,
id = "GreetingRedirect",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Keyword = "What's happening in this town?",
KeywordT = T(293473636548, --[[Conversation DocRobert_1 KeywordT]] "What's happening in this town?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(665447990527, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What's happening in this town?]] "Oh, you know, the usual drill. Small fishing village where people's attitudes towards personal hygiene range from ambivalent to hostile. And now they are dying, surprise-surprise."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(267598538556, --[[Conversation DocRobert_1 Text voice:Fox section:DocRobert_1 keyword:What's happening in this town?]] "A filthy mind is one thing, but a filthy body is disgusting... Unless it's sweat - a nice, glistening sheen of sweat..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(804370130278, --[[Conversation DocRobert_1 Text voice:MD section:DocRobert_1 keyword:What's happening in this town?]] "Unsanitary conditions can easily lead to the rapid spread of disease. Do you suspect it's an epidemic?"),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(475134126695, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What's happening in this town?]] "An epidemic of filth and carelessness is about all I'm sure of right now."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(600060876331, --[[Conversation DocRobert_1 Text voice:Barry section:DocRobert_1 keyword:What's happening in this town?]] "I have field manual on hygiene if you need."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(228994569096, --[[Conversation DocRobert_1 Text voice:Grunty section:DocRobert_1 keyword:What's happening in this town?]] "If it would help, I can arrange an emergency delivery of soap and foot powder."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(478554552653, --[[Conversation DocRobert_1 Text voice:Buns section:DocRobert_1 keyword:What's happening in this town?]] "I made an instructional video on the importance of personal hygiene. It's called \"Clean and Fresh for Success.\" I shall send you a copy."),
}),
PlaceObj('ConversationLine', {
Annotation = "sarcastic",
Character = "DocRobert",
Text = T(566169027838, --[[Conversation DocRobert_1 Text sarcastic voice:DocRobert section:DocRobert_1 keyword:What's happening in this town?]] "I'll be counting the days until it gets here."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(991045566853, --[[Conversation DocRobert_1 Text voice:Thor section:DocRobert_1 keyword:What's happening in this town?]] "It sounds to me like these people need to reinvigorate their auras with a good colon cleanse. Here's what I like to do..."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(689986700134, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What's happening in this town?]] "Please. Stop. Just write it down for me and I'll look it over later. Okay, Dr. Moonbeam?"),
}),
},
}),
},
MaxPlayed = 2,
}),
},
id = "WhatsHappening",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
Given = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.Given
end,
}),
},
Keyword = "What is the cause of all these deaths?",
KeywordT = T(498619044870, --[[Conversation DocRobert_1 KeywordT]] "What is the cause of all these deaths?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(340692584506, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Natural causes not good enough for you, eh?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(783696180226, --[[Conversation DocRobert_1 Text voice:Reaper section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Dying is as natural as living. The two of them are inseparable. Like two lovers swirling in an endless dance."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(141009478997, --[[Conversation DocRobert_1 Text voice:Gus section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Dang, Woodstock, can't you talk straight?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(961759683525, --[[Conversation DocRobert_1 Text voice:Buns section:DocRobert_1 keyword:What is the cause of all these deaths?]] "We would like answers, not jokes, Doctor. Give us your expert medical opinion."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(207552612530, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Just kidding. Well, if it's a disease it's not any one I'm aware of. No traces of poisoning, either. No contamination in the water. Now, you may have noticed that the locals are a little superstitious around here. They're simple-minded country folk."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(967202373086, --[[Conversation DocRobert_1 Text voice:Nails section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Hey, man. I'm a little bit country myself."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(698155436763, --[[Conversation DocRobert_1 Text voice:Larry section:DocRobert_1 keyword:What is the cause of all these deaths?]] "If you saw the shit that I've seen you'd be superstitious too, man!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(661786853674, --[[Conversation DocRobert_1 Text voice:Omryn section:DocRobert_1 keyword:What is the cause of all these deaths?]] "A little superstition is good protection against calamity."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(187675515072, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What is the cause of all these deaths?]] "I, on the other hand, am a man of science. But God, or whoever is in his place, as my witness: I can't find a single scientific explanation for this carnival of death."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(517859756478, --[[Conversation DocRobert_1 Text voice:Thor section:DocRobert_1 keyword:What is the cause of all these deaths?]] "That is because science moves us away from nature. It is only by moving towards nature that we achieve enlightenment."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(181496725845, --[[Conversation DocRobert_1 Text voice:Fidel section:DocRobert_1 keyword:What is the cause of all these deaths?]] "Ooh! Dia de Los Muertos! This is Fidel's favorite holiday. I bring many gifts of death!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(451144668525, --[[Conversation DocRobert_1 Text voice:Steroid section:DocRobert_1 keyword:What is the cause of all these deaths?]] "I went to a carnival once and found out the strongman game was rigged. It did not start out as a carnival of death, but I made sure it ended that way!"),
}),
},
}),
},
}),
},
id = "WhatIsTheCauseOfTheseDeaths",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('SectorSetHospital', {
sector_id = "F13",
}),
},
Keyword = "Can you provide medical aid?",
KeywordT = T(673764952213, --[[Conversation DocRobert_1 KeywordT]] "Can you provide medical aid?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(485646699526, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Can you provide medical aid?]] "Sure, why not. I'm sure your mission is more important than mine. All these dying people can wait while I kiss your boo-boos."),
}),
},
id = "Canyouprovidemedicalaid",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
Given = true,
voodoo = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.Given and quest.voodoo
end,
}),
},
Keyword = "What can you tell us about Voodoo?",
KeywordT = T(792744833520, --[[Conversation DocRobert_1 KeywordT]] "What can you tell us about Voodoo?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(999156083161, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "Bunch of baloney, if you ask me, but don't take those crazy-ass pagans lightly. Those people are dangerous. You know, there's something fishy about that old witch <em>Wanda</em>. And I'm not just talking about her steady catch-of-the-day diet!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(898333954919, --[[Conversation DocRobert_1 Text voice:Omryn section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "This is good idea. We should investigate her food."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(678995731718, --[[Conversation DocRobert_1 Text voice:Tex section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "Ooh. A fish called Wanda. We should get autograph!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(865393414135, --[[Conversation DocRobert_1 Text voice:Flay section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "Fishing is to hunting as checkers is to chess."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(294197138770, --[[Conversation DocRobert_1 Text voice:Raven section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "Pagan Voodoo fishy witch lady? Okay. I'll just add her name to our list of bizarre and suspicious people... if there's room."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(627187997243, --[[Conversation DocRobert_1 Text voice:Kalyna section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "Perhaps we should throw water on her and see if she turns into a fish!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(958893524387, --[[Conversation DocRobert_1 Text voice:Nails section:DocRobert_1 keyword:What can you tell us about Voodoo?]] "My old man used to go fishing with a gun, some twine, and a tarp. I never knew what he caught. He invited me along once. I didn't go."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
id = "WhatCanYouTellUsAboutVoodoo",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Given", "writer" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Given and quest.writer
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DocRobert_1",
PhraseId = "WhereDidHeLive",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "DocRobert_1",
PhraseId = "ThereAreSomeMissingPages",
}),
},
Keyword = "Tell us about the dead writer",
KeywordT = T(421060342334, --[[Conversation DocRobert_1 KeywordT]] "Tell us about the dead writer"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(131732776300, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Tell us about the dead writer]] "My friend <em>Roger Wilcox</em>, right there on the autopsy table. Go ahead and ask him anything you like. You'll find he's very open."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Laughing",
Character = "Flay",
Text = T(741460298089, --[[Conversation DocRobert_1 Text Laughing voice:Flay section:DocRobert_1 keyword:Tell us about the dead writer]] "That is a very good joke. I will have to remember it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(461616974278, --[[Conversation DocRobert_1 Text voice:MD section:DocRobert_1 keyword:Tell us about the dead writer]] "Why do coroners always have such a sick sense of humor?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(796525494474, --[[Conversation DocRobert_1 Text voice:Barry section:DocRobert_1 keyword:Tell us about the dead writer]] "You're not capable of any humility, are you doctor?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(607193944245, --[[Conversation DocRobert_1 Text voice:Mouse section:DocRobert_1 keyword:Tell us about the dead writer]] "How did he die? Was it the disease?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(750464589364, --[[Conversation DocRobert_1 Text voice:Raider section:DocRobert_1 keyword:Tell us about the dead writer]] "Have you been able to establish a link to the other recent deaths?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(773427658240, --[[Conversation DocRobert_1 Text voice:Steroid section:DocRobert_1 keyword:Tell us about the dead writer]] "Hello? Dead person? Can you hear me? Hmmm. I think he is asleep."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(361709802808, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Tell us about the dead writer]] "He came here to write a book that I was sure no one would ever read. And now it has turned out to be a scientific fact! He died just as elegantly as the other ones."),
}),
},
NoBackOption = true,
id = "Whatcanyoutellusaboutvoodoo",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "cabin",
QuestId = "PaixDisease",
}),
},
Enabled = false,
GoTo = "<root>",
Keyword = "Any more details about the dead writer?",
KeywordT = T(656331422045, --[[Conversation DocRobert_1 KeywordT]] "Any more details about the dead writer?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(319519226003, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Any more details about the dead writer?]] "Well, aren't you the nosey type? Can't tell you much. I don't have time for reading, apart from medical journals, so writers don't really interest me. I know he spent his days mostly hanging out with that weirdo <em>Xavier</em>, and scribbling notes in his <em>cabin</em> right behind this one."),
}),
},
id = "WhereDidHeLive",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "ClinicCombat" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.ClinicCombat
end,
}),
PlaceObj('QuestIsVariableNum', {
Amount = 3,
Prop = "Clues",
QuestId = "Sanatorium",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "MangelSamples" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelSamples
end,
}),
},
}),
},
Enabled = false,
GoTo = "<root>",
Keyword = "Isn't the whole Sanatorium infected with a deadly disease?",
KeywordT = T(220910596067, --[[Conversation DocRobert_1 KeywordT]] "Isn't the whole Sanatorium infected with a deadly disease?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(636800758754, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Isn't the whole Sanatorium infected with a deadly disease?]] "Could be. I know they had their hands full trying to treat it, that's for sure. I haven't been back there in months and haven't heard any news, either. Who knows? Maybe they're all dead by now."),
}),
},
id = "Anymoredetailsaboutthedeadwriter",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "tornpage" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.tornpage
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "cabin",
QuestId = "PaixDisease",
}),
},
Enabled = false,
Keyword = "There are some missing pages in Wilcox’s diary",
KeywordT = T(733978231180, --[[Conversation DocRobert_1 KeywordT]] "There are some missing pages in Wilcox’s diary"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(725160879089, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "Beats me. If I'm certain of one thing in this village, it is that everyone around here is funny in the head. Have you met the <em>Hog Lady</em>?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(918940882614, --[[Conversation DocRobert_1 Text voice:Mouse section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "Excuse me! That is no way to refer to a lady."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(213369903361, --[[Conversation DocRobert_1 Text voice:Scully section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "Women generally like to be called by their names, mate. That's a lesson I had to be taught a few times before I remembered it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(804940066555, --[[Conversation DocRobert_1 Text voice:Magic section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "Oh, there's plenty of cuckoos in this town, Doc. I don't even have to look out the window to see one."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(336074581409, --[[Conversation DocRobert_1 Text voice:Scope section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "There is very definitely a bit of looniness in the air here, Doctor. You may want to test yourself to be certain you haven't caught it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(632564603456, --[[Conversation DocRobert_1 Text voice:Hitman section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "Just remember, when you point your finger there's four more pointing right back at ya, Doc."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(590641867994, --[[Conversation DocRobert_1 Text voice:Nails section:DocRobert_1 keyword:There are some missing pages in Wilcox’s diary]] "The only hog I know that's also a lady is my Harley-Davidson FL Hydra-Glide. Now, she's what I call an easy ride!"),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "ThereAreSomeMissingPages",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
diary = false,
execution = false,
foundpage = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.diary and not quest.execution and not quest.foundpage
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Given",
QuestId = "PaixDisease",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "DocRobert_1",
PhraseId = "Anymoredetailsaboutthedeadwriter",
}),
},
Keyword = "What are you doing here?",
KeywordT = T(445021562677, --[[Conversation DocRobert_1 KeywordT]] "What are you doing here?"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"Language barrier" is whispered with a grin',
Character = "DocRobert",
Text = T(389878892304, --[[Conversation DocRobert_1 Text "Language barrier" is whispered with a grin voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "I've been sent to investigate why these poor wretches are dropping faster than the dot-com stock market. I usually work as the coroner at the <em>Sanatorium</em> not far from here. That's how I introduced myself, but the fools started calling me \"the colonel.\" Don't mind them... Language barrier."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(595618110122, --[[Conversation DocRobert_1 Text voice:Tex section:DocRobert_1 keyword:What are you doing here?]] "They think you are a colonel? I guess that make you new sheriff in town!"),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(130638984077, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "God, I hope not! I'm more of a \"have scalpel, will travel\" kind of guy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "ClinicCombat" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.ClinicCombat
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(850529576393, --[[Conversation DocRobert_1 Text voice:Magic section:DocRobert_1 keyword:What are you doing here?]] "Sanitarium? You worked with those creepy cadavers? That's wild, man. Couldn't pay me enough for that."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(946374257538, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "That's what I keep telling 'em!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "ClinicCombat" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.ClinicCombat
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(746201054877, --[[Conversation DocRobert_1 Text voice:Red section:DocRobert_1 keyword:What are you doing here?]] "Ye did autopsies on those zombies!? It's a wonder you're still alive."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(733420277663, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "We don't like to use the Z-word."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "Given" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.Given
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(879155353847, --[[Conversation DocRobert_1 Text voice:Vicki section:DocRobert_1 keyword:What are you doing here?]] "That Sanitarium place be creepy, mon!"),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(523302022140, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "Well, creepy is a relative term in my line of work, but... yes."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set( "MangelExposed" ),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelExposed
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(747422575368, --[[Conversation DocRobert_1 Text voice:Sidney section:DocRobert_1 keyword:What are you doing here?]] "What is your opinion of Dr. Kronenberg?"),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(378238064061, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "One hell of a smart lady, but I try to stay away from her. I recommend you do the same."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(319769244932, --[[Conversation DocRobert_1 Text voice:Larry_Clean section:DocRobert_1 keyword:What are you doing here?]] "I saw that market dip coming, man! Dot-coms are a scam. I'm invested in big pharma."),
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(256579631268, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "And I can tell by the tracks on your arms that big pharma has invested a lot into you."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(923906612030, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:What are you doing here?]] "Anyway, I stopped correcting them, so now I guess I'm promoted, huh? Haha!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(102930854400, --[[Conversation DocRobert_1 Text voice:Len section:DocRobert_1 keyword:What are you doing here?]] "Military rank is not a joke, Doctor."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(210565228906, --[[Conversation DocRobert_1 Text voice:Igor section:DocRobert_1 keyword:What are you doing here?]] "Impossible. You cannot be colonel without many commendations."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(133083197272, --[[Conversation DocRobert_1 Text voice:Gus section:DocRobert_1 keyword:What are you doing here?]] "Congrats, Colonel! My advice? Retire."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "WhatAreYouDoingHere",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
diary = true,
execution = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.diary and not quest.execution
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DocRobert_1",
PhraseId = "ThereAreSomeMissingPages",
}),
},
Keyword = "We found Wilcox’s diary.",
KeywordT = T(443902405410, --[[Conversation DocRobert_1 KeywordT]] "We found Wilcox’s diary"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(643655638002, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:We found Wilcox’s diary.]] "Well, here's your proof, wild bunch. Our deceased friend here might be a crazy fool, but he's nothing compared to that old bat <em>Wanda</em> and her pet chicken-heads. They are killing off their own. And they surely won't stop. Just say the word and I guarantee the witch will get what she deserves."),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Whoisthedeadwriterthatusedtolivehere",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "execution",
QuestId = "PaixDisease",
}),
},
GoTo = "<end conversation>",
Keyword = "You are right, doc. Wanda needs to die.",
KeywordT = T(626665214962, --[[Conversation DocRobert_1 KeywordT]] "You are right, doc. Wanda needs to die."),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(387458122376, --[[Conversation DocRobert_1 Text voice:Nails section:DocRobert_1 keyword:You are right, doc. Wanda needs to die.]] "Time for the Voodoo lady to take a dirt nap."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(169387344147, --[[Conversation DocRobert_1 Text voice:Barry section:DocRobert_1 keyword:You are right, doc. Wanda needs to die.]] "It is a thing of regret, but thou shalt not suffer a witch to live."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(279069736708, --[[Conversation DocRobert_1 Text voice:Larry_Clean section:DocRobert_1 keyword:You are right, doc. Wanda needs to die.]] "She's gotta die, man! I mean, think of the chickens!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(895130897093, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:You are right, doc. Wanda needs to die.]] "Now, that's what I'm talking about. Glad to see you got a good head on those shoulders and a large enough set of balls to do the right thing. Let's put an end to that freak show. "),
}),
},
PhraseRolloverText = T(422597953137, --[[Conversation DocRobert_1 PhraseRolloverText]] "This choice will have consequences."),
StoryBranchIcon = "conversation_arrow",
id = "WefoundWilcoxsdiary",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Not yet",
KeywordT = T(326965499616, --[[Conversation DocRobert_1 KeywordT]] "Not yet"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(471358854912, --[[Conversation DocRobert_1 Text voice:Scully section:DocRobert_1 keyword:Not yet]] "Hang on, mate. We gotta think this through first."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(211499495137, --[[Conversation DocRobert_1 Text voice:Sidney section:DocRobert_1 keyword:Not yet]] "Sorry, but before we start our own Spanish Inquisition perhaps we should take a moment to consider our options."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(974685074289, --[[Conversation DocRobert_1 Text voice:Scope section:DocRobert_1 keyword:Not yet]] "Let us take a moment to step back and look at this from range first."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(240300280302, --[[Conversation DocRobert_1 Text voice:DrQ section:DocRobert_1 keyword:Not yet]] "Greater deeds need a greater amount of time and focus. We should never underestimate the forces of nature."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(699562182081, --[[Conversation DocRobert_1 Text voice:Reaper section:DocRobert_1 keyword:Not yet]] "The time is not yet ideal."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(224469093711, --[[Conversation DocRobert_1 Text voice:Shadow section:DocRobert_1 keyword:Not yet]] "Let's snoop around and see if we can dig up that lost page first."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(387533760710, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Not yet]] "Yeah, yeah. Take your time, no need to hurry. It's not like people are dying left and right or anything."),
}),
},
StoryBranchIcon = "conversation_back",
id = "Dowhateveryouthinkisnecessarydoctor",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "foundpage" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.foundpage
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
campattacked = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.campattacked
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Clue_ChaletMention",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "attack",
QuestId = "PaixDisease",
}),
PlaceObj('GroupSetBehaviorAdvanceTo', {
MarkerGroup = "ThugsAttack",
Running = true,
TargetUnit = "ChaletThugsAttack",
UseWeapons = true,
}),
PlaceObj('PlaySetpiece', {
setpiece = "Chalet_Attack",
}),
},
GoTo = "<end conversation>",
Keyword = "We know you infected the whole village",
KeywordT = T(419879951761, --[[Conversation DocRobert_1 KeywordT]] "We know you infected the whole village"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(971132097934, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:We know you infected the whole village]] "That is a bit far-fetched. I have thrown a spark, but the fire burns on its own. And this strain of the <em>Red Rabies</em> is hot as hell! The patients enter the catatonic phase before the personality loss phase, which may be the solution to <em>Dr. Kronenberg's</em> main issue!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(750003190988, --[[Conversation DocRobert_1 Text voice:MD section:DocRobert_1 keyword:We know you infected the whole village]] "Jesus! How can you call yourself a doctor?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(782857339951, --[[Conversation DocRobert_1 Text voice:Steroid section:DocRobert_1 keyword:We know you infected the whole village]] "I feel bodily urges to squash you like a puny bug."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(639735681300, --[[Conversation DocRobert_1 Text voice:Fauda section:DocRobert_1 keyword:We know you infected the whole village]] "You are a servant of Shaitan! Prepare to be sent back to him... with my regards."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(702728574373, --[[Conversation DocRobert_1 Text voice:Smiley section:DocRobert_1 keyword:We know you infected the whole village]] "I do not know what any of these medical words mean, but I will be sure to ask someone after I kill you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(491564854176, --[[Conversation DocRobert_1 Text voice:Mouse section:DocRobert_1 keyword:We know you infected the whole village]] "You are easily in the top five of the most disgusting people I have ever met!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(574696153848, --[[Conversation DocRobert_1 Text voice:Blood section:DocRobert_1 keyword:We know you infected the whole village]] "I'll be sure to pass your notes along to someone who cares right after I finish carving you up like a dinner roast."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(667078438234, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:We know you infected the whole village]] "Now, before you become too emotional for me to handle, please meet my friends from <em>Landsbach</em> who needed this village as much as I needed their cooperation."),
}),
},
PhraseRolloverText = T(824126645106, --[[Conversation DocRobert_1 PhraseRolloverText]] "This choice will have consequences."),
StoryBranchIcon = "conversation_arrow",
id = "WeKnowYouInfectedTheVillage",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "foundpage" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.foundpage
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "campattacked" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.campattacked
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Clue_ChaletMention",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "attack",
QuestId = "PaixDisease",
}),
},
GoTo = "<end conversation>",
Keyword = "We know you infected the whole village",
KeywordT = T(419879951761, --[[Conversation DocRobert_1 KeywordT]] "We know you infected the whole village"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(200386601183, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:We know you infected the whole village]] "That is a bit far-fetched. I have thrown a spark, but the fire burns on its own. And this strain of the <em>Red Rabies</em> is hot as hell! The patients enter the catatonic phase before the personality loss phase, which may be the solution to <em>Dr. Kronenberg's</em> main issue!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(297372975875, --[[Conversation DocRobert_1 Text voice:MD section:DocRobert_1 keyword:We know you infected the whole village]] "Jesus! How can you call yourself a doctor?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(272004267532, --[[Conversation DocRobert_1 Text voice:Steroid section:DocRobert_1 keyword:We know you infected the whole village]] "I feel bodily urges to squash you like a puny bug."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(857647194488, --[[Conversation DocRobert_1 Text voice:Fauda section:DocRobert_1 keyword:We know you infected the whole village]] "You are a servant of Shaitan! Prepare to be sent back to him... with my regards."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(642860800038, --[[Conversation DocRobert_1 Text voice:Smiley section:DocRobert_1 keyword:We know you infected the whole village]] "I do not know what any of these medical words mean, but I will be sure to ask someone after I kill you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(968661623222, --[[Conversation DocRobert_1 Text voice:Mouse section:DocRobert_1 keyword:We know you infected the whole village]] "You are easily in the top five of the most disgusting people I have ever met!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(990829388726, --[[Conversation DocRobert_1 Text voice:Blood section:DocRobert_1 keyword:We know you infected the whole village]] "I'll be sure to pass your notes along to someone who cares right after I finish carving you up like a dinner roast."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
PhraseRolloverText = T(701506752203, --[[Conversation DocRobert_1 PhraseRolloverText]] "This choice will have consequences."),
StoryBranchIcon = "conversation_arrow",
id = "Weknowyouinfectedthewholevillage",
}),
PlaceObj('ConversationPhrase', {
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DocRobert_1 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DocRobert",
Text = T(861973546300, --[[Conversation DocRobert_1 Text voice:DocRobert section:DocRobert_1 keyword:Goodbye]] "And let's not forget about social distancing. Whatever we've got here is probably very infectious."),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
})
|