File size: 58,839 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "DrLEnfer",
Comment = "In this quest two feuding families have lost a member during a play. The leader of the La Domas blames a curse while the leader of the van Tassels blames the doctor. The doctor is very suspicious and has no alibi but is ultimately innocent. \n\nThere were two separate plots from both families leading to the murders.",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set({
FamilyGathered = false,
FamilyGathering = false,
}),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return not quest.FamilyGathered and not quest.FamilyGathering
end,
}),
},
DefaultActor = "DrLEnfer",
disabledInConflict = true,
group = "Farmland",
id = "DrLEnfer_1",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrLEnfer_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(423395418380, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Greeting]] "The name's Dr. L'Enfer. Who the hell are you? Are you the <em>constables</em> I heard about? You here to <em>investigate the murders</em> in the area?"),
}),
},
NoBackOption = true,
id = "Greeting",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrLEnfer_1",
Enabled = false,
PhraseId = "Greeting.Wearejustmercenaries",
}),
},
GoTo = "<root>",
Keyword = "We are here to investigate",
KeywordT = T(268046368288, --[[Conversation DrLEnfer_1 KeywordT]] "We are here to investigate"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(743612517785, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We are here to investigate]] "Oh, really? May I look at your IDs? Badges? No? Of course not. As I see it, you are either some new breed of inventive bandits, or the government is so desperate they started delegating law enforcement to random amateurs."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(175728991255, --[[Conversation DrLEnfer_1 Text voice:Mouse section:DrLEnfer_1 keyword:We are here to investigate]] "Hey! Quit it with the name-calling, mister!"),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(115068822441, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We are here to investigate]] "The Hippocratic Oath doesn't prevent me from hurting your feelings, little missy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(863326481693, --[[Conversation DrLEnfer_1 Text voice:Magic section:DrLEnfer_1 keyword:We are here to investigate]] '"Inventive bandit"! Love that, man! I\'d put that on my business card if I had one.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(525732413866, --[[Conversation DrLEnfer_1 Text voice:Raven section:DrLEnfer_1 keyword:We are here to investigate]] "I wouldn't exactly say we're amateurs."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(255486534809, --[[Conversation DrLEnfer_1 Text voice:Wolf section:DrLEnfer_1 keyword:We are here to investigate]] "Think of us as private dicks."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(360327572638, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We are here to investigate]] "You may rest assured that I most certainly will."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_action",
id = "Weareheretoinvestigate",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrLEnfer_1",
Enabled = false,
PhraseId = "Greeting.Weareheretoinvestigate",
}),
},
GoTo = "<root>",
Keyword = "We are just mercenaries",
KeywordT = T(500014845460, --[[Conversation DrLEnfer_1 KeywordT]] "We are just mercenaries"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(396737300642, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We are just mercenaries]] "So you have no legal reason to be here. You are just meddling in other peoples' affairs in the hope that someone will pay you to kill someone else?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(430390782189, --[[Conversation DrLEnfer_1 Text voice:Buns section:DrLEnfer_1 keyword:We are just mercenaries]] "I wouldn't put it quite that way."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(390574127936, --[[Conversation DrLEnfer_1 Text voice:Blood section:DrLEnfer_1 keyword:We are just mercenaries]] "Wow. That pretty much sums it up. Yes."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(273011805475, --[[Conversation DrLEnfer_1 Text voice:Grizzly section:DrLEnfer_1 keyword:We are just mercenaries]] "Gimme a break, Doc, you're reading me my job description."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(546299520958, --[[Conversation DrLEnfer_1 Text voice:Reaper section:DrLEnfer_1 keyword:We are just mercenaries]] "We are harbingers of death serving a purpose in life."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(951459773523, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We are just mercenaries]] "Me too, but I have a degree in medicine to prove it."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_action",
id = "Wearejustmercenaries",
}),
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set({
ClueTombs = false,
FamilyGathering = false,
}),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return not quest.ClueTombs and not quest.FamilyGathering
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrLEnfer_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(302334466590, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Greeting2]] "You're a sight for sore eyes. So much I wish I was blind."),
}),
},
id = "Greeting2",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set({
ClueTombs = true,
FamilyGathering = false,
}),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueTombs and not quest.FamilyGathering
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation DrLEnfer_1 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(770860710876, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Greeting3]] "Nice day for grave disturbing, isn't it? Hu-ha."),
}),
},
id = "Greeting3",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set({
Given = false,
}),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return not quest.Given
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DoctorMet",
QuestId = "TwinManors",
}),
},
Keyword = "What is going on here?",
KeywordT = T(397426699806, --[[Conversation DrLEnfer_1 KeywordT]] "What is going on here?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(207163919333, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What is going on here?]] "Right now, a bunch of gun-toting kids are disrupting the work of a medical professional."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(457421797527, --[[Conversation DrLEnfer_1 Text voice:Raven section:DrLEnfer_1 keyword:What is going on here?]] "You mentioned murders."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(236809385260, --[[Conversation DrLEnfer_1 Text voice:Red section:DrLEnfer_1 keyword:What is going on here?]] "I h'aint been called a kid since I was a wee bairn! Do I look like a wee bairn to ye?!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(848424167688, --[[Conversation DrLEnfer_1 Text voice:MD section:DrLEnfer_1 keyword:What is going on here?]] "I think he means us."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(396583854503, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What is going on here?]] "You need to know more? Please do not hesitate to go outside and <em>ask someone</em> who cares."),
}),
},
id = "Whatisgoingonhere",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "Given" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.Given
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrLEnfer_1",
PhraseId = "Tellusaboutthemurders2",
}),
PlaceObj('PhraseSetSeen', {
Conversation = "DrLEnfer_1",
PhraseId = "Tellusaboutthemurders2",
Seen = true,
}),
},
GoTo = "Tellusaboutthemurders2",
Keyword = "Tell us about the murders",
KeywordT = T(582505444237, --[[Conversation DrLEnfer_1 KeywordT]] "Tell us about the murders"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(872797947464, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Tell us about the murders]] "What do you need to know? As far as I'm concerned, they have been very successful as such. The patients are surely one hundred percent dead."),
}),
},
PhraseRolloverText = T(605473113269, --[[Conversation DrLEnfer_1 PhraseRolloverText]] "We have been asked to investigate the murders"),
id = "Tellusaboutthemurders1",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set({
DoctorPissed = false,
}),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return not quest.DoctorPissed
end,
}),
},
Enabled = false,
Keyword = "Tell us about the murders",
KeywordT = T(582505444237, --[[Conversation DrLEnfer_1 KeywordT]] "Tell us about the murders"),
id = "Tellusaboutthemurders2",
PlaceObj('ConversationPhrase', {
Keyword = "Tell us everything you know",
KeywordT = T(649108155263, --[[Conversation DrLEnfer_1 KeywordT]] "Tell us everything you know"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(281385624980, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Tell us everything you know]] "Hmmm... You want me to tell you the story about the gorgeous nurse who helped me with my study of Gross Anatomy?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(265249138995, --[[Conversation DrLEnfer_1 Text voice:Hitman section:DrLEnfer_1 keyword:Tell us everything you know]] "Yes, please!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(336781363322, --[[Conversation DrLEnfer_1 Text voice:Fox section:DrLEnfer_1 keyword:Tell us everything you know]] "Mmm, that might be interesting."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(440055815643, --[[Conversation DrLEnfer_1 Text voice:Wolf section:DrLEnfer_1 keyword:Tell us everything you know]] "I'm listening."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(319743224977, --[[Conversation DrLEnfer_1 Text voice:Smiley section:DrLEnfer_1 keyword:Tell us everything you know]] "You have my undivided attention."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(648421697699, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Tell us everything you know]] "No, now that I think of it, I'll keep it to myself. You would not have the stomach for it."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(199064900411, --[[Conversation DrLEnfer_1 Text voice:Blood section:DrLEnfer_1 keyword:Tell us everything you know]] "Yeah, right... Try me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(295162909207, --[[Conversation DrLEnfer_1 Text voice:Nails section:DrLEnfer_1 keyword:Tell us everything you know]] "You're talking to a man who's watched every piece of pornography ever recorded. Hit me, Doc."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(524515407709, --[[Conversation DrLEnfer_1 Text voice:Grizzly section:DrLEnfer_1 keyword:Tell us everything you know]] "I have literally seen people explode, but whatever. Keep your secrets."),
}),
},
}),
},
}),
},
id = "Telluseverythingyouknow",
}),
PlaceObj('ConversationPhrase', {
Keyword = "Where were you at the time of the murder?",
KeywordT = T(636906037752, --[[Conversation DrLEnfer_1 KeywordT]] "Where were you at the time of the murder?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(416107821635, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "Working alone in my clinic, looking over the results of the previous murder. Are you asking me if I have an alibi?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(328092276208, --[[Conversation DrLEnfer_1 Text voice:Raven section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "Yes, we are."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(291017022900, --[[Conversation DrLEnfer_1 Text voice:Raider section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "This is an ongoing investigation and we just need all the information we can get."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(153005420038, --[[Conversation DrLEnfer_1 Text voice:Livewire section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "If you don't have one, that's okay, too. I've already thought up a couple for you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(119030356897, --[[Conversation DrLEnfer_1 Text voice:Vicki section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "Might be a good idea to get one, mon."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(981589758177, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Where were you at the time of the murder?]] "No, I don't have an alibi - which is equally true for you as well, \"constable\"."),
}),
},
id = "Wherehaveyoubeenduringthemurders",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "ClueBrothersRumors" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueBrothersRumors
end,
}),
},
Keyword = "What do you think of the “vengeful spirits”?",
KeywordT = T(726486075248, --[[Conversation DrLEnfer_1 KeywordT]] "What do you think of the “vengeful spirits”?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(584969619437, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What do you think of the “vengeful spirits”?]] "Do YOU believe in Santa Claus? No, actually - don't tell me. I'm afraid to hear the answer I'd get."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(894821950988, --[[Conversation DrLEnfer_1 Text voice:Fidel section:DrLEnfer_1 keyword:What do you think of the “vengeful spirits”?]] "What is problem with Santa Claus?!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = '"Дед Мороз" = Santa Claus',
Character = "Ivan",
Text = T(923749732739, --[[Conversation DrLEnfer_1 Text "Дед Мороз" = Santa Claus voice:Ivan section:DrLEnfer_1 keyword:What do you think of the “vengeful spirits”?]] "Дед Мороз is like God - people need to believe lies."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(813363097251, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What do you think of the “vengeful spirits”?]] "Amen to that. It's the basic truth of the human condition."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(391461778847, --[[Conversation DrLEnfer_1 Text voice:Smiley section:DrLEnfer_1 keyword:What do you think of the “vengeful spirits”?]] "Santa Claus is a great role model for me. I too wish to bring gifts to all the good girls of the world."),
}),
},
}),
},
}),
},
id = "Whatdoyouthinkofthevengefulspirits",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "ClueDoctorAutopsies" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueDoctorAutopsies
end,
}),
},
Keyword = "What are the autopsy results?",
KeywordT = T(404869705520, --[[Conversation DrLEnfer_1 KeywordT]] "What are the autopsy results?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(349553990379, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What are the autopsy results?]] "Some were shot, others were poisoned. All died with great success."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(455592751305, --[[Conversation DrLEnfer_1 Text voice:Raven section:DrLEnfer_1 keyword:What are the autopsy results?]] "You don't say."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(731763330851, --[[Conversation DrLEnfer_1 Text voice:Scope section:DrLEnfer_1 keyword:What are the autopsy results?]] "Success being a relative term."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(522367851469, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What are the autopsy results?]] "Indeed."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(928208967600, --[[Conversation DrLEnfer_1 Text voice:Fidel section:DrLEnfer_1 keyword:What are the autopsy results?]] "Nobody blew up? BORING!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(329179864525, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:What are the autopsy results?]] "However, there was never one who was poisoned and shot at the same time. That probably means the murderer is a responsible person who does not waste resources."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(443036359689, --[[Conversation DrLEnfer_1 Text voice:Blood section:DrLEnfer_1 keyword:What are the autopsy results?]] "Good work, Doctor!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(617854120223, --[[Conversation DrLEnfer_1 Text voice:Reaper section:DrLEnfer_1 keyword:What are the autopsy results?]] "Perhaps, but a simple method of murder does not imply an elegant one."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(458151813254, --[[Conversation DrLEnfer_1 Text voice:Raider section:DrLEnfer_1 keyword:What are the autopsy results?]] "Got it. So, our suspect is someone who thinks wasting lives is okay, but not resources."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(205893409224, --[[Conversation DrLEnfer_1 Text voice:Sidney section:DrLEnfer_1 keyword:What are the autopsy results?]] 'Well, as the great detective once said, "There is nothing more deceptive than an obvious fact."'),
}),
},
}),
},
}),
},
id = "Whataretheautopsyresults",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "ClueDoctorPoison" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueDoctorPoison
end,
}),
},
Keyword = "We found cyanide in your cabinet",
KeywordT = T(464489499424, --[[Conversation DrLEnfer_1 KeywordT]] "We found cyanide in your cabinet"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(827992263025, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "Good job! And if I was a miner, you would have found a sharp pickaxe in my shed, right? Hmm, now that I think of it, I'm quite certain I actually have one somewhere around here."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(208649130569, --[[Conversation DrLEnfer_1 Text voice:MD section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "He has a point, cyanide has some medical uses in clinical chemistry."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(373111076379, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "Oh, a colleague? And where do you see a chemical lab in here, young man?"),
}),
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(134534944999, --[[Conversation DrLEnfer_1 Text voice:MD section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "Umm, it can also be applied in emergency situations to produce a rapid decrease in blood pressure?"),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(998042430205, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "Correct. You get an A minus, where the minus stands for one dead patient because you're too smart to be practical."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(851497903009, --[[Conversation DrLEnfer_1 Text voice:Sidney section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "So sorry, my good man! But, erm, you see, my method of investigation is founded upon the observation of trifles."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(114289602452, --[[Conversation DrLEnfer_1 Text voice:Larry section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "You use a pickaxe for autopsies?"),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(446012789648, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "I'm guessing you used to suck on paint chips as a child."),
}),
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(732701860170, --[[Conversation DrLEnfer_1 Text voice:Larry section:DrLEnfer_1 keyword:We found cyanide in your cabinet]] "Sure! Got any?"),
}),
},
}),
},
}),
},
id = "Wefoundcyanideinyourcabinet",
}),
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DoctorEnabled",
QuestId = "TwinManors",
}),
},
Keyword = "Can you provide medical aid?",
KeywordT = T(673764952213, --[[Conversation DrLEnfer_1 KeywordT]] "Can you provide medical aid?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(148433271273, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Can you provide medical aid?]] "Can shit fly? Regrettably for those on the receiving end, it can. But, to be perfectly honest, neither activity gives me great joy these days."),
}),
},
id = "Canyouprovidemedicalaid",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Sanatorium",
Vars = set({
MangelSamples = true,
Sample_TwinManors = false,
SamplesGiven = false,
}),
__eval = function ()
local quest = gv_Quests['Sanatorium'] or QuestGetState('Sanatorium')
return quest.MangelSamples and not quest.Sample_TwinManors and not quest.SamplesGiven
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "DoctorEnabled" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.DoctorEnabled
end,
}),
},
Keyword = "Are there cases of Red Rabies here?",
KeywordT = T(374282539172, --[[Conversation DrLEnfer_1 KeywordT]] "Are there cases of Red Rabies here?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(320661908754, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Are there cases of Red Rabies here?]] "You could say so, but not in the literal sense. What now, is that old hag <em>Kronenberg</em> sending you after me? I told her I'm not helping her and I meant it. Please go and advise her to apply both the superius and inferius labia oris to my gluteus maximus."),
}),
},
NoBackOption = true,
id = "AretherecasesofRedRabieshere",
PlaceObj('ConversationPhrase', {
Keyword = "Do what now?",
KeywordT = T(672981866443, --[[Conversation DrLEnfer_1 KeywordT]] "Do what now?"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(761383589555, --[[Conversation DrLEnfer_1 Text voice:Buns section:DrLEnfer_1 keyword:Do what now?]] "No, don't ask about that..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(739309119630, --[[Conversation DrLEnfer_1 Text voice:MD section:DrLEnfer_1 keyword:Do what now?]] "Erm... I think he wants her to..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(994463819884, --[[Conversation DrLEnfer_1 Text voice:DrQ section:DrLEnfer_1 keyword:Do what now?]] "I believe what the doctor is suggesting is..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(334096455867, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Do what now?]] "In short, you can tell her to kiss my ass."),
}),
},
id = "DoWhatNow",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "DrLEnfer_1",
PhraseId = "AretherecasesofRedRabieshere.Herresearchkeepsheralive",
}),
},
Keyword = "She got the Red Rabies",
KeywordT = T(362113950530, --[[Conversation DrLEnfer_1 KeywordT]] "She got the Red Rabies"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(798360734313, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:She got the Red Rabies]] "Did she? If this isn't some karmic justice! When is the funeral?"),
}),
},
id = "ShegottheRedRabies",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "It's about saving human lives!",
KeywordT = T(711897881365, --[[Conversation DrLEnfer_1 KeywordT]] "It's about saving human lives!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(359239487631, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:It's about saving human lives!]] "If I subscribed to Dr. Kronenberg's approach to saving human lives, I would go around putting calculators in first aid kits. Now stop wasting my time."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Itsaboutsavinghumanlives",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Pessimist",
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
},
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Sample_TwinManors",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Samples",
QuestId = "Sanatorium",
}),
PlaceObj('UnitGrantItem', {
ItemId = "VirusSample",
}),
},
Enabled = false,
GoTo = "<root>",
Keyword = "Her research keeps her alive",
KeywordT = T(203556856593, --[[Conversation DrLEnfer_1 KeywordT]] "Her research keeps her alive"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(804843686131, --[[Conversation DrLEnfer_1 Text voice:Larry_Clean section:DrLEnfer_1 keyword:Her research keeps her alive]] "She thinks she's close to a cure, but from what I've seen... it's worse than the disease."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(312923440284, --[[Conversation DrLEnfer_1 Text voice:Red section:DrLEnfer_1 keyword:Her research keeps her alive]] "She's mad as a hatter, that one is. Finishing her research will finish her!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(245276569941, --[[Conversation DrLEnfer_1 Text voice:Fox section:DrLEnfer_1 keyword:Her research keeps her alive]] 'Well, she looks awful. I think her "research" is only making her worse.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(127921363495, --[[Conversation DrLEnfer_1 Text voice:Magic section:DrLEnfer_1 keyword:Her research keeps her alive]] "Man, I think she's gone crazy. She thinks her research is helping, but it's just making her sicker."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(875721762736, --[[Conversation DrLEnfer_1 Text voice:Livewire section:DrLEnfer_1 keyword:Her research keeps her alive]] "I may not be a doctor, but in my opinion, the research is the only thing keeping her alive."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(327651275520, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Her research keeps her alive]] "So basically you're telling me that the sooner I help her with her research, the sooner we'll get rid of her? That's very cynical of you. I'll help any way I can."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Herresearchkeepsheralive",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Negotiator",
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Loner",
}),
},
}),
},
Keyword = "Help us and we'll leave you alone",
KeywordT = T(266531836251, --[[Conversation DrLEnfer_1 KeywordT]] "Help us and we'll leave you alone"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(448784259690, --[[Conversation DrLEnfer_1 Text voice:Flay section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "You help us with this and we will never cross paths again."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(809398422832, --[[Conversation DrLEnfer_1 Text voice:Gus section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "This is painful for both of us, Dr. Woodchipper. Give us what we want and we'll get out of your hair."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(451612067436, --[[Conversation DrLEnfer_1 Text voice:Larry section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "Hey, man, it's cool. You just give us the stuff and we go away and forget your name, y'know? Oh, wait... What was your name?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(686806308143, --[[Conversation DrLEnfer_1 Text voice:Larry_Clean section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "If you help us out, I swear we will leave and never, ever get anywhere near your medicine cabinet."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(681570395615, --[[Conversation DrLEnfer_1 Text voice:Reaper section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "I offer a simple deal, doctor. Give us what we want, and you will never be in my crosshairs again."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(508158295741, --[[Conversation DrLEnfer_1 Text voice:Shadow section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "This is uncomfortable for both of us. Give us what we want and you'll never see us again... not even our shadows."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(749686679816, --[[Conversation DrLEnfer_1 Text voice:Buns section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "Give us what we want and we promise to leave you alone... in this rather sad and filthy place."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(222482451242, --[[Conversation DrLEnfer_1 Text voice:Raider section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "Doctor, if you give us that sample, you'll be off our person-of-interest list. Sound good?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(646043649820, --[[Conversation DrLEnfer_1 Text voice:Sidney section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "Do be a good doctor and give us that sample. Good doctors are far less interesting to me than bad ones... if you take my meaning."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(697325977366, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Help us and we'll leave you alone]] "You promise? I'll hold you to your word, so don't expect me to answer any pesky questions about any murders. You can go play detective somewhere else."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Helpusandwellleaveyoualone",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DoctorPissed",
QuestId = "TwinManors",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Sample_TwinManors",
QuestId = "Sanatorium",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Samples",
QuestId = "Sanatorium",
}),
PlaceObj('UnitGrantItem', {
ItemId = "VirusSample",
}),
},
GoTo = "<root>",
Keyword = "Just help us with the virus",
KeywordT = T(855618416152, --[[Conversation DrLEnfer_1 KeywordT]] "Just help us with the virus"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(929488979166, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Just help us with the virus]] "Okay, I'll share with you my own research. Now go give it to Kronenberg and get off my back!"),
}),
},
id = "Justhelpuswiththevirus",
}),
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "Given" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.Given
end,
}),
PlaceObj('QuestIsVariableNum', {
Amount = 3,
Prop = "Clues",
QuestId = "TwinManors",
}),
},
Keyword = "We have a suspect for the murders",
KeywordT = T(869471684695, --[[Conversation DrLEnfer_1 KeywordT]] "We have a suspect for the murders"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(913261933117, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We have a suspect for the murders]] "Good for you! Do you want me to gather those annoying Van Tassels and Le Domas so you can tell them about it, or do you need more time sniffing around and asking repetitive questions?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(740501433447, --[[Conversation DrLEnfer_1 Text voice:Livewire section:DrLEnfer_1 keyword:We have a suspect for the murders]] "Seriously. I feel like a cop. Eugh."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(303562841443, --[[Conversation DrLEnfer_1 Text voice:Ice section:DrLEnfer_1 keyword:We have a suspect for the murders]] "I hear that. I didn't sign on to this gig to walk around and act like five-oh."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(434652517718, --[[Conversation DrLEnfer_1 Text voice:Sidney section:DrLEnfer_1 keyword:We have a suspect for the murders]] "I must admit, I am rather enjoying myself!"),
}),
},
}),
},
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Wehaveasuspectforthemurders",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "FamilyGathering",
QuestId = "TwinManors",
}),
},
GoTo = "<end conversation>",
Keyword = "Gather them",
KeywordT = T(403373217007, --[[Conversation DrLEnfer_1 KeywordT]] "Gather them"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(679499869547, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Gather them]] "Alright. Let's get this over with."),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Gatherthem",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "Not yet",
KeywordT = T(326965499616, --[[Conversation DrLEnfer_1 KeywordT]] "Not yet"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(392667697001, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Not yet]] "I wonder if you'll ever leave... No, no, don't tell me - I like the suspense."),
}),
},
StoryBranchIcon = "conversation_back",
id = "Notyet",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "ClueTombs", "Given" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueTombs and quest.Given
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "ClueManorsOwner",
QuestId = "TwinManors",
}),
PlaceObj('QuestSetVariableNum', {
Amount = 1,
Prop = "Clues",
QuestId = "TwinManors",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "DrLEnfer_1",
PhraseId = "HowdidtheLEnferbrothersdie",
}),
},
Keyword = "We found the will of the L’Enfer brothers",
KeywordT = T(896454500934, --[[Conversation DrLEnfer_1 KeywordT]] "We found the will of the L’Enfer brothers"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(299489943742, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Hm. Is grave robbing your occupation, or just a hobby?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(924416755049, --[[Conversation DrLEnfer_1 Text voice:Fidel section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Hobby!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(699711464792, --[[Conversation DrLEnfer_1 Text voice:Nails section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Occupation."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(387364329910, --[[Conversation DrLEnfer_1 Text voice:Blood section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Actually, we're more into the grave filling business."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(452658147231, --[[Conversation DrLEnfer_1 Text voice:Mouse section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Well, this is really more like grave borrowing... Except, that sounds weird, doesn't it?"),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(226985564882, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Before you decide to start digging out my other <em>L'Enfer relatives</em>, I will tell you what you need to know."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(681536355155, --[[Conversation DrLEnfer_1 Text voice:Fidel section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "But we did put them back!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(365383242581, --[[Conversation DrLEnfer_1 Text voice:Gus section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Might have done that from the start, Woodman, and spared us some digging."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(205686087947, --[[Conversation DrLEnfer_1 Text voice:Shadow section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Maybe next time start with that."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(732085528367, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:We found the will of the L’Enfer brothers]] "Yes, I'm the <em>last living heir</em> of the L'Enfer family and I own this land. However, decades ago the Manors were sold separately to the horrible Van Tassel and Le Domas families."),
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "WefoundthewilloftheLEnferbrothers",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "TwinManors",
Vars = set( "ClueBrothersRumors" ),
__eval = function ()
local quest = gv_Quests['TwinManors'] or QuestGetState('TwinManors')
return quest.ClueBrothersRumors
end,
}),
},
Enabled = false,
Keyword = "How did the L’Enfer brothers die?",
KeywordT = T(576882893879, --[[Conversation DrLEnfer_1 KeywordT]] "How did the L’Enfer brothers die?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(799903762148, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "That shameful incident is a family secret."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(752292822762, --[[Conversation DrLEnfer_1 Text voice:Blood section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "A-ha! So they did kill each other after all!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(999155702065, --[[Conversation DrLEnfer_1 Text voice:Steroid section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Is it scary?..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(821547151423, --[[Conversation DrLEnfer_1 Text voice:Kalyna section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "We promise not to tell!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(193679441261, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Okay, here is the story: one hundred years ago, the servants were cleaning a cesspool. One of them succumbed to the toxic fumes coming out of it, fell inside and started drowning..."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(882613439645, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "<em>Huey L'Enfer</em> tried to help him, but also fell down the shit hole. Then <em>Dewey</em> came to help, with the same result..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(548799653015, --[[Conversation DrLEnfer_1 Text voice:Mouse section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Eeew..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(918200767475, --[[Conversation DrLEnfer_1 Text voice:Len section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Damn, that's ugly."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(884765154357, --[[Conversation DrLEnfer_1 Text voice:Raider section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Let me guess - there was a third brother named <em>Louie</em>?"),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(190830230240, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Oui. He is my grandfather. He died in France, away from this shithole."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(103129260919, --[[Conversation DrLEnfer_1 Text voice:Thor section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "I suppose there are worse ways to go, but I'm having difficulty thinking of any at the moment."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(876967612783, --[[Conversation DrLEnfer_1 Text voice:Magic section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Come on, man. You're puttin' me on."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(823802129098, --[[Conversation DrLEnfer_1 Text voice:Wolf section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Important reminder to double check your safety equipment, people! All right. Continue."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(430841394715, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "A total of five people died that fateful day drowning in shit, and it's definitely not written on their gravestones."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(293281786699, --[[Conversation DrLEnfer_1 Text voice:Raider section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "That explains the speculations about their deaths."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(314866072490, --[[Conversation DrLEnfer_1 Text voice:Larry section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Man, your family is full of shit."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(442834619384, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Ha. Ha."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(211145702046, --[[Conversation DrLEnfer_1 Text voice:Larry_Clean section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Man, your family is full of shit."),
}),
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(442834619384, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "Ha. Ha."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(635652176056, --[[Conversation DrLEnfer_1 Text voice:Tex section:DrLEnfer_1 keyword:How did the L’Enfer brothers die?]] "More like smeared! Ha, ha! ...What? Nothing?"),
}),
},
}),
},
}),
},
id = "HowdidtheLEnferbrothersdie",
}),
PlaceObj('ConversationPhrase', {
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation DrLEnfer_1 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "DrLEnfer",
Text = T(523632406115, --[[Conversation DrLEnfer_1 Text voice:DrLEnfer section:DrLEnfer_1 keyword:Goodbye]] "It's never too early to stop wasting my time."),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
})
|