File size: 55,533 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 |
-- ========== GENERATED BY BanterDef Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('BanterDef', {
Comment = "triggered when allied and combat starts",
Lines = {
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfTheseCount', 5,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "GangWilma",
'Text', T(742825090998, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat voice:GangWilma]] "For the Coffee Beans!"),
}),
PlaceObj('BanterLineThin', {
'Character', "GangVinnie",
'Text', T(224034110096, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat voice:GangVinnie]] "For Ma Baxter!"),
}),
PlaceObj('BanterLineThin', {
'Character', "GangTrudy",
'Text', T(580864644131, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat voice:GangTrudy]] "For the good old fucking times!"),
}),
PlaceObj('BanterLineThin', {
'Character', "GangKayla",
'Text', T(573823879310, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat voice:GangKayla]] "When do we start?"),
}),
PlaceObj('BanterLineThin', {
'Character', "GangHannah",
'Text', T(881936731479, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat voice:GangHannah]] "WHUT?"),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Annotation', 'reference to "Pulp Fiction"',
'Character', "Granny",
'Text', T(366448730251, --[[BanterDef CacaoGang_Gran01_combat Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran01_combat reference to "Pulp Fiction" triggered when allied and combat starts voice:Granny]] "I'll execute every motherfuckin' last one of 'em!"),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran01_combat",
})
PlaceObj('BanterDef', {
Comment = "Hannah recruited and meeting Granny",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(686800771831, --[[BanterDef CacaoGang_Gran02_ApproachHannah Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachHannah Hannah recruited and meeting Granny voice:Granny]] "Good to see you, Hannah! You get a hearing aid yet?"),
}),
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(585155917009, --[[BanterDef CacaoGang_Gran02_ApproachHannah Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachHannah loud - Hannah is partially deaf Hannah recruited and meeting Granny voice:GangHannah]] "Why would I be fearing maids?"),
}),
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(716637234165, --[[BanterDef CacaoGang_Gran02_ApproachHannah Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachHannah Hannah recruited and meeting Granny voice:Granny]] "Guess not."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
CacaoGangHannah = true,
Completed = false,
DocksLost = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.CacaoGangHannah and not quest.Completed and not quest.DocksLost and not quest.Failed
end,
}),
PlaceObj('UnitIsAroundOtherUnit', {
Distance = 10,
SecondTargetUnit = "GangHannah",
TargetUnit = "Granny",
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran02_ApproachHannah",
})
PlaceObj('BanterDef', {
Comment = "Kayla recruited and meeting Granny",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(118678217396, --[[BanterDef CacaoGang_Gran02_ApproachKayla Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachKayla Kayla recruited and meeting Granny voice:Granny]] "You got your fucking knife ready, Kay?"),
}),
PlaceObj('BanterLine', {
'Character', "GangKayla",
'Text', T(243956147982, --[[BanterDef CacaoGang_Gran02_ApproachKayla Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachKayla Kayla recruited and meeting Granny voice:GangKayla]] "Do I look like a fucking kindergarten teacher? I've got a machete."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Buns",
'Text', T(686898424691, --[[BanterDef CacaoGang_Gran02_ApproachKayla Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachKayla voice:Buns]] "I have objections to that."),
}),
PlaceObj('BanterLineThin', {
'Character', "Grizzly",
'Text', T(443587301470, --[[BanterDef CacaoGang_Gran02_ApproachKayla Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachKayla voice:Grizzly]] "My kindergarten teacher had a .38 Special. She let me shoot it. She was my first. The gun, I mean."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(920659919146, --[[BanterDef CacaoGang_Gran02_ApproachKayla Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachKayla voice:Scully]] "I don't usually go for older gals, but you're starting to turn me on."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
CacaoGangKayla = true,
Completed = false,
DocksLost = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.CacaoGangKayla and not quest.Completed and not quest.DocksLost and not quest.Failed
end,
}),
PlaceObj('UnitIsAroundOtherUnit', {
Distance = 10,
SecondTargetUnit = "GangKayla",
TargetUnit = "Granny",
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran02_ApproachKayla",
})
PlaceObj('BanterDef', {
Comment = "Trudy recruited and meeting Granny",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(375395537243, --[[BanterDef CacaoGang_Gran02_ApproachTrudy Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachTrudy Trudy recruited and meeting Granny voice:Granny]] "Fuck you, Trudy."),
}),
PlaceObj('BanterLine', {
'Character', "GangTrudy",
'Text', T(634001191965, --[[BanterDef CacaoGang_Gran02_ApproachTrudy Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachTrudy Trudy recruited and meeting Granny voice:GangTrudy]] "Fuck you, Gran."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
CacaoGangTrudy = true,
Completed = false,
DocksLost = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.CacaoGangTrudy and not quest.Completed and not quest.DocksLost and not quest.Failed
end,
}),
PlaceObj('UnitIsAroundOtherUnit', {
Distance = 10,
SecondTargetUnit = "GangTrudy",
TargetUnit = "Granny",
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran02_ApproachTrudy",
})
PlaceObj('BanterDef', {
Comment = "Vinnie recruited and meeting Granny",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "obscure Pratchett reference",
'Character', "Granny",
'Text', T(554884248165, --[[BanterDef CacaoGang_Gran02_ApproachVinnie Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachVinnie obscure Pratchett reference Vinnie recruited and meeting Granny voice:Granny]] "Vinnie! I thought you choked to death on a cucumber sandwich!"),
}),
PlaceObj('BanterLine', {
'Annotation', "Pratchett reference",
'Character', "GangVinnie",
'Text', T(817191701204, --[[BanterDef CacaoGang_Gran02_ApproachVinnie Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachVinnie Pratchett reference Vinnie recruited and meeting Granny voice:GangVinnie]] "I ate'nt dead yet! But my back is killing me."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
CacaoGangVinnie = true,
Completed = false,
DocksLost = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.CacaoGangVinnie and not quest.Completed and not quest.DocksLost and not quest.Failed
end,
}),
PlaceObj('UnitIsAroundOtherUnit', {
Distance = 10,
SecondTargetUnit = "GangVinnie",
TargetUnit = "Granny",
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran02_ApproachVinnie",
})
PlaceObj('BanterDef', {
Comment = "Wilma recruited and meeting Granny",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(965326094403, --[[BanterDef CacaoGang_Gran02_ApproachWilma Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachWilma Wilma recruited and meeting Granny voice:Granny]] "Wilma! I'm surprised you fucking made it here in time for the fight on those fucking toadstools you call legs."),
}),
PlaceObj('BanterLine', {
'Character', "GangWilma",
'Text', T(567847917910, --[[BanterDef CacaoGang_Gran02_ApproachWilma Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran02_ApproachWilma Wilma recruited and meeting Granny voice:GangWilma]] "One day I'll shoot you, Gran."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
CacaoGangWilma = true,
Completed = false,
DocksLost = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.CacaoGangWilma and not quest.Completed and not quest.DocksLost and not quest.Failed
end,
}),
PlaceObj('UnitIsAroundOtherUnit', {
Distance = 10,
SecondTargetUnit = "GangWilma",
TargetUnit = "Granny",
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran02_ApproachWilma",
})
PlaceObj('BanterDef', {
Comment = "Gran is hostage and bombs are set",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(872984071707, --[[BanterDef CacaoGang_Gran03_BombsArmed Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran03_BombsArmed Gran is hostage and bombs are set voice:Granny]] "Where the fuck you been?! Come on, disarm the fucking bombs! There are at least three of 'em."),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = true,
Completed = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.BombsArmed and not quest.Completed and not quest.Failed
end,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran03_BombsArmed",
})
PlaceObj('BanterDef', {
Comment = "Bombs are defused",
Lines = {
PlaceObj('BanterLine', {
'Character', "Granny",
'Text', T(189642350795, --[[BanterDef CacaoGang_Gran04_BombsDefused Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran04_BombsDefused Bombs are defused voice:Granny]] "That was some fucking nice explosives work! <em>Mad Hannah</em> couldn't have done it better herself!"),
}),
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(294406335510, --[[BanterDef CacaoGang_Gran04_BombsDefused Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Gran04_BombsDefused loud - Hannah is partially deaf Bombs are defused voice:GangHannah]] "I would NOT have put donut butter on myself. That's only for certain types of explosives. Anyway, you did good, kiddos!"),
'Optional', true,
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Gran04_BombsDefused",
})
PlaceObj('BanterDef', {
Comment = "when asked for Gang Reunion",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "Randomly attacks the merc with a melee weapon",
'Character', "GangKayla",
'Text', T(403121662741, --[[BanterDef CacaoGang_Kayla01_Initial Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla01_Initial Randomly attacks the merc with a melee weapon when asked for Gang Reunion voice:GangKayla]] "Parry this!"),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla01_Initial",
})
PlaceObj('BanterDef', {
Comment = "no melee perk >> add status effect Wounded",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "A merc just failed to parry her melee attack",
'Character', "GangKayla",
'Text', T(345282994818, --[[BanterDef CacaoGang_Kayla02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Failure A merc just failed to parry her melee attack no melee perk >> add status effect Wounded voice:GangKayla]] "Oh, quit crying! It's just a scratch."),
}),
PlaceObj('BanterLine', {
'Annotation', "The merc successfully defends",
'Character', "GangKayla",
'Text', T(359823344978, --[[BanterDef CacaoGang_Kayla02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Failure The merc successfully defends no melee perk >> add status effect Wounded voice:GangKayla]] "So, old Gran wants my help cutting up some Legion boys? Well, count me in."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla02_Failure",
})
PlaceObj('BanterDef', {
Comment = "parry the attack",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(935172638061, --[[BanterDef CacaoGang_Kayla02_Success01_LightningReaction Text]] "<em>Lightning Reactions</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(644060970464, --[[BanterDef CacaoGang_Kayla02_Success01_LightningReaction Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_LightningReaction voice:Shadow]] "Nice hit, if you were aiming for my shadow."),
}),
PlaceObj('BanterLineThin', {
'Character', "Ice",
'Text', T(603252031575, --[[BanterDef CacaoGang_Kayla02_Success01_LightningReaction Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_LightningReaction voice:Ice]] "You come strong or you don't come at all!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Len",
'Text', T(140571683484, --[[BanterDef CacaoGang_Kayla02_Success01_LightningReaction Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_LightningReaction voice:Len]] "Not bad, but I'm an old dog who knows all the tricks."),
}),
},
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla02_Success01_LightningReaction",
})
PlaceObj('BanterDef', {
Comment = "parry the attack",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(661140729455, --[[BanterDef CacaoGang_Kayla02_Success01_MeleeTraining Text]] "<em>Hand-to-Hand</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Flay",
'Text', T(497154534241, --[[BanterDef CacaoGang_Kayla02_Success01_MeleeTraining Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_MeleeTraining voice:Flay]] "You are lucky your skin is too old for me to be interested in taking it."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fidel",
'Text', T(113861944568, --[[BanterDef CacaoGang_Kayla02_Success01_MeleeTraining Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_MeleeTraining voice:Fidel]] "Now this is how Fidel likes to meet new people!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(439227743393, --[[BanterDef CacaoGang_Kayla02_Success01_MeleeTraining Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_MeleeTraining voice:Nails]] "Ooooh, we got a live one here!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(537688227468, --[[BanterDef CacaoGang_Kayla02_Success01_MeleeTraining Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_MeleeTraining voice:Scully]] "Nice try, but if you want to sneak a blade into me, you gotta marry me first."),
}),
},
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla02_Success01_MeleeTraining",
})
PlaceObj('BanterDef', {
Comment = "parry the attack",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(760030358089, --[[BanterDef CacaoGang_Kayla02_Success01_SwiftStrike Text]] "<em>Hit and Run</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "DrQ",
'Text', T(411500405808, --[[BanterDef CacaoGang_Kayla02_Success01_SwiftStrike Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success01_SwiftStrike parry the attack voice:DrQ]] "Pitiful. You move like a pregnant yak."),
'Optional', true,
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla02_Success01_SwiftStrike",
})
PlaceObj('BanterDef', {
Comment = ">> CacaoGangKayla",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "The merc successfully defends",
'Character', "GangKayla",
'Text', T(352550298556, --[[BanterDef CacaoGang_Kayla02_Success02 Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Kayla02_Success02 The merc successfully defends >> CacaoGangKayla voice:GangKayla]] "Hey, not bad! So, old Gran wants my help cutting up some Legion boys? Well, count me in."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Kayla02_Success02",
})
PlaceObj('BanterDef', {
Comment = "when asked for Gang Reunion",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(254407324742, --[[BanterDef CacaoGang_MadHannah01_Initial Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah01_Initial loud - Hannah is partially deaf when asked for Gang Reunion voice:GangHannah]] "Whut? Speak the fuck up or get blown the fuck up."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_MadHannah01_Initial",
})
PlaceObj('BanterDef', {
Comment = "have merc Meltdown",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Text', T(179219042487, --[[BanterDef CacaoGang_MadHannah02_CriticalFailure Text]] "<em>Hard Feelings</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Meltdown",
'Text', T(533165817517, --[[BanterDef CacaoGang_MadHannah02_CriticalFailure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_CriticalFailure voice:Meltdown]] "How about we fuck YOU up unless you take it easy and calm down?"),
}),
},
}),
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(910142587697, --[[BanterDef CacaoGang_MadHannah02_CriticalFailure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_CriticalFailure loud - Hannah is partially deaf have merc Meltdown voice:GangHannah]] "You called me a sleazy WHAT clown?!"),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_MadHannah02_CriticalFailure",
})
PlaceObj('BanterDef', {
Comment = "Explosives < 50, no Psycho merc",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Text', T(658156478160, --[[BanterDef CacaoGang_MadHannah02_Failure Text]] "<explosives-f>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(151973167315, --[[BanterDef CacaoGang_MadHannah02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Failure loud - Hannah is partially deaf Explosives < 50, no Psycho merc voice:GangHannah]] "I'm not interested in whatever you're selling."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_MadHannah02_Failure",
})
PlaceObj('BanterDef', {
Comment = "Explosives > 50, no Psycho merc >> CacaoGangHannah",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(977676492261, --[[BanterDef CacaoGang_MadHannah02_Success Text]] "<explosives-s>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Barry",
'Text', T(517143747051, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Barry]] "I have many explosives on my person. They do not respond well to shouting."),
}),
PlaceObj('BanterLineThin', {
'Character', "Red",
'Text', T(430330500021, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Red]] "Quit yer bellyachin' ye old crone! Ye could'na blow up a balloon."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(784834453815, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Scully]] "That would make a bloody big mess. How about you just talk to Gran instead?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Larry",
'Text', T(818474981608, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Larry]] "Calm down, man. The teddy bears are everywhere! And they HATE explosives."),
}),
PlaceObj('BanterLineThin', {
'Character', "Larry_Clean",
'Text', T(837489763855, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Larry_Clean]] "How about we all just put our bombs down and talk this out?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Gus",
'Text', T(542223034555, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Gus]] "Get a grip, Woodhead... and I don't mean on the detonator."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fauda",
'Text', T(309624698985, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success voice:Fauda]] "Do not be a fool! You would only blow your own ears off. "),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(737244954104, --[[BanterDef CacaoGang_MadHannah02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_MadHannah02_Success loud - Hannah is partially deaf Explosives > 50, no Psycho merc >> CacaoGangHannah voice:GangHannah]] "Gran told you I like explosives, didn't she? She's kind of soft-spoken, but she's a sweetheart. All right, I'll go talk to her."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_MadHannah02_Success",
})
PlaceObj('BanterDef', {
Comment = "when asked for Gang Reunion",
Lines = {
PlaceObj('BanterLine', {
'Character', "GangVinnie",
'Text', T(204895939863, --[[BanterDef CacaoGang_OldVinnie01_Initial Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie01_Initial when asked for Gang Reunion voice:GangVinnie]] "I would come, but I don't feel very well today. I guess my time has finally come."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_OldVinnie01_Initial",
})
PlaceObj('BanterDef', {
Comment = "Medical < 50",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Text', T(792649351385, --[[BanterDef CacaoGang_OldVinnie02_Failure Text]] "<medical-f>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Annotation', "overdramatic",
'Character', "GangVinnie",
'Text', T(260410355399, --[[BanterDef CacaoGang_OldVinnie02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Failure overdramatic Medical < 50 voice:GangVinnie]] "I know I don't have much longer... I can feel death approaching."),
}),
PlaceObj('BanterLine', {
'Character', "Reaper",
'Text', T(659322152405, --[[BanterDef CacaoGang_OldVinnie02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Failure Medical < 50 voice:Reaper]] "That's just me. I get that a lot."),
'Optional', true,
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_OldVinnie02_Failure",
})
PlaceObj('BanterDef', {
Comment = "Medical >= 50",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "MD",
'Text', T(706446360477, --[[BanterDef CacaoGang_OldVinnie02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Success voice:MD]] "It looks to me like you've got an advanced case of old age. I recommend taking supplements and naps."),
}),
PlaceObj('BanterLineThin', {
'Character', "Thor",
'Text', T(248564296082, --[[BanterDef CacaoGang_OldVinnie02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Success voice:Thor]] "Your body may be old, but your aura is shining with vitality and strength."),
}),
PlaceObj('BanterLineThin', {
'Character', "DrQ",
'Text', T(296387921360, --[[BanterDef CacaoGang_OldVinnie02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Success voice:DrQ]] "You are unaffected by any malady. You will live, if only to continue complaining, I am sure."),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Text', T(525758687860, --[[BanterDef CacaoGang_OldVinnie02_Success Text]] "<medical-s>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "GangVinnie",
'Text', T(558458679663, --[[BanterDef CacaoGang_OldVinnie02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_OldVinnie02_Success Medical >= 50 voice:GangVinnie]] "What? I ate'nt dying? Then what are we waiting for?! Let's prepare for battle!"),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_OldVinnie02_Success",
})
PlaceObj('BanterDef', {
Comment = "when asked for Gang Reunion",
Lines = {
PlaceObj('BanterLine', {
'Character', "GangTrudy",
'Text', T(938260793626, --[[BanterDef CacaoGang_RudeTrudy01_Initial Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy01_Initial when asked for Gang Reunion voice:GangTrudy]] "Fuck you! And fuck Gran! And fuck this town."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_RudeTrudy01_Initial",
})
PlaceObj('BanterDef', {
Comment = "no Psycho in team",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Text', T(716740536793, --[[BanterDef CacaoGang_RudeTrudy02_Failure Text]] "no <em>Psycho</em> in team"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "GangTrudy",
'Text', T(746745127179, --[[BanterDef CacaoGang_RudeTrudy02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy02_Failure no Psycho in team voice:GangTrudy]] "Fuck off. I'm not going fucking anywhere."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_RudeTrudy02_Failure",
})
PlaceObj('BanterDef', {
Comment = "have Psycho >> CacaoGangTrudy",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(709023626785, --[[BanterDef CacaoGang_RudeTrudy02_Success Text]] "<em>Psycho</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Meltdown",
'Text', T(211349023202, --[[BanterDef CacaoGang_RudeTrudy02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy02_Success voice:Meltdown]] "Well, fuck you too, you crotchety old scarecrow. If you don't want to join the fight, then just go die somewhere."),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(505256259186, --[[BanterDef CacaoGang_RudeTrudy02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy02_Success voice:Nails]] "Tell it to somebody who cares. You gonna go talk to Gran or what?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Fidel",
'Text', T(704356211926, --[[BanterDef CacaoGang_RudeTrudy02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy02_Success voice:Fidel]] "Fidel no like your mouth. I wash it out with grenade, but first you go see Gran."),
}),
},
}),
PlaceObj('BanterLine', {
'Character', "GangTrudy",
'Text', T(570975337574, --[[BanterDef CacaoGang_RudeTrudy02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_RudeTrudy02_Success have Psycho >> CacaoGangTrudy voice:GangTrudy]] "Alright, you got my fucking attention. I'll go talk to Gran if it'll get you the fuck out of my face."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_RudeTrudy02_Success",
})
PlaceObj('BanterDef', {
Comment = "when asked for Gang Reunion",
Lines = {
PlaceObj('BanterLine', {
'Character', "GangWilma",
'Text', T(662727774277, --[[BanterDef CacaoGang_Wilma01_Initial Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma01_Initial when asked for Gang Reunion voice:GangWilma]] "Gran only wants to see me so she can tease me about my height some more."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Wilma01_Initial",
})
PlaceObj('BanterDef', {
Comment = "Leadership < 50",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Text', T(170861081412, --[[BanterDef CacaoGang_Wilma02_Failure Text]] "<leadership-f>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "GangWilma",
'Text', T(147835818431, --[[BanterDef CacaoGang_Wilma02_Failure Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Failure Leadership < 50 voice:GangWilma]] "I don't have to put up with her teasing. It's not my fault that both of my legs are shorter than the other."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Wilma02_Failure",
})
PlaceObj('BanterDef', {
Comment = "Leadership >= 50 >> CacaoGangWilma",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(672024483501, --[[BanterDef CacaoGang_Wilma02_Success Text]] "<leadership-s>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Annotation', "",
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Len",
'Text', T(752029604594, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Len]] "Your friends don't always act the way you want them to, but they are still your friends... and they need you."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(393471695801, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Scully]] "I'll wager she says those things to get you riled up. Being riled up is exactly what you want to be before a battle."),
}),
PlaceObj('BanterLineThin', {
'Character', "Gus",
'Text', T(421966448857, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Gus]] "Get tough, Woodchip! Don't expect them to act like it, but your friends need you."),
}),
PlaceObj('BanterLineThin', {
'Character', "Thor",
'Text', T(305378688286, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Thor]] "Teasing among friends is team-building. It eases tension and allows the spirit to accept its flaws and to grow."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raider",
'Text', T(980713329470, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Raider]] "A good team is made up of people who think alike. A great team is made up of people who don't, but still get the job done regardless."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fauda",
'Text', T(558826603600, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success voice:Fauda]] "A woman who wishes to fight must be tough. There is no place for softness in battle."),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Character', "GangWilma",
'Text', T(747598427407, --[[BanterDef CacaoGang_Wilma02_Success Text section:Banters_Local_PortCacao_Triggered/CacaoGang_Wilma02_Success Leadership >= 50 >> CacaoGangWilma voice:GangWilma]] "I guess you're right. Being a Bean means never backing down from a fight! Alright, I'll go and see Gran."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "CacaoGang_Wilma02_Success",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(615664345145, --[[BanterDef PortCacaoCity_Gouverneur_01_InitialSetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_01_InitialSetPiece voice:Gouvernour]] "I'm warning you! Please stop shooting and cease any and all military activities in my city, or I will be forced to impose economic sanctions on you!"),
}),
PlaceObj('BanterLine', {
'Character', "LegionActorLeader",
'Text', T(747880591605, --[[BanterDef PortCacaoCity_Gouverneur_01_InitialSetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_01_InitialSetPiece voice:LegionActorLeader]] "Keep talking and we'll force something on you alright, old man!"),
}),
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(301347293713, --[[BanterDef PortCacaoCity_Gouverneur_01_InitialSetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_01_InitialSetPiece voice:Gouvernour]] "What I am implying is that if you mean to perform a military exercise, you should be coordinating it with the authorities in accordance with all applicable norms and regulations..."),
}),
PlaceObj('BanterLine', {
'Character', "LegionActorLeader",
'Text', T(610560364910, --[[BanterDef PortCacaoCity_Gouverneur_01_InitialSetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_01_InitialSetPiece voice:LegionActorLeader]] "Oh, fucking shut up."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_Gouverneur_01_InitialSetPiece",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(838149247017, --[[BanterDef PortCacaoCity_Gouverneur_02_SetPieceFollowUp Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_02_SetPieceFollowUp voice:Gouvernour]] "Oh, god, be careful with that!"),
}),
PlaceObj('BanterLine', {
'Character', "LegionActorLeader",
'Text', T(355065041526, --[[BanterDef PortCacaoCity_Gouverneur_02_SetPieceFollowUp Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_02_SetPieceFollowUp voice:LegionActorLeader]] "You heard the man. Aim more carefully next time!"),
}),
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(935312376535, --[[BanterDef PortCacaoCity_Gouverneur_02_SetPieceFollowUp Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_02_SetPieceFollowUp voice:Gouvernour]] "That's it! Now I will have to write an official complaint denouncing your activities!"),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_Gouverneur_02_SetPieceFollowUp",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(389815497754, --[[BanterDef PortCacaoCity_Gouverneur_03_approach Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_03_approach voice:Gouvernour]] "Thank you for your mediation in resolving the local conflict with the Legion. I am, however, not pleased with the unsanctioned military solution you have enacted. I am forced to consider imposing sanctions on you."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Meltdown",
'Text', T(889311771848, --[[BanterDef PortCacaoCity_Gouverneur_03_approach Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_03_approach voice:Meltdown]] "Oh, fucking shut up."),
}),
PlaceObj('BanterLineThin', {
'Character', "Flay",
'Text', T(476278496198, --[[BanterDef PortCacaoCity_Gouverneur_03_approach Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_03_approach voice:Flay]] "And I am forced to consider removing your skin and wearing it like a parka."),
}),
PlaceObj('BanterLineThin', {
'Character', "Vicki",
'Text', T(286031247217, --[[BanterDef PortCacaoCity_Gouverneur_03_approach Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_Gouverneur_03_approach voice:Vicki]] "Oh, quit your jibber-jabbering, mon!"),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "LiberatedPortCacao" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.LiberatedPortCacao
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_Gouverneur_03_approach",
})
PlaceObj('BanterDef', {
Comment = "Reunited the Coffee Beans gang",
Lines = {
PlaceObj('BanterLine', {
'Character', "LegionMale_1",
'Text', T(656369299432, --[[BanterDef PortCacaoCity_LegionReinforcementFail_Docks Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_LegionReinforcementFail_Docks Reunited the Coffee Beans gang voice:LegionMale_1]] "Where the hell are the guys from the docks?! I swear, if they let an old lady scare them away, I'll fucking kill every last one of 'em!"),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_LegionReinforcementFail_Docks",
})
PlaceObj('BanterDef', {
Comment = "KilledInitialEnemies (Hermit)",
Lines = {
PlaceObj('BanterLine', {
'Character', "LegionMale_1",
'Text', T(928563121188, --[[BanterDef PortCacaoCity_LegionReinforcementFail_Hermit Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_LegionReinforcementFail_Hermit KilledInitialEnemies (Hermit) voice:LegionMale_1]] "Where are the guys from the coast?! Don't tell me they are still listening to the lectures of that crazy mushroom lover!"),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_LegionReinforcementFail_Hermit",
})
PlaceObj('BanterDef', {
Comment = "Old Diamond Impostors caught",
Lines = {
PlaceObj('BanterLine', {
'Character', "LegionMale_1",
'Text', T(796093665485, --[[BanterDef PortCacaoCity_LegionReinforcementFail_OldDiamond Text section:Banters_Local_PortCacao_Triggered/PortCacaoCity_LegionReinforcementFail_OldDiamond Old Diamond Impostors caught voice:LegionMale_1]] "Don't worry, guys, reinforcements are coming from Old Diamond... any minute now!"),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoCity_LegionReinforcementFail_OldDiamond",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Annotation', "surprised",
'Character', "Lurch",
'Text', T(786660635451, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece surprised voice:Lurch]] "Aaye?!..."),
}),
PlaceObj('BanterLine', {
'Character', "MaBaxter",
'Text', T(900673819303, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece voice:MaBaxter]] "Gregory! What have I told you about playing with guns?"),
}),
PlaceObj('BanterLine', {
'Annotation', "uncertain",
'Character', "Lurch",
'Text', T(563746124087, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece uncertain voice:Lurch]] "Ayeee..."),
}),
PlaceObj('BanterLine', {
'Character', "MaBaxter",
'Text', T(180580171779, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece voice:MaBaxter]] "And what do I see here? A gun. MY GUN! I'm very disappointed in you. Give it to me at once!"),
}),
PlaceObj('BanterLine', {
'Annotation', "obedient",
'Character', "Lurch",
'Text', T(918320672872, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece obedient voice:Lurch]] "Aye, mom."),
}),
PlaceObj('BanterLine', {
'Character', "MaBaxter",
'Text', T(960767437304, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece voice:MaBaxter]] "And never play with guns again!"),
}),
PlaceObj('BanterLine', {
'Annotation', "resigned, with a sigh",
'Character', "Lurch",
'Text', T(264545276037, --[[BanterDef PortCacaoDocks_LurchMom_SetPiece Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_LurchMom_SetPiece resigned, with a sigh voice:Lurch]] "Aaaye, mom."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoDocks_LurchMom_SetPiece",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(472295906292, --[[BanterDef PortCacaoDocks_Lurch_Attacked Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_Lurch_Attacked voice:Lurch]] "AYE?!"),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(977467346276, --[[BanterDef PortCacaoDocks_Lurch_Attacked Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_Lurch_Attacked voice:Larry]] "I'm sorry, man, but the knowledge you possess could break the world."),
'Optional', true,
'playOnce', true,
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoDocks_Lurch_Attacked",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Text', T(810440685187, --[[BanterDef PortCacaoDocks_ShotgunShowcase_LurchAlive Text]] "There is a custom modified <em>Auto-5 shotgun</em> on display. "),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(231912937451, --[[BanterDef PortCacaoDocks_ShotgunShowcase_LurchAlive Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_ShotgunShowcase_LurchAlive voice:Lurch]] "AAYE!..."),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(764901093108, --[[BanterDef PortCacaoDocks_ShotgunShowcase_LurchAlive Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_ShotgunShowcase_LurchAlive voice:Larry]] "Steal it? Come on, man, you know me better than that. I'm just checking its condition."),
'Optional', true,
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoDocks_ShotgunShowcase_LurchAlive",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Text', T(568684196096, --[[BanterDef PortCacaoDocks_ShotgunShowcase_LurchDead Text]] "Now that the bartender is dead, the shotgun can be taken out of the display case."),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(549939163401, --[[BanterDef PortCacaoDocks_ShotgunShowcase_LurchDead Text section:Banters_Local_PortCacao_Triggered/PortCacaoDocks_ShotgunShowcase_LurchDead voice:Larry]] "Lurch would have wanted me to have this. I can feel him with me now, like a warm river down my leg... Wait, that's something else."),
'Optional', true,
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoDocks_ShotgunShowcase_LurchDead",
})
PlaceObj('BanterDef', {
Comment = "bombs armed",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(392779982414, --[[BanterDef PortCacaoGang15 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang15 bombs armed voice:ThugFemale_2]] "They set fucking bombs on us! Fucking do something!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Red",
'Text', T(639818287603, --[[BanterDef PortCacaoGang15 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang15 voice:Red]] "Great. I expect I'll no hear the end of it until I disarm yer little bombs for ye."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fidel",
'Text', T(608531149697, --[[BanterDef PortCacaoGang15 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang15 voice:Fidel]] "Of course! Fidel will set them off right away."),
}),
PlaceObj('BanterLineThin', {
'Character', "Barry",
'Text', T(473421006105, --[[BanterDef PortCacaoGang15 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang15 voice:Barry]] "I will disarm these bombs with utmost of the expedience."),
}),
},
'playOnce', true,
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoGang15",
})
PlaceObj('BanterDef', {
Comment = "bombs armed",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(378388768344, --[[BanterDef PortCacaoGang16 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang16 bombs armed voice:ThugFemale_2]] "Dying as a hostage is for losers."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoGang16",
})
PlaceObj('BanterDef', {
Comment = "bombs armed",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(767311998306, --[[BanterDef PortCacaoGang17 Text section:Banters_Local_PortCacao_Triggered/PortCacaoGang17 bombs armed voice:ThugFemale_2]] "They caught us while we were napping... Literally, I'm sad to say."),
}),
},
Once = true,
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacaoGang17",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Text', T(509128900683, --[[BanterDef PortCacao_interactable_HiddenStash Text]] "There is a small hidden <em>safe</em> behind the picture."),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(392599213011, --[[BanterDef PortCacao_interactable_HiddenStash Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_HiddenStash voice:Frederic]] "Non, non, non, don't you take that! Look, I'll name the shop \"Les Mercenaires\", just don't rob me please!"),
'Optional', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_HiddenStash",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(373037033694, --[[BanterDef PortCacao_interactable_JunkShop_deal01 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_deal01 voice:Itsadi]] "Good bye."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_deal01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(831885496186, --[[BanterDef PortCacao_interactable_JunkShop_deal02 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_deal02 voice:Itsadi]] "Thank you for moneys."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_deal02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(597416234039, --[[BanterDef PortCacao_interactable_JunkShop_deal03 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_deal03 voice:Itsadi]] "Be happy with your junk."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_deal03",
})
PlaceObj('BanterDef', {
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(941013906553, --[[BanterDef PortCacao_interactable_JunkShop_failure01 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_failure01 voice:Itsadi]] "You have no moneys."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_failure01",
})
PlaceObj('BanterDef', {
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(849154107325, --[[BanterDef PortCacao_interactable_JunkShop_failure02 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_failure02 voice:Itsadi]] "No moneys, no junk."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_failure02",
})
PlaceObj('BanterDef', {
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Annotation', '"Where is the money, Lebowski" reference',
'Character', "Itsadi",
'Text', T(202771189510, --[[BanterDef PortCacao_interactable_JunkShop_failure03 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_failure03 "Where is the money, Lebowski" reference voice:Itsadi]] "Where is the moneys, mercses? WHERE IS THE MONEYS, MERCSES?"),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_failure03",
})
PlaceObj('BanterDef', {
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Annotation', '"Khajit has wares, if you have coin" reference',
'Character', "Itsadi",
'Text', T(915095294708, --[[BanterDef PortCacao_interactable_JunkShop_success01 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_success01 "Khajit has wares, if you have coin" reference voice:Itsadi]] "Itsadi has junk, if you have moneys."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_success01",
})
PlaceObj('BanterDef', {
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(993811811396, --[[BanterDef PortCacao_interactable_JunkShop_success02 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_success02 voice:Itsadi]] "You have moneys. You may take junk."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_success02",
})
PlaceObj('BanterDef', {
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Character', "Itsadi",
'Text', T(517425131582, --[[BanterDef PortCacao_interactable_JunkShop_success03 Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_JunkShop_success03 voice:Itsadi]] "Good junk for good moneys."),
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_JunkShop_success03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Text', T(126533526040, --[[BanterDef PortCacao_interactable_MoneyLoot Text]] "There are only piles of next to worthless Grand Chien Franks left in the shop."),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(460576284531, --[[BanterDef PortCacao_interactable_MoneyLoot Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_MoneyLoot voice:Frederic]] "Oh non! First the Legion robs me, and now you! Please don't take that money! It is all that I have left!"),
'Optional', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_MoneyLoot",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Text', T(174867730715, --[[BanterDef PortCacao_interactable_Statue Text]] '"GÉNÉRALISSIME CHIEN, PROUD FOUNDER OF GRAND CHIEN\nGifted to the people of Grand Chien from the people of the Democratic People\'s Republic of Korea. May your bowls be ever full and your guard ever vigilant."'),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'Text', "",
'AnyOfTheseCount', 2,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Red",
'Text', T(778727458669, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Red]] "What a crock o' shite."),
}),
PlaceObj('BanterLineThin', {
'Character', "Spike",
'Text', T(180650789891, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Spike]] "Believe it or not, I came here on the same ship that delivered this piece of trash."),
}),
PlaceObj('BanterLineThin', {
'Character', "Buns",
'Text', T(302274935807, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Buns]] "I am embarrassed to even look at this. A dog bowl? I can only imagine the sculptor took their own life after completing this monstrosity."),
}),
PlaceObj('BanterLineThin', {
'Character', "Grunty",
'Text', T(820373756278, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Grunty]] "This sculpture fills me with both anxiety and mirth. I feel foolish, like I am in love."),
}),
PlaceObj('BanterLineThin', {
'Character', "Tex",
'Text', T(680842609000, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Tex]] "This why I never do film with dog. When people remember movie, they only think of dog."),
}),
PlaceObj('BanterLineThin', {
'Character', "Grizzly",
'Text', T(197648424369, --[[BanterDef PortCacao_interactable_Statue Text section:Banters_Local_PortCacao_Triggered/PortCacao_interactable_Statue voice:Grizzly]] "Cute pooch. Did they really make him a general?"),
}),
},
'Optional', true,
'playOnce', true,
}),
},
group = "Banters_Local_PortCacao_Triggered",
id = "PortCacao_interactable_Statue",
})
|