File size: 44,014 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 |
-- ========== GENERATED BY BanterDef Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(713742294184, --[[BanterDef CampDuCrocodile_PlantBorassus_00_Wanda Text section:Banters_Local_Chalet/CampDuCrocodile_PlantBorassus_00_Wanda voice:Wanda]] "Your murderer hands picked the <em>Borassus root</em>, now they must plant its seeds where it shall flourish, and the circle shall be closed!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ReduceCrocodileCampStrength",
Vars = set({
BorassusPlanted = false,
}),
__eval = function ()
local quest = gv_Quests['ReduceCrocodileCampStrength'] or QuestGetState('ReduceCrocodileCampStrength')
return not quest.BorassusPlanted
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
WandaInitial = true,
herbgiven = true,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.WandaInitial and quest.herbgiven and not quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"G15",
},
}),
},
}),
},
group = "Banters_Local_Chalet",
id = "CampDuCrocodile_PlantBorassus_00_Wanda",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "DocRobert",
'Text', T(525331003993, --[[BanterDef PaixDisease_DocRobert01 Text section:Banters_Local_Chalet/PaixDisease_DocRobert01 voice:DocRobert]] "And let's not forget about social distancing. Whatever we've got here is probably very infectious."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
execution = true,
townflip = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.execution and not quest.townflip
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_DocRobert01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "HogLady",
'Text', T(111290228461, --[[BanterDef PaixDisease_DocRobertApproach Text section:Banters_Local_Chalet/PaixDisease_DocRobertApproach voice:HogLady]] "He met the devil. And the devil took what he demanded."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
diary = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.diary
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_DocRobertApproach",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(429578830850, --[[BanterDef PaixDisease_HogLady01 Text section:Banters_Local_Chalet/PaixDisease_HogLady01 voice:TheHogLady]] "He met the devil. And the devil took what he demanded."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(608726522505, --[[BanterDef PaixDisease_HogLady02 Text section:Banters_Local_Chalet/PaixDisease_HogLady02 voice:TheHogLady]] "The dog ate so much earth it died. My <em>hog</em> is in his place now."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
PlaceObj('BanterHasPlayed', {
Banters = {
"PaixDisease_HogLady01",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(582445799207, --[[BanterDef PaixDisease_HogLady03 Text section:Banters_Local_Chalet/PaixDisease_HogLady03 voice:TheHogLady]] "The answer is within the question. What is the question?"),
}),
PlaceObj('BanterLine', {
'Character', "DrQ",
'Text', T(433540214620, --[[BanterDef PaixDisease_HogLady03 Text section:Banters_Local_Chalet/PaixDisease_HogLady03 voice:DrQ]] "The question is always preceded by another question. The quest for knowledge is a circle disguised as a spiral."),
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
PlaceObj('BanterHasPlayed', {
Banters = {
"PaixDisease_HogLady02",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(818724785114, --[[BanterDef PaixDisease_HogLady04 Text section:Banters_Local_Chalet/PaixDisease_HogLady04 voice:TheHogLady]] "Do you like my <em>hog</em>? He likes you too. He saw something that night."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Scope",
'Text', T(344711590092, --[[BanterDef PaixDisease_HogLady04 Text section:Banters_Local_Chalet/PaixDisease_HogLady04 voice:Scope]] "Truly? Does your hog have night vision goggles then?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(902072734204, --[[BanterDef PaixDisease_HogLady04 Text section:Banters_Local_Chalet/PaixDisease_HogLady04 voice:Shadow]] "Unless that thing is equipped with a motion detector and a night sight capable camera, I highly doubt it."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(543779119391, --[[BanterDef PaixDisease_HogLady04 Text section:Banters_Local_Chalet/PaixDisease_HogLady04 voice:Scully]] "This lady's fruitier than an edible arrangement."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
PlaceObj('BanterHasPlayed', {
Banters = {
"PaixDisease_HogLady03",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(798234134269, --[[BanterDef PaixDisease_HogLady07 Text section:Banters_Local_Chalet/PaixDisease_HogLady07 voice:TheHogLady]] "Don't worry. My <em>hog</em> does not bite."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(893966001336, --[[BanterDef PaixDisease_HogLady08 Text section:Banters_Local_Chalet/PaixDisease_HogLady08 voice:TheHogLady]] "Don't ask me. Go and talk to my <em>hog</em>."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Wolf",
'Text', T(409423627124, --[[BanterDef PaixDisease_HogLady08 Text section:Banters_Local_Chalet/PaixDisease_HogLady08 voice:Wolf]] "This lady's nuttier than a Snickers bar."),
}),
PlaceObj('BanterLineThin', {
'Character', "Grunty",
'Text', T(128770985061, --[[BanterDef PaixDisease_HogLady08 Text section:Banters_Local_Chalet/PaixDisease_HogLady08 voice:Grunty]] "I do not speak Wood Hog. We may need an interpreter."),
}),
PlaceObj('BanterLineThin', {
'Character', "Barry",
'Text', T(542698654043, --[[BanterDef PaixDisease_HogLady08 Text section:Banters_Local_Chalet/PaixDisease_HogLady08 voice:Barry]] "I am thinking this woman has misplaced several of her marbles."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
foundpage = false,
tornpage = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.foundpage and quest.tornpage
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLady08",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(844495984450, --[[BanterDef PaixDisease_HogLadyApproach Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach voice:TheHogLady]] "Come inside. My <em>hog</em> does not judge."),
'playOnce', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'Text', "",
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(618748631308, --[[BanterDef PaixDisease_HogLadyApproach Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach voice:Nails]] "That makes him better than most pigs I know."),
}),
PlaceObj('BanterLineThin', {
'Character', "DrQ",
'Text', T(370572047419, --[[BanterDef PaixDisease_HogLadyApproach Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach voice:DrQ]] "It is not the province of pure mortals to pass judgements. There are higher forces responsible for this task."),
}),
PlaceObj('BanterLineThin', {
'Character', "Sidney",
'Text', T(512317319160, --[[BanterDef PaixDisease_HogLadyApproach Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach voice:Sidney]] "How kind of you! I'm curious - do you have an entire wooden menagerie or is it just the porcine fellow out front?"),
}),
},
'Optional', true,
'playOnce', true,
}),
},
Once = true,
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLadyApproach",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(382301055683, --[[BanterDef PaixDisease_HogLadyApproach2 Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach2 voice:TheHogLady]] "He saw a man with eyes like glue. One was red and the other blue. He tore a <em>page</em> with bloody hand, to hide what caused the <em>writer's</em> end."),
}),
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(750553275663, --[[BanterDef PaixDisease_HogLadyApproach2 Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach2 voice:TheHogLady]] "But the page was found! My <em>hog</em> knows, just ask around."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
tornpage = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.tornpage
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLadyApproach2",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "TheHogLady",
'Text', T(889395523123, --[[BanterDef PaixDisease_HogLadyApproach3 Text section:Banters_Local_Chalet/PaixDisease_HogLadyApproach3 voice:TheHogLady]] "My hog saw something that night."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
HogLadyRuns = false,
diary = false,
night = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.HogLadyRuns and not quest.diary and quest.night
end,
}),
PlaceObj('PlayerSquadPresentInSectors', {
Sector = "F12",
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_HogLadyApproach3",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(467082049501, --[[BanterDef PaixDisease_VillagerFemale01 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale01 voice:CivilianFemale_1]] "That crazy witch <em>Wanda</em> is up to something. Do you know that every night she and her cult are slaughtering chickens and drinking their blood?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(316751978757, --[[BanterDef PaixDisease_VillagerFemale02 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale02 voice:CivilianFemale_2]] "Stay away from the <em>Hog Lady</em>. She's not right in the head. You can tell just by looking at her \"art\"."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(741812656888, --[[BanterDef PaixDisease_VillagerFemale03 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale03 voice:CivilianFemale_1]] "What's the deal with <em>Painless Doc Robert</em>? I think he actually enjoys dissecting those poor bastards."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "MD",
'Text', T(540618338004, --[[BanterDef PaixDisease_VillagerFemale03 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale03 voice:MD]] "Coroners are always a little... eccentric."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(401525559001, --[[BanterDef PaixDisease_VillagerFemale04 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale04 voice:CivilianFemale_2]] "Come to the <em>old house</em> tonight. Join us and let's all pray for our salvation."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(735902328126, --[[BanterDef PaixDisease_VillagerFemale05 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale05 voice:CivilianFemale_1]] "I can start living normally again."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed", "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed and quest.goodending
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(313479228039, --[[BanterDef PaixDisease_VillagerFemale06 Text section:Banters_Local_Chalet/PaixDisease_VillagerFemale06 voice:CivilianFemale_2]] "<em>Chalet de la Paix</em> can finally live up to its name."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed", "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed and quest.goodending
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerFemale06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(137663777950, --[[BanterDef PaixDisease_VillagerMale01 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale01 voice:CivilianMale_1]] "Me and my family are thinking of getting away from this forsaken place. I don't wanna end up like the others."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(739213244178, --[[BanterDef PaixDisease_VillagerMale03 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale03 voice:CivilianMale_1]] "This is the act of the Old Ones, I tell you. That's why each night we must gather and bring them a present."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(647190788351, --[[BanterDef PaixDisease_VillagerMale05 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale05 voice:CivilianMale_2]] "This is not a safe place for visitors. You'd better watch your step or you could end up like <em>Wilcox</em>, our last visitor."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(209021015085, --[[BanterDef PaixDisease_VillagerMale05 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale05 voice:Reaper]] "Death visits where it pleases."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(516920485683, --[[BanterDef PaixDisease_VillagerMale06 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale06 voice:CivilianMale_1]] "Everyone's saying this is a disease or a curse. But I don't believe their bullshit. It's the chem trails, man."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Larry",
'Text', T(774604706880, --[[BanterDef PaixDisease_VillagerMale06 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale06 voice:Larry]] "I know it, man! I've been saying that all along!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Larry_Clean",
'Text', T(352546037549, --[[BanterDef PaixDisease_VillagerMale06 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale06 voice:Larry_Clean]] "Hey, um... Don't go around saying that too much, man. It makes people think you might be on drugs. "),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(858639320474, --[[BanterDef PaixDisease_VillagerMale07 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale07 voice:CivilianMale_2]] "Thank you for putting an end to all this horror."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed", "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed and quest.goodending
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(179413316175, --[[BanterDef PaixDisease_VillagerMale08 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale08 voice:CivilianMale_1]] "I can't believe that <em>Doc Robert</em> was infecting us all this time."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed", "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed and quest.goodending
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale08",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(146632354436, --[[BanterDef PaixDisease_VillagerMale09 Text section:Banters_Local_Chalet/PaixDisease_VillagerMale09 voice:CivilianMale_2]] "Tough call. I was so sure that those <em>voodoo</em> cultists were up to something."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "Completed", "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.Completed and quest.goodending
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_VillagerMale09",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(586259492527, --[[BanterDef PaixDisease_Wanda01 Text section:Banters_Local_Chalet/PaixDisease_Wanda01 voice:Wanda]] "The Old Ones are not happy. They hunger for blood and stir in their sleep. They will bring more and more of the living into their dream. "),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'Text', "",
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(306261355307, --[[BanterDef PaixDisease_Wanda01 Text section:Banters_Local_Chalet/PaixDisease_Wanda01 voice:Reaper]] "There is a kind of hunger that only blood may satisfy."),
}),
PlaceObj('BanterLineThin', {
'Character', "Omryn",
'Text', T(997267821070, --[[BanterDef PaixDisease_Wanda01 Text section:Banters_Local_Chalet/PaixDisease_Wanda01 voice:Omryn]] "Good idea! I want to take nap anyway."),
}),
PlaceObj('BanterLineThin', {
'Character', "Meltdown",
'Text', T(336629377578, --[[BanterDef PaixDisease_Wanda01 Text section:Banters_Local_Chalet/PaixDisease_Wanda01 voice:Meltdown]] "The old ones in my neighborhood are NEVER happy! I got the dogs to stop shitting in their yard, what the hell more do they want?"),
}),
},
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
diary = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.diary
end,
}),
PlaceObj('IsTimeOfDay', {
Negate = true,
TimeOfDay = "Night",
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"F13",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(681741704413, --[[BanterDef PaixDisease_Wanda02 Text section:Banters_Local_Chalet/PaixDisease_Wanda02 voice:Wanda]] "We cannot fight the Old Ones. We dream of them and they have power over our shared dream. This is the way of <em>Voodoo</em>. "),
}),
},
conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
WandaInitial = true,
diary = false,
herb = false,
herbfound = false,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.WandaInitial and not quest.diary and not quest.herb and not quest.herbfound and not quest.night
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
WandaInitial = true,
diary = false,
herbToPlant = true,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.WandaInitial and not quest.diary and quest.herbToPlant and not quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"G15",
},
}),
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(586123396072, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Wanda]] "The Old Ones are thirsty for blood. I will brew a potion to make them sleep again. I need bloody murderers' hands to pick the <em>Borassus root</em> for it to work. Go! Bring it to me! It grows in the forest west of here."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfTheseCount', 2,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Raven",
'Text', T(514148345813, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Raven]] "Hey! We are not murderers!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(721400064537, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Reaper]] "Hidden in my coat is my red right hand."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raider",
'Text', T(170841885092, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Raider]] "Madam, I assure you, we are not murderers. The deaths we have caused have all been justifiable lethalities."),
}),
PlaceObj('BanterLineThin', {
'Character', "Wolf",
'Text', T(279723524142, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Wolf]] "I just want to make sure we're clear on this - did you just ask us to kill someone and then go pick a flower?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(875764998354, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Scully]] "I've made this mistake before with several ex-wives. So, when you say one, do you really mean a dozen? How many guests are we serving?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Kalyna",
'Text', T(222940875685, --[[BanterDef PaixDisease_Wanda03 Text section:Banters_Local_Chalet/PaixDisease_Wanda03 voice:Kalyna]] "I have always wanted to brew a potion! Now, should our hands be covered in blood when we pick the root, or should we kill someone in front of it, or... or..."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
WandaInitial = true,
herb = false,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.WandaInitial and not quest.herb and not quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"F13",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(977889245522, --[[BanterDef PaixDisease_Wanda04 Text section:Banters_Local_Chalet/PaixDisease_Wanda04 voice:Wanda]] "Thank you. Now I can cook the brew. Everybody must drink of it and we may all be saved from the wrath of The Old Ones."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
herbfound = true,
herbgiven = false,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.herbfound and not quest.herbgiven and not quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"F13",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(595340532915, --[[BanterDef PaixDisease_Wanda06 Text section:Banters_Local_Chalet/PaixDisease_Wanda06 voice:Wanda]] "I am busy. Don't you have eyes to see? Come back tomorrow."),
}),
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(192768432411, --[[BanterDef PaixDisease_Wanda06 Text section:Banters_Local_Chalet/PaixDisease_Wanda06 voice:Wanda]] "And if you see the <em>Hog Lady</em> tell her she's late. We are starting without her."),
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "night" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"F13",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(291795435470, --[[BanterDef PaixDisease_Wanda07 Text section:Banters_Local_Chalet/PaixDisease_Wanda07 voice:Wanda]] "You have made the right choice. The Old Ones are at peace. For now."),
}),
},
conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "PaixDisease",
Vars = set( "goodending" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.goodending
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "ReduceCrocodileCampStrength",
Vars = set( "BorassusPlanted" ),
__eval = function ()
local quest = gv_Quests['ReduceCrocodileCampStrength'] or QuestGetState('ReduceCrocodileCampStrength')
return quest.BorassusPlanted
end,
}),
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.night
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(801715582677, --[[BanterDef PaixDisease_Wanda08 Text section:Banters_Local_Chalet/PaixDisease_Wanda08 voice:Wanda]] "Find the <em>Borassus root</em> and pick it with your bloody hands, murderers. The Old Ones are saying that it will guide you to a place of great importance. Go to the west. The truth is out there."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
WandaInitial = true,
herb = true,
herbfound = false,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.WandaInitial and quest.herb and not quest.herbfound and not quest.night
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Wanda08",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(917370030209, --[[BanterDef PaixDisease_WandaApproach01 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach01 voice:Wanda]] "I can see into your souls. You are murderers! This is good, for Death is coming for us all. You must know his call."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(828319189433, --[[BanterDef PaixDisease_WandaApproach01 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach01 voice:Reaper]] "Yes. You have eyes to see, wise Mother."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raven",
'Text', T(298677325984, --[[BanterDef PaixDisease_WandaApproach01 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach01 voice:Raven]] "No! We are not murderers. We kill only when necessary."),
}),
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(650937698475, --[[BanterDef PaixDisease_WandaApproach01 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach01 voice:Shadow]] "Unfortunately for him, my number's unlisted."),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(610559060536, --[[BanterDef PaixDisease_WandaApproach01 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach01 voice:Nails]] "Yeah, that asshole is always trying to get a hold of me, so I blocked his number."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"G15",
},
}),
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_WandaApproach01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Wanda",
'Text', T(795762297762, --[[BanterDef PaixDisease_WandaApproach02 Text section:Banters_Local_Chalet/PaixDisease_WandaApproach02 voice:Wanda]] "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn."),
}),
},
conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "night" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.night
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"G15",
},
}),
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_WandaApproach02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(774024901233, --[[BanterDef PaixDisease_Xavier01 Text section:Banters_Local_Chalet/PaixDisease_Xavier01 voice:Xavier]] "This girl... She is not the first to be claimed by the Old Ones. And mark my words: she won't be the last."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
XavierMet = true,
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.XavierMet and not quest.night
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(430780469024, --[[BanterDef PaixDisease_Xavier02 Text section:Banters_Local_Chalet/PaixDisease_Xavier02 voice:Xavier]] "People are dying and no one knows why. Well, except for <em>Roger Wilcox</em>. But he's dead now. He will never finish his book."),
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
XavierMet = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and not quest.XavierMet
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(578957693178, --[[BanterDef PaixDisease_Xavier03 Text section:Banters_Local_Chalet/PaixDisease_Xavier03 voice:Xavier]] "You'd better do something or soon we'll all be dead. I think that <em>Hog Lady</em> knows something that we don't."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
XavierMet = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.XavierMet
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(266336364383, --[[BanterDef PaixDisease_Xavier04 Text section:Banters_Local_Chalet/PaixDisease_Xavier04 voice:Xavier]] "Roger's death is a mystery, but here's an even deeper one. You'll never guess. There was a fish... in the percolator!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set( "XavierMet" ),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return quest.XavierMet
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(935006333903, --[[BanterDef PaixDisease_Xavier06 Text section:Banters_Local_Chalet/PaixDisease_Xavier06 voice:Xavier]] "A missing page? I don't know about that... But I saw <em>The Hog Lady</em> stuffing some paper into her wooden hog the other day. Feeding her pet is what she told me. Crazy woman!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
XavierMet = true,
tornpage = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.XavierMet and quest.tornpage
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(635550627338, --[[BanterDef PaixDisease_Xavier07 Text section:Banters_Local_Chalet/PaixDisease_Xavier07 voice:Xavier]] "You found Roger's diary? Interesting. Something doesn't seem to add up here. Maybe you need to ask <em>Wanda</em> about it."),
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
Completed = false,
diary = true,
tornpage = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.Completed and quest.diary and not quest.tornpage
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(193710007761, --[[BanterDef PaixDisease_Xavier08 Text section:Banters_Local_Chalet/PaixDisease_Xavier08 voice:Xavier]] "Almost everyone is here! We're just missing the <em>Hog Lady</em>. She is probably wandering in the woods somewhere west of here. She does that sometimes."),
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
diary = false,
night = true,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.diary and quest.night
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_Xavier08",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Xavier",
'Text', T(245175306155, --[[BanterDef PaixDisease_XavierApproach Text section:Banters_Local_Chalet/PaixDisease_XavierApproach voice:Xavier]] "She's dead. Wrapped in plastic. And we had such a good time yesterday."),
'playOnce', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(176474226943, --[[BanterDef PaixDisease_XavierApproach Text section:Banters_Local_Chalet/PaixDisease_XavierApproach voice:Shadow]] "I suddenly feel like I need a damn good cup of coffee."),
}),
PlaceObj('BanterLineThin', {
'Character', "Red",
'Text', T(425481045686, --[[BanterDef PaixDisease_XavierApproach Text section:Banters_Local_Chalet/PaixDisease_XavierApproach voice:Red]] "Oh, this is just grand! We're just leaving dead girls out on the beach now, are we?"),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PaixDisease",
Vars = set({
night = false,
}),
__eval = function ()
local quest = gv_Quests['PaixDisease'] or QuestGetState('PaixDisease')
return not quest.night
end,
}),
PlaceObj('UnitIsAroundMarkerOfGroup', {
MarkerGroup = "BodyAreaMarker",
TargetUnit = "Xavier",
}),
},
disabledInConflict = true,
group = "Banters_Local_Chalet",
id = "PaixDisease_XavierApproach",
})
|