File size: 54,917 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "CorazonSantiago",
Conditions = {
PlaceObj('PlayerIsInSectors', {
Negate = true,
Sectors = {
"I1",
},
}),
},
DefaultActor = "CorazonSantiago",
disabledInConflict = true,
group = "Ernie",
id = "Corazon_Defeated",
PlaceObj('ConversationPhrase', {
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Corazon_Defeated KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(207424840986, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Greeting]] "Please, just listen! I am not responsible for that mess <em>Emma</em> and <em>Faucheux</em> have dragged you into."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(366072662569, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:Greeting]] "And me! Don't forget about me!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(135429352585, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Greeting]] "Clearly, they are using you in their dirty little game. I will help you get out of it... Money, passports - anything! There is no need for any more violence."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(802951575607, --[[Conversation Corazon_Defeated Text voice:Fidel section:Corazon_Defeated keyword:Greeting]] "There is always need for more violence!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(720032985962, --[[Conversation Corazon_Defeated Text voice:Raider section:Corazon_Defeated keyword:Greeting]] "You cannot bribe my team, miss."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(932705596066, --[[Conversation Corazon_Defeated Text voice:Magic section:Corazon_Defeated keyword:Greeting]] "Keep talking. I'll let you know if I like what I hear."),
}),
},
}),
},
}),
},
id = "Greeting",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_Faucheux",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownFaucheux",
Vars = set({
FaucheuxEscaped = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownFaucheux'] or QuestGetState('05_TakeDownFaucheux')
return not quest.FaucheuxEscaped
end,
}),
},
GoTo = "FaucheuxRedirect",
Keyword = "Faucheux is dead",
KeywordT = T(381415625949, --[[Conversation Corazon_Defeated KeywordT]] "Faucheux is dead"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(920600866212, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Faucheux is dead]] "Is he?... Very well!"),
}),
},
PlayGoToPhrase = true,
id = "Faucheuxisdead",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownFaucheux",
Vars = set( "FaucheuxEscaped" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownFaucheux'] or QuestGetState('05_TakeDownFaucheux')
return quest.FaucheuxEscaped
end,
}),
},
GoTo = "FaucheuxRedirect",
Keyword = "Faucheux escaped",
KeywordT = T(202718980590, --[[Conversation Corazon_Defeated KeywordT]] "Faucheux escaped"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(850242048360, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Faucheux escaped]] "Ah... what a pity!"),
}),
},
PlayGoToPhrase = true,
id = "FaucheuxEscaped",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Corazon_Defeated",
PhraseId = "Thenewsdidntmentiongas",
}),
},
Enabled = false,
Keyword = "FaucheuxRedirect",
KeywordT = T(303592452915, --[[Conversation Corazon_Defeated KeywordT]] "FaucheuxRedirect"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(114167501942, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:FaucheuxRedirect]] "This is all his fault. He <em>gassed</em> all those innocent people just to frame you! This country is too wicked and chaotic to do business. If you let me leave, I will do everything in my power to help you clear your name."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "PierreMerc",
Text = T(826964241356, --[[Conversation Corazon_Defeated Text voice:PierreMerc section:Corazon_Defeated keyword:FaucheuxRedirect]] "Your type of business is not anything the people of Grand Chien need."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(309495096893, --[[Conversation Corazon_Defeated Text voice:Kalyna section:Corazon_Defeated keyword:FaucheuxRedirect]] 'I do not mean to offend, but "your power" does not seem very impressive right now.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(985259779158, --[[Conversation Corazon_Defeated Text voice:Hitman section:Corazon_Defeated keyword:FaucheuxRedirect]] "Look around, lady. You don't even have the power to make me a ham sandwich."),
}),
},
}),
},
}),
},
id = "FaucheuxRedirect",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Wisdom",
StatValue = 95,
}),
},
}),
PlaceObj('EmailIsRead', {
emailId = "02_EmmaWorldFlip",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Cornered",
QuestId = "05_TakeDownCorazon",
}),
},
Enabled = false,
Keyword = "The news didn’t mention gas",
KeywordT = T(992815830144, --[[Conversation Corazon_Defeated KeywordT]] "The news didn’t mention gas"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(859257824691, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:The news didn’t mention gas]] "No? Well... of course not! That would just frighten people in nearby towns, wouldn't it? I merely assumed it must have been gas. That would be the most practical way to eliminate a lot of people at once."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(887174010463, --[[Conversation Corazon_Defeated Text voice:Livewire section:Corazon_Defeated keyword:The news didn’t mention gas]] "Miss, sometimes I do not know when is the right time to stop talking. I can see that you have the same problem."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(195293214423, --[[Conversation Corazon_Defeated Text voice:Buns section:Corazon_Defeated keyword:The news didn’t mention gas]] "I am disappointed. I expected you to be a better liar."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(120906945430, --[[Conversation Corazon_Defeated Text voice:Fox section:Corazon_Defeated keyword:The news didn’t mention gas]] "Honey, that rouge is killer, but it can't hide your blush from telling a lie that big."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Magic",
Text = T(308966518750, --[[Conversation Corazon_Defeated Text voice:Magic section:Corazon_Defeated keyword:The news didn’t mention gas]] "Smooth. A good lie works on most folks, but I always know when someone is trying to pull a trick on me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(856348317277, --[[Conversation Corazon_Defeated Text voice:Gus section:Corazon_Defeated keyword:The news didn’t mention gas]] "Woodnose, you're about as convincing as a snake oil salesman."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(163382338613, --[[Conversation Corazon_Defeated Text voice:MD section:Corazon_Defeated keyword:The news didn’t mention gas]] "Flushed skin around the throat and cheeks, averted gaze, altered speech pattern... Yep. She's lying."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(735126369488, --[[Conversation Corazon_Defeated Text voice:Thor section:Corazon_Defeated keyword:The news didn’t mention gas]] "I can tell you are lying. Your aura is blushing."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "Thenewsdidntmentiongas",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('CheckIsPersistentUnitDead', {
Negate = true,
per_ses_id = "NPC_Faucheux",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownFaucheux",
Vars = set({
FaucheuxEscaped = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownFaucheux'] or QuestGetState('05_TakeDownFaucheux')
return not quest.FaucheuxEscaped
end,
}),
},
Keyword = "Faucheux is next",
KeywordT = T(122074528439, --[[Conversation Corazon_Defeated KeywordT]] "Faucheux is next"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(235602515858, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Faucheux is next]] "I would advise against any further involvement with this cursed country's internal affairs, but it is your own business."),
}),
},
id = "Faucheuxisnext",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Spike",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Cornered",
QuestId = "05_TakeDownCorazon",
}),
},
Keyword = "What about me?",
KeywordT = T(369507054705, --[[Conversation Corazon_Defeated KeywordT]] "What about me?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(163849104390, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:What about me?]] "You! You have no right to come here and threaten me. I dissolved our contract and then you had to go and make yourself into some sort of bandit king!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(727630932319, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:What about me?]] "I like that one!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(114419851586, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:What about me?]] "These mercenaries should not have taken you here, they should have brought you to jail!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(782932520411, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:What about me?]] "They brought me here because we have the same score to settle. You screwed me over and then you went ahead and did it to them too. "),
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(198214379288, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:What about me?]] "No, this is not at all..."),
}),
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(115689193031, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:What about me?]] "Thanks, by the way. I think they needed to hear you admit that you hired me in the first place."),
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(558380153224, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:What about me?]] "I... You... I'm finished talking to you."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "Whataboutme",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Spike",
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set( "CorazonEvidence_Major" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return quest.CorazonEvidence_Major
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Corazon_Defeated",
PhraseId = "WedidntmentiontheMajor",
}),
},
Keyword = "Is this your signature on this contract?",
KeywordT = T(647647391956, --[[Conversation Corazon_Defeated KeywordT]] "Is this your signature on this contract?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(999560132592, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Is this your signature on this contract?]] "What is this? A mercenary contract with <em>Spike Scallion</em>? No, this is not my signature. I never signed a contract with the <em>Major</em>."),
}),
},
PhraseRolloverText = T(420411424600, --[[Conversation Corazon_Defeated PhraseRolloverText]] "Show the <em>Major's contract</em> with Adonis"),
id = "Isthisyoursignatureonthiscontract",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Negotiator",
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Wisdom",
StatValue = 95,
}),
},
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Cornered",
QuestId = "05_TakeDownCorazon",
}),
},
Enabled = false,
Keyword = "We never mentioned the Major",
KeywordT = T(591786561138, --[[Conversation Corazon_Defeated KeywordT]] "We never mentioned the Major"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(788556639809, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:We never mentioned the Major]] "Um, it is a well known fact that the Major's real name is <em>Spike Scallion</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(947877047252, --[[Conversation Corazon_Defeated Text voice:Raider section:Corazon_Defeated keyword:We never mentioned the Major]] "Actually, it is not. The Major's identity is a well kept secret."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(386132145137, --[[Conversation Corazon_Defeated Text voice:Livewire section:Corazon_Defeated keyword:We never mentioned the Major]] 'Actually, no. After several hours of database hacking, I did not find any connection between the former A.I.M. mercenary and the so-called "Major." Only his most recent employer would know - I guess that\'s you!'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(141472428520, --[[Conversation Corazon_Defeated Text voice:Buns section:Corazon_Defeated keyword:We never mentioned the Major]] "This is not true. That fact is well known only to us, and unsurprisingly, to you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(252607005887, --[[Conversation Corazon_Defeated Text voice:DrQ section:Corazon_Defeated keyword:We never mentioned the Major]] "While trying to confuse the hunter, the fox led him to her lair."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(371267913987, --[[Conversation Corazon_Defeated Text voice:Gus section:Corazon_Defeated keyword:We never mentioned the Major]] "Well known only to you, Woodhead. Now I wonder how that could be?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Sidney",
Text = T(304361646892, --[[Conversation Corazon_Defeated Text voice:Sidney section:Corazon_Defeated keyword:We never mentioned the Major]] "Terribly sorry, but I do think you may be mistaken in that regard. The only person who knows that Spike Scallion is the Major is... well, the person that hired him to be the Major."),
}),
},
}),
},
}),
},
id = "WedidntmentiontheMajor",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Spike",
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
CorazonEvidence_Major = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.CorazonEvidence_Major
end,
}),
},
Keyword = "What about the Major?",
KeywordT = T(608595438432, --[[Conversation Corazon_Defeated KeywordT]] "What about the Major?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(485961694059, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:What about the Major?]] "I have nothing to do with that psycho. He has been trying to extort me for money ever since I was appointed as the executive director of Adonis in this region. It is a very common professional risk I have to deal with all the time."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "PierreMerc",
Text = T(361846663567, --[[Conversation Corazon_Defeated Text voice:PierreMerc section:Corazon_Defeated keyword:What about the Major?]] "I don't know what the Major really cared about, but I am certain it was not your filthy money."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(440943425605, --[[Conversation Corazon_Defeated Text voice:Red section:Corazon_Defeated keyword:What about the Major?]] "What was that, lass? Sorry, I cannae hear ye on account of the all the SAD VIOLINS!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(821206564162, --[[Conversation Corazon_Defeated Text voice:Kalyna section:Corazon_Defeated keyword:What about the Major?]] "That sounds awful. I have been shot, exploded, punched, kicked, cut, and cursed, but never extorted."),
}),
},
}),
},
}),
},
id = "WhatabouttheMajor",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Corazon_Defeated",
PhraseId = "Youarenottalkingyourwayoutofthis",
}),
},
Keyword = "This is not about the money",
KeywordT = T(702917014975, --[[Conversation Corazon_Defeated KeywordT]] "This is not about the money"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(710862957808, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:This is not about the money]] "Of course it is. You are mercenaries, right? You work for money! Look, I can pay you all enough to take a nice long vacation until I straighten things out here. You fully deserve it, don't you think?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(845130068448, --[[Conversation Corazon_Defeated Text voice:Fidel section:Corazon_Defeated keyword:This is not about the money]] "Fidel does not work for money. Fidel works for the blood and screams and body parts."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(460103764590, --[[Conversation Corazon_Defeated Text voice:Fox section:Corazon_Defeated keyword:This is not about the money]] "That's the first thing you're saying that appears to be true."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(362580473060, --[[Conversation Corazon_Defeated Text voice:Wolf section:Corazon_Defeated keyword:This is not about the money]] "It'll be a cold day in hell before I take any vacation package you're offering."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(497954241265, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:This is not about the money]] "You can lay low for some time and when this unfortunate business is forgotten, you will have lots of other contracts. I know a certain company that would want to hire a team with your talents."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(690935176243, --[[Conversation Corazon_Defeated Text voice:Fidel section:Corazon_Defeated keyword:This is not about the money]] "You have all that Fidel needs. Body parts."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(431483694278, --[[Conversation Corazon_Defeated Text voice:Fox section:Corazon_Defeated keyword:This is not about the money]] "...And here we go again with the lies."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(495666542075, --[[Conversation Corazon_Defeated Text voice:Grizzly section:Corazon_Defeated keyword:This is not about the money]] "Any company recommended by you is one I plan on staying very far away from."),
}),
},
}),
},
}),
},
id = "Itisnotaboutthemoney",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Psycho",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Cornered",
QuestId = "05_TakeDownCorazon",
}),
},
Enabled = false,
Keyword = "You are not talking your way out of this",
KeywordT = T(931582108304, --[[Conversation Corazon_Defeated KeywordT]] "You are not talking your way out of this"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(655156390901, --[[Conversation Corazon_Defeated Text voice:Fidel section:Corazon_Defeated keyword:You are not talking your way out of this]] "Fidel came here to collect."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(250548265683, --[[Conversation Corazon_Defeated Text voice:Nails section:Corazon_Defeated keyword:You are not talking your way out of this]] "Cut the bullshit, lady, or I'll start cutting you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(464325156503, --[[Conversation Corazon_Defeated Text voice:Meltdown section:Corazon_Defeated keyword:You are not talking your way out of this]] "Listen up, bitch. In case you hadn't noticed, I ain't here to negotiate. Just ask your guards. Oh, wait. You can't, because they're all dead."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(255987944044, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:You are not talking your way out of this]] "Okay, okay, no need to threaten me!... I will provide any details you need to know."),
}),
},
StoryBranchIcon = "conversation_threaten",
id = "Youarenottalkingyourwayoutofthis",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableNum', {
Amount = 2,
Prop = "Evidence",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_Cornered = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_Cornered
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
Keyword = "You are involved in all this",
KeywordT = T(484847398454, --[[Conversation Corazon_Defeated KeywordT]] "You are involved in all this"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(564390066553, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:You are involved in all this]] "I am simply a victim of circumstance. I came here to do business, not to be shot at. But I can understand your frustration at how events have unfolded and I am willing to cooperate. Let us start over, shall we? How can I compensate you?"),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Youareinvolvedinallthis",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_BribeMoney = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_BribeMoney
end,
}),
},
GoTo = "Starttalkingnow.Money2",
Keyword = "Money",
KeywordT = T(400105882612, --[[Conversation Corazon_Defeated KeywordT]] "Money"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Money",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Fidel",
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Corazon_Defeated",
Enabled = false,
PhraseId = "Itisnotaboutthemoney",
}),
},
GoTo = "Youarenottalkingyourwayoutofthis",
Keyword = "Body parts",
KeywordT = T(407496232658, --[[Conversation Corazon_Defeated KeywordT]] "Body parts"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(439293170620, --[[Conversation Corazon_Defeated Text voice:Fidel section:Corazon_Defeated keyword:Body parts]] "Fidel wants body parts."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(517035312463, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Body parts]] "Excuse me?..."),
}),
},
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Bodyparts",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_BribeIntel = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_BribeIntel
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownFaucheux",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownFaucheux'] or QuestGetState('05_TakeDownFaucheux')
return not quest.Completed
end,
}),
},
GoTo = "Starttalkingnow.Information",
Keyword = "Information",
KeywordT = T(802795382127, --[[Conversation Corazon_Defeated KeywordT]] "Information"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Information",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownFaucheux",
Vars = set( "Completed" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownFaucheux'] or QuestGetState('05_TakeDownFaucheux')
return quest.Completed
end,
}),
},
GoTo = "Starttalkingnow.Thetruth",
Keyword = "The truth",
KeywordT = T(704613799039, --[[Conversation Corazon_Defeated KeywordT]] "The truth"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Thetruth",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Leadership",
StatValue = 60,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Cornered",
QuestId = "05_TakeDownCorazon",
}),
},
GoTo = "<root>",
Keyword = "You will answer in court",
KeywordT = T(321176446625, --[[Conversation Corazon_Defeated KeywordT]] "You will answer in court"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(834081691198, --[[Conversation Corazon_Defeated Text voice:Raider section:Corazon_Defeated keyword:You will answer in court]] "Ma'am, you have a lot to answer for and you're going to do it in a court of law."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(988948445303, --[[Conversation Corazon_Defeated Text voice:Fauda section:Corazon_Defeated keyword:You will answer in court]] "You will face justice. It can be here or it can be someplace else."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Gus",
Text = T(387808218425, --[[Conversation Corazon_Defeated Text voice:Gus section:Corazon_Defeated keyword:You will answer in court]] "Time to face the music, Woodwind!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(297806017785, --[[Conversation Corazon_Defeated Text voice:Len section:Corazon_Defeated keyword:You will answer in court]] "Ms. Santiago, war crimes have been committed here. The Hague has some questions for you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scully",
Text = T(456122223737, --[[Conversation Corazon_Defeated Text voice:Scully section:Corazon_Defeated keyword:You will answer in court]] "I think you're going to need a lawyer. I know several, but I can't recommend any of them."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(659887881705, --[[Conversation Corazon_Defeated Text voice:Thor section:Corazon_Defeated keyword:You will answer in court]] "It is time for you to cleanse your aura... in front of a judge."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(933327854226, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:You will answer in court]] "I acknowledge that there may be some... irregularities pertaining to my conduct, but I am sure we can reach an agreement that is beneficial to us both."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Youwillanswerincourt",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Leadership",
Negate = true,
StatValue = 60,
}),
},
GoTo = "<root>",
Keyword = "You will answer in court",
KeywordT = T(321176446625, --[[Conversation Corazon_Defeated KeywordT]] "You will answer in court"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(925696735562, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:You will answer in court]] "But what for? I haven't done anything! All of this is Faucheux's fault, and your hostile actions against me are without provocation. However, I am willing to forget all of this and come to some sort of arrangement with you."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Youwillanswerincourt2",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableNum', {
Amount = 2,
Condition = "<",
Prop = "Evidence",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_Cornered = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_Cornered
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
GoTo = "Starttalkingnow.Information",
Keyword = "You promised to explain everything",
KeywordT = T(354600588921, --[[Conversation Corazon_Defeated KeywordT]] "You promised to explain everything"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_arrow",
id = "Youpromisedtoexplaineverything",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set( "Conv_Cornered" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return quest.Conv_Cornered
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
Keyword = "Start talking. Now!",
KeywordT = T(964842290636, --[[Conversation Corazon_Defeated KeywordT]] "Start talking. Now!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(260179220430, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Start talking. Now!]] "Alright, there is no need of any more violence. I said I am willing to cooperate. What do you want of me?"),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Starttalkingnow",
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_BribeMoney = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_BribeMoney
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_BribeMoney",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
GoTo = "<root>",
Keyword = "Money",
KeywordT = T(400105882612, --[[Conversation Corazon_Defeated KeywordT]] "Money"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(581746325747, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Money]] "Of course, I will see that you are properly reimbursed once you let me go."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(710970204131, --[[Conversation Corazon_Defeated Text voice:Igor section:Corazon_Defeated keyword:Money]] "And commendation. Do not forget commendation. Is very important."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(555594981596, --[[Conversation Corazon_Defeated Text voice:Omryn section:Corazon_Defeated keyword:Money]] "Do not forget to include bonus rations. I prefer elk jerky."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(859799876035, --[[Conversation Corazon_Defeated Text voice:Mouse section:Corazon_Defeated keyword:Money]] "Make sure you include a bonus for Stella... for emotional distress."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
id = "Money2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set({
Conv_BribeIntel = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return not quest.Conv_BribeIntel
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_BribeIntel",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "FaucheuxExposed",
QuestId = "04_Betrayal",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
GoTo = "<root>",
Keyword = "Information",
KeywordT = T(802795382127, --[[Conversation Corazon_Defeated KeywordT]] "Information"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(909841251213, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Information]] "All this mess is the fault of <em>Colonel Faucheux</em>. He planned a coup against his own president, the father of your friend <em>Emma LaFontaine</em>. He tried to get financial support from me, but I refused to be involved in such a thing."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(572241336462, --[[Conversation Corazon_Defeated Text voice:Raven section:Corazon_Defeated keyword:Information]] "Yeah right, of course you did."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(694707100106, --[[Conversation Corazon_Defeated Text voice:Shadow section:Corazon_Defeated keyword:Information]] "At least not publicly anyway, right?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(492000644772, --[[Conversation Corazon_Defeated Text voice:Ice section:Corazon_Defeated keyword:Information]] "Yeah, I bet. You were too busy trying to get mercs to kill other mercs."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(766183871867, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Information]] "Please let me go and I will send you all that I know, so that you can eliminate him... If that is your current contract. I don't need to know the details."),
}),
},
StoryBranchIcon = "conversation_action",
id = "Information",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "CorazonEvidence_ErnieFort",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "FaucheuxExposed",
QuestId = "04_Betrayal",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_Progress",
QuestId = "05_TakeDownCorazon",
}),
},
GoTo = "<root>",
Keyword = "The truth",
KeywordT = T(704613799039, --[[Conversation Corazon_Defeated KeywordT]] "The truth"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(341129834640, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:The truth]] "Of course, I will share all the details I know. I trust you will find this information useful enough to let me go unharmed."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(868845792035, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:The truth]] "You better be convincing. You know you can't fool me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(651056630336, --[[Conversation Corazon_Defeated Text voice:Raider section:Corazon_Defeated keyword:The truth]] "Don't worry about that right now. Please just concentrate on swearing out a full and accurate confession."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(946700790513, --[[Conversation Corazon_Defeated Text voice:Wolf section:Corazon_Defeated keyword:The truth]] "I guess we'll burn that bridge when we come to it."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(682404983026, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:The truth]] "I have been in contact with <em>Colonel Faucheux</em>, who planned a coup against his own president, the father of your friend <em>Emma LaFontaine</em>."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = 'reference to “The Little Golden Calf”/”The Twelve Chairs” - meaning "The ice is breaking"',
Character = "Ivan",
Text = T(892007652672, --[[Conversation Corazon_Defeated Text reference to “The Little Golden Calf”/”The Twelve Chairs” - meaning "The ice is breaking" voice:Ivan section:Corazon_Defeated keyword:The truth]] "Пой, птичка, пой."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(853795630059, --[[Conversation Corazon_Defeated Text voice:Blood section:Corazon_Defeated keyword:The truth]] "That's a good appetizer, now give us the main dish."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(339059540901, --[[Conversation Corazon_Defeated Text voice:Fauda section:Corazon_Defeated keyword:The truth]] "And he wanted money... or maybe mercenaries?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(312080382125, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:The truth]] "He promised to grant me exclusive access to diamond mining in the valley in exchange for financial support, but I swear I didn't know he was planning to kill those people in order to frame you. Here is my copy of the <em>contract</em> I signed with him. Please let me go."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(314310431004, --[[Conversation Corazon_Defeated Text voice:Len section:Corazon_Defeated keyword:The truth]] "Now that's something!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(805182191875, --[[Conversation Corazon_Defeated Text voice:Barry section:Corazon_Defeated keyword:The truth]] "This is first time I have seen a real contract with the devil."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grunty",
Text = T(456181393675, --[[Conversation Corazon_Defeated Text voice:Grunty section:Corazon_Defeated keyword:The truth]] "I admit that I am surprised it is not signed in blood."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
id = "Thetruth",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "DISABLED, NOT USED",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set( "Conv_Progress" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return quest.Conv_Progress
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_CorazonKilled",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('PlaySetpiece', {
setpiece = "CorazonDies",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Die, bitch!",
KeywordT = T(583633837579, --[[Conversation Corazon_Defeated KeywordT]] "Die, bitch!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(720867182600, --[[Conversation Corazon_Defeated Text voice:Reaper section:Corazon_Defeated keyword:Die, bitch!]] "These are your final moments. I ache to know the thoughts that must be racing through your mind right now."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(646869687721, --[[Conversation Corazon_Defeated Text voice:Flay section:Corazon_Defeated keyword:Die, bitch!]] "I will make this quick... but also painful."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Spike",
Text = T(469661400353, --[[Conversation Corazon_Defeated Text voice:Spike section:Corazon_Defeated keyword:Die, bitch!]] "Ol' Spike has come to collect his pound of flesh... and then some."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(613570290071, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Die, bitch!]] "No, no, don't do this, this is murder..."),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Diebitch",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "for now DISABLED, NOT USED",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set( "Conv_Progress" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return quest.Conv_Progress
end,
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Leadership",
StatValue = 85,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_CorazonStay",
QuestId = "05_TakeDownCorazon",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Stay here. You are under arrest",
KeywordT = T(935043220528, --[[Conversation Corazon_Defeated KeywordT]] "Stay here. You are under arrest"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(260179220430, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Stay here. You are under arrest]] "Alright, there is no need of any more violence. I said I am willing to cooperate. What do you want of me?"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "StayHere",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownCorazon",
Vars = set( "Conv_Progress" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownCorazon'] or QuestGetState('05_TakeDownCorazon')
return quest.Conv_Progress
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Conv_CorazonLeft",
QuestId = "05_TakeDownCorazon",
}),
PlaceObj('GroupSetBehaviorExit', {
TargetUnit = "CorazonSantiago",
closest = true,
}),
},
GoTo = "<end conversation>",
Keyword = "Leave this country",
KeywordT = T(367108794284, --[[Conversation Corazon_Defeated KeywordT]] "Leave this country"),
Lines = {
PlaceObj('ConversationLine', {
Character = "CorazonSantiago",
Text = T(822850880670, --[[Conversation Corazon_Defeated Text voice:CorazonSantiago section:Corazon_Defeated keyword:Leave this country]] "Yes, I will. I don't want to be involved in any of this."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(626656126580, --[[Conversation Corazon_Defeated Text voice:Raider section:Corazon_Defeated keyword:Leave this country]] "We will see each other in court. Don't make me come find you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(923552389671, --[[Conversation Corazon_Defeated Text voice:Tex section:Corazon_Defeated keyword:Leave this country]] "You best get while getting is good. And don't show face in town again!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(746782557948, --[[Conversation Corazon_Defeated Text voice:Scope section:Corazon_Defeated keyword:Leave this country]] "You will still need to testify. Don't make us come looking for you."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "LeaveThisCountry",
}),
})
|