File size: 72,492 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 |
-- ========== GENERATED BY BanterDef Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(267028256623, --[[BanterDef PortCacaoCity_Frederic_01_approach Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_01_approach voice:Frederic]] "The Legion! They robbed my shop! They have taken everything, even the silver! They weren't supposed to do that!!! "),
}),
},
Once = true,
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_01_approach",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(817159694020, --[[BanterDef PortCacaoCity_Frederic_02 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_02 voice:Frederic]] "How could they do that to me?! I even named my shop <em>La Légion</em>, so that they would not rob it!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Raider",
'Text', T(925718816442, --[[BanterDef PortCacaoCity_Frederic_02 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_02 voice:Raider]] 'You may want to consider a shop name that deters theft. How about "Under Constant Surveillance"?'),
}),
PlaceObj('BanterLineThin', {
'Character', "MD",
'Text', T(297948587380, --[[BanterDef PortCacaoCity_Frederic_02 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_02 voice:MD]] "I get the feeling the Legion doesn't really like to pay for things."),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(342253142378, --[[BanterDef PortCacaoCity_Frederic_02 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_02 voice:Nails]] "They probably saw it as an invitation to take what they wanted. I did the same thing at a hardware store once."),
}),
},
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(782272267168, --[[BanterDef PortCacaoCity_Frederic_03 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_03 voice:Frederic]] "If someone named their shop after me, I would NEVER rob it, I swear!"),
}),
},
conditions = {
PlaceObj('BanterHasPlayed', {
Banters = {
"PortCacaoCity_Frederic_02",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_03",
})
PlaceObj('BanterDef', {
Comment = ">> FredericStash",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Text', T(331839144337, --[[BanterDef PortCacaoCity_Frederic_04 Text]] "<em>Scoundrel</em> perk activated "),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Fox",
'Text', T(792083317839, --[[BanterDef PortCacaoCity_Frederic_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_04 voice:Fox]] "Surely they didn't manage to rob you of everything. The clever fox always keeps something stashed deep in a secret hole."),
}),
PlaceObj('BanterLineThin', {
'Character', "Magic",
'Text', T(851735102786, --[[BanterDef PortCacaoCity_Frederic_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_04 voice:Magic]] "Come on man, you ain't been cleaned out. I mean, you still got a rainy day fund stashed somewhere, right?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Livewire",
'Text', T(692069965011, --[[BanterDef PortCacaoCity_Frederic_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_04 voice:Livewire]] "It is terrible the lengths some people will go to rob innocent civilians of their hard-earned money. Smart people know how to hide it well. That is why I am sure you have stashed away your most valuable assets where no one can find them, yes?"),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Annotation', "nervous laughter",
'Character', "Frederic",
'Text', T(429833484347, --[[BanterDef PortCacaoCity_Frederic_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_04 nervous laughter >> FredericStash voice:Frederic]] "To be honest, they didn't find my <em>secret stash</em> - but that's no surprise. The Legion is not known for their appreciation of <em>art</em>... That was, um, just an observation, haha. Haha. Ha."),
}),
},
conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
FredericStashRobbed = false,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.FredericStashRobbed
end,
}),
PlaceObj('BanterHasPlayed', {
Banters = {
"PortCacaoCity_Frederic_03",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_04",
})
PlaceObj('BanterDef', {
Comment = "stash not robbed yet",
Lines = {
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(171144599863, --[[BanterDef PortCacaoCity_Frederic_05 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_05 stash not robbed yet voice:Frederic]] "Please don't rob me. Please?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
FredericStash = true,
FredericStashRobbed = false,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.FredericStash and not quest.FredericStashRobbed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_05",
})
PlaceObj('BanterDef', {
Comment = "stash robbed",
Lines = {
PlaceObj('BanterLine', {
'Character', "Frederic",
'Text', T(571518688711, --[[BanterDef PortCacaoCity_Frederic_06 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_06 stash robbed voice:Frederic]] "I have been robbed and violated in a most vicious way!... I will write a letter to the President himself, you will see!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Ice",
'Text', T(995968390480, --[[BanterDef PortCacaoCity_Frederic_06 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_06 voice:Ice]] "Good luck with that, dude."),
}),
PlaceObj('BanterLineThin', {
'Character', "Gus",
'Text', T(528812733980, --[[BanterDef PortCacaoCity_Frederic_06 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_06 voice:Gus]] "Don't hold your breath waiting for a reply, Woodhead. Or do hold your breath, I don't care."),
}),
PlaceObj('BanterLineThin', {
'Character', "Mouse",
'Text', T(168887719388, --[[BanterDef PortCacaoCity_Frederic_06 Text section:Banters_Local_PortCacao/PortCacaoCity_Frederic_06 voice:Mouse]] "Who wants to tell him? Can I tell him? I'll tell him later."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "FredericStashRobbed" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.FredericStashRobbed
end,
}),
PlaceObj('CheckIsPersistentUnitDead', {
Negate = true,
per_ses_id = "NPC_President",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Frederic_06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(623878176781, --[[BanterDef PortCacaoCity_Gouverneur_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_04 voice:Gouvernour]] "It is simply impossible for the Legion to even consider attacking Port Cacao. This must be some military exercise."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Ivan",
'Text', T(558093403446, --[[BanterDef PortCacaoCity_Gouverneur_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_04 voice:Ivan]] "Конечно."),
}),
PlaceObj('BanterLineThin', {
'Character', "Len",
'Text', T(274457666024, --[[BanterDef PortCacaoCity_Gouverneur_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_04 voice:Len]] "Sure. It's what's called a \"live-fire\" exercise. Fortunately for you, the Legion isn't as good at it as we are."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scope",
'Text', T(754795980635, --[[BanterDef PortCacaoCity_Gouverneur_04 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_04 voice:Scope]] "You may want to reconsider what you think the Legion is willing to consider, love."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(687394920424, --[[BanterDef PortCacaoCity_Gouverneur_05 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_05 voice:Gouvernour]] "This Legion, they have absolutely no right to attack us!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(292625910808, --[[BanterDef PortCacaoCity_Gouverneur_06 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_06 voice:Gouvernour]] "As gouverneur of the Adjani province, I condemn the illegal activities of the Legion and I will strongly consider any and all punitive measures, up to and including imposing stiff sanctions!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(170810224206, --[[BanterDef PortCacaoCity_Gouverneur_07 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_07 voice:Gouvernour]] "While I do approve of the general idea of saving my good friend <em>Alphonse</em> from his predicament - so much so that I contributed substantial funds to the endeavor - I was never warned that it could lead to unsanctioned military activities in my city!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Ivan",
'Text', T(787866421207, --[[BanterDef PortCacaoCity_Gouverneur_07 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_07 voice:Ivan]] "Я не понял. Is this coward on our side?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Steroid",
'Text', T(883231296391, --[[BanterDef PortCacaoCity_Gouverneur_07 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_07 voice:Steroid]] "My head hurts from listening to the flabby man talk."),
}),
PlaceObj('BanterLineThin', {
'Character', "Barry",
'Text', T(467938989317, --[[BanterDef PortCacaoCity_Gouverneur_07 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_07 voice:Barry]] "I have never in my life heard so many words that don't mean anything."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_07",
})
PlaceObj('BanterDef', {
Comment = "President saved",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(361775145632, --[[BanterDef PortCacaoCity_Gouverneur_08 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_08 President saved voice:Gouvernour]] "I am happy that you have managed to actually save my good friend <em>Alphonse</em>! I hope you didn't forget to mention my dedication and unwavering support of his cause."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
PresidentDead = false,
PresidentLeft = true,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.PresidentDead and quest.PresidentLeft
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_08",
})
PlaceObj('BanterDef', {
Comment = "President dead",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(461109600110, --[[BanterDef PortCacaoCity_Gouverneur_09 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_09 President dead voice:Gouvernour]] "I always warned my good friend <em>Alphonse</em> against introducing foolishly bold reforms, and here we are. One cannot remain in power for long by making enemies like that."),
}),
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(619522803579, --[[BanterDef PortCacaoCity_Gouverneur_09 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_09 President dead voice:MrsGouvernour]] "Poor, poor Emma. What will she do now? She is too old to be sent to the orphanage."),
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set( "Completed", "PresidentDead" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return quest.Completed and quest.PresidentDead
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_09",
})
PlaceObj('BanterDef', {
Comment = "Port Cacao lost at least once",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(907216456833, --[[BanterDef PortCacaoCity_Gouverneur_10 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_10 Port Cacao lost at least once voice:Gouvernour]] "I am completely dissatisfied with your service and I strongly condemn your lack of dedication to your most important job as mercenaries. How could you leave us alone and let those criminals occupy my city?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "EmmaFleePortCacao" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.EmmaFleePortCacao
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_10",
})
PlaceObj('BanterDef', {
Comment = "World flip",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(456852662527, --[[BanterDef PortCacaoCity_Gouverneur_11 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_11 World flip voice:Gouvernour]] "The news about your involvement in what happened at the <em>Refugee Camp</em> has left me totally flabbergasted. I feel compelled to strongly condemn and denounce your activities. I may even file... a complaint."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Wolf",
'Text', T(650778432406, --[[BanterDef PortCacaoCity_Gouverneur_11 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_11 voice:Wolf]] "We'll make a note of it, chief."),
}),
PlaceObj('BanterLineThin', {
'Character', "Blood",
'Text', T(913240698901, --[[BanterDef PortCacaoCity_Gouverneur_11 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_11 voice:Blood]] "That was a set up, man. If you knew even half of my REAL activities, you'd know that's the truth... and you'd know better than to threaten me. "),
}),
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(746502086243, --[[BanterDef PortCacaoCity_Gouverneur_11 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_11 voice:Reaper]] "Such an inelegant display of death is beneath me. I choose my targets carefully, eliminating them one by one and prioritizing the ones that choose to threaten me."),
}),
PlaceObj('BanterLineThin', {
'Character', "Larry_Clean",
'Text', T(141320874293, --[[BanterDef PortCacaoCity_Gouverneur_11 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_11 voice:Larry_Clean]] "I swear I wasn't even there... I think."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "04_Betrayal",
Vars = set( "WorldFlipDone" ),
__eval = function ()
local quest = gv_Quests['04_Betrayal'] or QuestGetState('04_Betrayal')
return quest.WorldFlipDone
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_11",
})
PlaceObj('BanterDef', {
Comment = "Museum approved >> play banter _14",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(833163866604, --[[BanterDef PortCacaoCity_Gouverneur_12 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_12 Museum approved >> play banter _14 voice:Gouvernour]] "In the current complex economic situation, it is difficult to find room in the budget for cultural institutions, such as a <em>Museum of the Adjani</em>..."),
}),
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(913110152239, --[[BanterDef PortCacaoCity_Gouverneur_12 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_12 Museum approved >> play banter _14 voice:MrsGouvernour]] "Is that so? I thought we already discussed this, my love."),
'Optional', true,
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
EmmaFleePortCacao = false,
EmmaMuseumApproved = true,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.EmmaFleePortCacao and quest.EmmaMuseumApproved
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_12",
})
PlaceObj('BanterDef', {
Comment = "have Psycho >> play banter _14",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(572252582244, --[[BanterDef PortCacaoCity_Gouverneur_13 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_13 have Psycho >> play banter _14 voice:Gouvernour]] "In the current complex economic situation, it is difficult to find room in the budget for cultural institutions, such as a <em>Museum of the Adjani</em>..."),
}),
PlaceObj('BanterLine', {
'Text', T(184669852626, --[[BanterDef PortCacaoCity_Gouverneur_13 Text]] "<em>Psycho</em> perk activated"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Fidel",
'Text', T(488356825454, --[[BanterDef PortCacaoCity_Gouverneur_13 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_13 voice:Fidel]] "Stupid Legion can't shoot straight with RPG... but Fidel can!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(976132923065, --[[BanterDef PortCacaoCity_Gouverneur_13 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_13 voice:Nails]] "Nice house you have here. Looks mighty flammable though. You don't mind if I smoke, do ya?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Meltdown",
'Text', T(671735603399, --[[BanterDef PortCacaoCity_Gouverneur_13 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_13 voice:Meltdown]] 'The little missy wants a museum, she gets a museum, okay? You can stick your "economic situation" same place I\'m itchin\' to stick my boot. Got it?'),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
EmmaFleePortCacao = false,
EmmaMentionGovernor = true,
EmmaMentionTreasures = true,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.EmmaFleePortCacao and quest.EmmaMentionGovernor and quest.EmmaMentionTreasures
end,
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Psycho",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_13",
})
PlaceObj('BanterDef', {
Comment = "banter 12 or 13 played >> Museum Funding promised",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(656810909980, --[[BanterDef PortCacaoCity_Gouverneur_14 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_14 banter 12 or 13 played >> Museum Funding promised voice:Gouvernour]] "...However, every effort must be made to preserve our culture in times such as these. I will make sure that you receive <em>compensation</em> for any archeological treasures you manage to deliver to my dear friend, <em>Emma</em>."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Thor",
'Text', T(819436113692, --[[BanterDef PortCacaoCity_Gouverneur_14 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_14 voice:Thor]] "Food feeds the stomach, but culture feeds the soul!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(478604356407, --[[BanterDef PortCacaoCity_Gouverneur_14 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_14 voice:Scully]] "The man knows how to keep a lady happy, I'll give him that."),
}),
PlaceObj('BanterLineThin', {
'Character', "Hitman",
'Text', T(448422131287, --[[BanterDef PortCacaoCity_Gouverneur_14 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_14 voice:Hitman]] "Sounds like it's time for yours truly to get a bullwhip and a fedora."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "EmmaFunding" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.EmmaFunding
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_14",
})
PlaceObj('BanterDef', {
Comment = "Museum approval failure",
FX = "CheckFail",
Lines = {
PlaceObj('BanterLine', {
'Character', "Gouvernour",
'Text', T(516134850381, --[[BanterDef PortCacaoCity_Gouverneur_15 Text section:Banters_Local_PortCacao/PortCacaoCity_Gouverneur_15 Museum approval failure voice:Gouvernour]] "I absolutely endorse young Emma's noble cause to dedicate a <em>Museum of the Adjani</em>. However, in the current complex economic situation I cannot provide public funding for that. "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
EmmaFleePortCacao = false,
EmmaMentionGovernor = true,
EmmaMentionTreasures = true,
EmmaMuseumApproved = false,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.EmmaFleePortCacao and quest.EmmaMentionGovernor and quest.EmmaMentionTreasures and not quest.EmmaMuseumApproved
end,
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Psycho",
Negate = true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_Gouverneur_15",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(283186366374, --[[BanterDef PortCacaoCity_MrsGouvernour_01 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_01 voice:MrsGouvernour]] "What the Legion is doing is certainly wrong, but I hope the sanctions my husband is considering are not too heavy, otherwise they might get angry."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(879462941999, --[[BanterDef PortCacaoCity_MrsGouvernour_02 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_02 voice:MrsGouvernour]] "You should stop all this fighting! When the Legion realizes that nobody else is armed, they will lay down their weapons. That's just human nature!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Sidney",
'Text', T(486042811382, --[[BanterDef PortCacaoCity_MrsGouvernour_02 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_02 voice:Sidney]] "Madam, I can assure you that in the entire course of human history, that has never once been true."),
}),
PlaceObj('BanterLineThin', {
'Character', "DrQ",
'Text', T(558768288563, --[[BanterDef PortCacaoCity_MrsGouvernour_02 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_02 voice:DrQ]] "Unfortunately, non-violent protest only works when the oppressors agree that it works. That is not the case here."),
}),
PlaceObj('BanterLineThin', {
'Character', "PierreMerc",
'Text', T(560181013963, --[[BanterDef PortCacaoCity_MrsGouvernour_02 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_02 voice:PierreMerc]] "That is wrong. The only human nature the Legion understands is brutality; it is better to kill than be killed."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(775633294654, --[[BanterDef PortCacaoCity_MrsGouvernour_03 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_03 voice:MrsGouvernour]] "My husband is a great man who is working day and night for his country! Yet he is surrounded by incompetent fools and simpletons."),
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(367905635490, --[[BanterDef PortCacaoCity_MrsGouvernour_04 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_04 voice:MrsGouvernour]] "We just had the house renovated and those insufferable bandits damaged it! When I see <em>President Alphonse</em>, I will tell him all about this vandalism, don't you think I won't!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
PresidentDead = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.PresidentDead
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(883309275539, --[[BanterDef PortCacaoCity_MrsGouvernour_05 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_05 voice:MrsGouvernour]] "Since they kidnapped <em>President Alphonse</em> - a close friend of ours, you know - it has become my husband's burden and responsibility to ensure peace and prosperity in this part of the country."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(552744398027, --[[BanterDef PortCacaoCity_MrsGouvernour_05 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_05 voice:Shadow]] 'If by "this part of the country" you mean your house, then yeah... he\'s doing great.'),
}),
PlaceObj('BanterLineThin', {
'Character', "Raven",
'Text', T(837542912224, --[[BanterDef PortCacaoCity_MrsGouvernour_05 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_05 voice:Raven]] "Judging by what I've seen, I'm guessing he hasn't started yet."),
}),
PlaceObj('BanterLineThin', {
'Character', "Steroid",
'Text', T(408000683902, --[[BanterDef PortCacaoCity_MrsGouvernour_05 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_05 voice:Steroid]] "If he needs help lifting heavy burdens, I am avoidable."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
PresidentDead = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.PresidentDead
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_05",
})
PlaceObj('BanterDef', {
Comment = "President saved",
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(899910544308, --[[BanterDef PortCacaoCity_MrsGouvernour_06 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_06 President saved voice:MrsGouvernour]] "I have always reassured my husband that supporting <em> President Alphonse</em> was the right thing to do."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set( "PresidentLeft" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return quest.PresidentLeft
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_06",
})
PlaceObj('BanterDef', {
Comment = "President dead",
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(939095917905, --[[BanterDef PortCacaoCity_MrsGouvernour_07 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_07 President dead voice:MrsGouvernour]] "I always warned my husband against associating himself too closely with <em>Alphonse LaFontaine</em>, but he wouldn't listen! What are we going to do now?! "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set( "PresidentDead" ),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return quest.PresidentDead
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_07",
})
PlaceObj('BanterDef', {
Comment = "Port Cacao lost at least once",
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(488445918722, --[[BanterDef PortCacaoCity_MrsGouvernour_08 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_08 Port Cacao lost at least once voice:MrsGouvernour]] "This is outrageous! You left us totally at the mercy of those ruffians! They could have done something unspeakably indecent to us. Can you imagine?!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "EmmaFleePortCacao" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.EmmaFleePortCacao
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_08",
})
PlaceObj('BanterDef', {
Comment = ">> Museum will be approved",
FX = "CheckSuccess",
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(175874651661, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_09 >> Museum will be approved voice:MrsGouvernour]] "Is it true that young Emma means to turn our house into a <em>museum</em>?!"),
}),
PlaceObj('BanterLine', {
'Text', T(126929337792, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text]] "<em>Scoundrel</em> perk activated "),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Livewire",
'Text', T(916031474669, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_09 voice:Livewire]] "She intended to name it after you, but unfortunately your husband refused to provide funding. I can definitely understand if you don't want your family name to be written in big gold letters on a famous building."),
}),
PlaceObj('BanterLineThin', {
'Character', "Magic",
'Text', T(677283829124, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_09 voice:Magic]] "She was gonna dedicate it in your name with a stylin' plaque and everything, but your man was tight with the dough."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fox",
'Text', T(588837164689, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_09 voice:Fox]] "She wanted to put your name on it, but your husband seemed to have, er... another woman's name in mind."),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(980107342424, --[[BanterDef PortCacaoCity_MrsGouvernour_09 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_09 >> Museum will be approved voice:MrsGouvernour]] "Is that so?! We will see about that."),
}),
},
Once = true,
conditions = {
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
EmmaFleePortCacao = false,
EmmaMentionGovernor = true,
EmmaMentionTreasures = true,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.EmmaFleePortCacao and quest.EmmaMentionGovernor and quest.EmmaMentionTreasures
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "05_TakeDownMajor",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['05_TakeDownMajor'] or QuestGetState('05_TakeDownMajor')
return not quest.Completed
end,
}),
PlaceObj('CheckIsPersistentUnitDead', {
Negate = true,
per_ses_id = "NPC_Gouvernour",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_09",
})
PlaceObj('BanterDef', {
Comment = "Governor dead",
Lines = {
PlaceObj('BanterLine', {
'Character', "MrsGouvernour",
'Text', T(840149950001, --[[BanterDef PortCacaoCity_MrsGouvernour_10 Text section:Banters_Local_PortCacao/PortCacaoCity_MrsGouvernour_10 Governor dead voice:MrsGouvernour]] "How could you let my husband die?! Who will take care of the common people now?"),
}),
},
conditions = {
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_Gouvernour",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoCity_MrsGouvernour_10",
})
PlaceObj('BanterDef', {
Comment = "Larry comments are delirium-infused bullshit",
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(505790399741, --[[BanterDef PortCacaoDocks_Lurch01 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch01 Larry comments are delirium-infused bullshit voice:Lurch]] "Aye."),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(115575948684, --[[BanterDef PortCacaoDocks_Lurch01 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch01 Larry comments are delirium-infused bullshit voice:Larry]] "Yeah, if you say so. Be careful either way."),
'Optional', true,
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoDocks_Lurch01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(334457760223, --[[BanterDef PortCacaoDocks_Lurch02 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch02 voice:Lurch]] "Aye?"),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(419301015796, --[[BanterDef PortCacaoDocks_Lurch02 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch02 voice:Larry]] "Can't say, man. I'm not an expert myself. I'm just glad you see them, too!"),
'Optional', true,
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoDocks_Lurch02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(993495951567, --[[BanterDef PortCacaoDocks_Lurch03 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch03 voice:Lurch]] "Aye-aye! "),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(254877036204, --[[BanterDef PortCacaoDocks_Lurch03 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch03 voice:Larry]] "Not so loud, man. The walls have ears... big, furry, brown ears."),
'Optional', true,
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoDocks_Lurch03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(334763620105, --[[BanterDef PortCacaoDocks_Lurch04 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch04 voice:Lurch]] "Aaaye... "),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(395200341217, --[[BanterDef PortCacaoDocks_Lurch04 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch04 voice:Larry]] "Me neither, man, me neither. But I'm sure someone will notice at some point."),
'Optional', true,
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoDocks_Lurch04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Lurch",
'Text', T(615881754570, --[[BanterDef PortCacaoDocks_Lurch05 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch05 voice:Lurch]] "Aaye!"),
}),
PlaceObj('BanterLine', {
'Character', "Larry",
'Text', T(189817133131, --[[BanterDef PortCacaoDocks_Lurch05 Text section:Banters_Local_PortCacao/PortCacaoDocks_Lurch05 voice:Larry]] "You're right, it's outrageous. Even Ted here thinks the teddy bears have gone too far!"),
'Optional', true,
'playOnce', true,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoDocks_Lurch05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(220954508672, --[[BanterDef PortCacaoGang01 Text section:Banters_Local_PortCacao/PortCacaoGang01 voice:ThugFemale_2]] "Dying in bed is for losers."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang01",
})
PlaceObj('BanterDef', {
Comment = ">> quest Docks - MentionGang",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(888611713309, --[[BanterDef PortCacaoGang02 Text section:Banters_Local_PortCacao/PortCacaoGang02 >> quest Docks - MentionGang voice:ThugFemale_2]] "I remember when the <em>Coffee Beans</em> stole the... Oh, what was that thing? Anyway, we had to kill every single one of the... Oh, what did they call themselves? Tsk. My memory isn't what it used to be. "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang02",
})
PlaceObj('BanterDef', {
Comment = ">> quest Docks - MentionGang",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(502541890619, --[[BanterDef PortCacaoGang03 Text section:Banters_Local_PortCacao/PortCacaoGang03 >> quest Docks - MentionGang voice:ThugFemale_2]] "You call yourselves a gang? Ha. The <em>Coffee Beans</em> were a REAL gang! You are just a bunch of mercenaries."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Ice",
'Text', T(358005149406, --[[BanterDef PortCacaoGang03 Text section:Banters_Local_PortCacao/PortCacaoGang03 voice:Ice]] "This ain't no gang, this is just business."),
}),
PlaceObj('BanterLineThin', {
'Character', "Blood",
'Text', T(604201093782, --[[BanterDef PortCacaoGang03 Text section:Banters_Local_PortCacao/PortCacaoGang03 voice:Blood]] "Yes. That is the literal name of our chosen profession."),
}),
PlaceObj('BanterLineThin', {
'Character', "Livewire",
'Text', T(592128752735, --[[BanterDef PortCacaoGang03 Text section:Banters_Local_PortCacao/PortCacaoGang03 voice:Livewire]] "Well... yes. I mean, that is literally what we are."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang03",
})
PlaceObj('BanterDef', {
Comment = ">> quest Docks - MentionGang",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(752516141913, --[[BanterDef PortCacaoGang04 Text section:Banters_Local_PortCacao/PortCacaoGang04 >> quest Docks - MentionGang voice:ThugFemale_2]] "Back when I was a <em>Coffee Bean</em>, guys couldn't decide if they wanted to sleep with me or wet their pants and run!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Fox",
'Text', T(110439555922, --[[BanterDef PortCacaoGang04 Text section:Banters_Local_PortCacao/PortCacaoGang04 voice:Fox]] "Same thing happens to me whenever I show a guy my guns."),
}),
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(459285863777, --[[BanterDef PortCacaoGang04 Text section:Banters_Local_PortCacao/PortCacaoGang04 voice:Shadow]] "I bet the only option for a guy your age these days is to wet his pants."),
}),
PlaceObj('BanterLineThin', {
'Character', "MD",
'Text', T(896360341154, --[[BanterDef PortCacaoGang04 Text section:Banters_Local_PortCacao/PortCacaoGang04 voice:MD]] "Wow. I feel seen... and attacked."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang04",
})
PlaceObj('BanterDef', {
Comment = "ready to fight",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(923654331372, --[[BanterDef PortCacaoGang05 Text section:Banters_Local_PortCacao/PortCacaoGang05 ready to fight voice:ThugFemale_2]] "What's keeping those Legion assholes? I'm getting bored. I should have brought my knitting. "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
Completed = false,
DocksLost = false,
Failed = false,
Given = true,
["N-NightCombat"] = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed and not quest.Completed and not quest.DocksLost and not quest.Failed and quest.Given and not quest['N-NightCombat']
end,
}),
PlaceObj('UnitIsAroundMarkerOfGroup', {
MarkerGroup = "GrannyStore",
TargetUnit = "ThugFemale_2",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang05",
})
PlaceObj('BanterDef', {
Comment = "ready to fight",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(784098795619, --[[BanterDef PortCacaoGang06 Text section:Banters_Local_PortCacao/PortCacaoGang06 ready to fight voice:ThugFemale_2]] "Where are those Legion boys? I want to kill 'em all before I die of old age."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
Completed = false,
DocksLost = false,
Failed = false,
Given = true,
["N-NightCombat"] = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed and not quest.Completed and not quest.DocksLost and not quest.Failed and quest.Given and not quest['N-NightCombat']
end,
}),
PlaceObj('UnitIsAroundMarkerOfGroup', {
MarkerGroup = "GrannyStore",
TargetUnit = "ThugFemale_2",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang06",
})
PlaceObj('BanterDef', {
Comment = "ready to fight",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(957625537176, --[[BanterDef PortCacaoGang07 Text section:Banters_Local_PortCacao/PortCacaoGang07 ready to fight voice:ThugFemale_2]] "I'm so excited for the fun to start! I feel as young as I did back in my Coffee Bean days."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
Completed = false,
DocksLost = false,
Failed = false,
Given = true,
["N-NightCombat"] = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed and not quest.Completed and not quest.DocksLost and not quest.Failed and quest.Given and not quest['N-NightCombat']
end,
}),
PlaceObj('UnitIsAroundMarkerOfGroup', {
MarkerGroup = "GrannyStore",
TargetUnit = "ThugFemale_2",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang07",
})
PlaceObj('BanterDef', {
Comment = "celebrating victory",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(219314122394, --[[BanterDef PortCacaoGang08 Text section:Banters_Local_PortCacao/PortCacaoGang08 celebrating victory voice:ThugFemale_2]] "Those Legion boys were no match for the Coffee Beans! I hope you watched and learned."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Reaper",
'Text', T(457688963207, --[[BanterDef PortCacaoGang08 Text section:Banters_Local_PortCacao/PortCacaoGang08 voice:Reaper]] "I did better than that - I watched and killed."),
}),
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(381054955965, --[[BanterDef PortCacaoGang08 Text section:Banters_Local_PortCacao/PortCacaoGang08 voice:Nails]] "Sorry, I was a little busy killing people and stuff."),
}),
PlaceObj('BanterLineThin', {
'Character', "Kalyna",
'Text', T(674537152520, --[[BanterDef PortCacaoGang08 Text section:Banters_Local_PortCacao/PortCacaoGang08 voice:Kalyna]] "I did! I learned that being silvered, wrinkled, and foul-tempered means you are very tough!"),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
Completed = true,
Given = true,
["N-NightCombat"] = true,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed and quest.Completed and quest.Given and quest['N-NightCombat']
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang08",
})
PlaceObj('BanterDef', {
Comment = "celebrating victory",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(843270372956, --[[BanterDef PortCacaoGang09 Text section:Banters_Local_PortCacao/PortCacaoGang09 celebrating victory voice:ThugFemale_2]] "Good job, friends! Keep fighting like that and you might be remembered as the Coffee Beans' cute sidekicks."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
Completed = true,
Given = true,
["N-NightCombat"] = true,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed and quest.Completed and quest.Given and quest['N-NightCombat']
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang09",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf",
'Character', "GangHannah",
'Text', T(813595181930, --[[BanterDef PortCacaoGang10_Hannah Text section:Banters_Local_PortCacao/PortCacaoGang10_Hannah loud - Hannah is partially deaf voice:GangHannah]] "Whut? Speak louder, for fuck's sake!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang10_Hannah",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "GangKayla",
'Text', T(919329575466, --[[BanterDef PortCacaoGang11_Kayla Text section:Banters_Local_PortCacao/PortCacaoGang11_Kayla voice:GangKayla]] "What are you looking at? Never seen a lady lick her machete before?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang11_Kayla",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "GangTrudy",
'Text', T(785149106528, --[[BanterDef PortCacaoGang12_Trudy Text section:Banters_Local_PortCacao/PortCacaoGang12_Trudy voice:GangTrudy]] "Well, fuck all. "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang12_Trudy",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Annotation', "Pratchett reference",
'Character', "GangVinnie",
'Text', T(979118345052, --[[BanterDef PortCacaoGang13_Vinnie Text section:Banters_Local_PortCacao/PortCacaoGang13_Vinnie Pratchett reference voice:GangVinnie]] "I ate'nt dead yet!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang13_Vinnie",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "GangWilma",
'Text', T(601093803831, --[[BanterDef PortCacaoGang14_Wilma Text section:Banters_Local_PortCacao/PortCacaoGang14_Wilma voice:GangWilma]] "I am not THAT short, okay?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang14_Wilma",
})
PlaceObj('BanterDef', {
Comment = "bombs disarmed",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(969293310669, --[[BanterDef PortCacaoGang18 Text section:Banters_Local_PortCacao/PortCacaoGang18 bombs disarmed voice:ThugFemale_2]] "You youngsters did so well disarming those bombs. Hang on, I think I have some sweets in my pocket for you."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsExploded = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsExploded
end,
}),
PlaceObj('QuestIsVariableNum', {
Amount = 3,
Prop = "BombsDisarmed",
QuestId = "Docks",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang18",
})
PlaceObj('BanterDef', {
Comment = "bombs disarmed",
Lines = {
PlaceObj('BanterLine', {
'Annotation', "loud - Hannah is partially deaf.",
'Character', "GangHannah",
'Text', T(968156105587, --[[BanterDef PortCacaoGang19_Hannah Text section:Banters_Local_PortCacao/PortCacaoGang19_Hannah loud - Hannah is partially deaf. bombs disarmed voice:GangHannah]] "Good fucking job disarming those bombs! Don't let me catch you bragging about saving the Coffee Beans, you hear?!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsExploded = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsExploded
end,
}),
PlaceObj('QuestIsVariableNum', {
Amount = 3,
Prop = "BombsDisarmed",
QuestId = "Docks",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang19_Hannah",
})
PlaceObj('BanterDef', {
Comment = "completed",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugFemale_2",
'Text', T(961807270929, --[[BanterDef PortCacaoGang20 Text section:Banters_Local_PortCacao/PortCacaoGang20 completed voice:ThugFemale_2]] "We will consider letting you in the gang when you're old enough."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Len",
'Text', T(582814106436, --[[BanterDef PortCacaoGang20 Text section:Banters_Local_PortCacao/PortCacaoGang20 voice:Len]] "Nice to know I'll have some options when I retire."),
}),
PlaceObj('BanterLineThin', {
'Character', "Gus",
'Text', T(103262060582, --[[BanterDef PortCacaoGang20 Text section:Banters_Local_PortCacao/PortCacaoGang20 voice:Gus]] "In my case, that would make it a posthumous membership, Woodhead. "),
}),
PlaceObj('BanterLineThin', {
'Character', "Red",
'Text', T(972138938859, --[[BanterDef PortCacaoGang20 Text section:Banters_Local_PortCacao/PortCacaoGang20 voice:Red]] "Yer off yer head! I'm older than you, I'll wager! "),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set( "Completed" ),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang20",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "GangHannah",
'Text', T(235213287049, --[[BanterDef PortCacaoGang21 Text section:Banters_Local_PortCacao/PortCacaoGang21 voice:GangHannah]] "WHUT?!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
BombsArmed = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.BombsArmed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacaoGang21",
})
PlaceObj('BanterDef', {
Comment = "killed Lurch >> Guilty",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(159357995767, --[[BanterDef PortCacao_VillagerFemale_01 Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_01 killed Lurch >> Guilty voice:CivilianFemale_1]] "How could you kill <em>Lurch</em>! He was just a big baby, he meant no harm to anyone!"),
}),
},
Once = true,
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "_GroupsAttacked",
Vars = set( "Lurch_Killed" ),
__eval = function ()
local quest = gv_Quests['_GroupsAttacked'] or QuestGetState('_GroupsAttacked')
return quest.Lurch_Killed
end,
}),
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_01",
})
PlaceObj('BanterDef', {
Comment = ">> PortCacaoUnderAttack",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(798982313291, --[[BanterDef PortCacao_VillagerFemale_02 Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_02 >> PortCacaoUnderAttack voice:CivilianFemale_2]] "I heard the Legion plans to lay siege to the <em>City</em>! I hope they do not destroy the statue of Généralissime Chien! It is so comforting to see him there."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('PlayerIsInSectors', {
Negate = true,
Sectors = {
"L8",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set({
EmmaFleePortCacao = false,
LiberatedPortCacao = false,
}),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return not quest.EmmaFleePortCacao and not quest.LiberatedPortCacao
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_02",
})
PlaceObj('BanterDef', {
Comment = ">> quest Prison",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(115761204816, --[[BanterDef PortCacao_VillagerFemale_03 Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_03 >> quest Prison voice:CivilianFemale_1]] "<em>Frédéric</em> gave my husband a small loan and now he wants his money back with huge interest! He is threatening to drag my man to the <em>Good Place</em> and make him a slave."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('CheckGameState', {
GameState = "Day",
}),
PlaceObj('CheckGameState', {
GameState = "Sunset",
}),
},
}),
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "L6",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_03",
})
PlaceObj('BanterDef', {
Comment = ">> quest Docks - MentionGang",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(754680114707, --[[BanterDef PortCacao_VillagerFemale_04 Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_04 >> quest Docks - MentionGang voice:CivilianFemale_1]] "When I was little, I dreamed I would join the <em>Coffee Beans</em> gang when I grow up."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_04",
})
PlaceObj('BanterDef', {
Comment = ">> give quest The Trash Fief",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(590607304194, --[[BanterDef PortCacao_VillagerFemale_05 Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_05 >> give quest The Trash Fief voice:CivilianFemale_2]] "Say what you will about us, but at least we are not fighting over a piece of merde like those loonies in the <em>Dump</em>."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('PlayerIsInSectors', {
Negate = true,
Sectors = {
"L9",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TheTrashFief",
Vars = set({
Completed = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['TheTrashFief'] or QuestGetState('TheTrashFief')
return not quest.Completed and not quest.Failed
end,
}),
PlaceObj('PlayerControlSectors', {
Amount = 7,
Condition = ">=",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_05",
})
PlaceObj('BanterDef', {
Comment = ">> +1 Militia at the Dump",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(370426819458, --[[BanterDef PortCacao_VillagerFemale_06_Loyalty Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_06_Loyalty >> +1 Militia at the Dump voice:CivilianFemale_2]] 'My man left me because of those clowns at the <em>Dump</em>! He wanted to become a "Knight who serves the Protector of the Dump". What does that even mean?!'),
}),
PlaceObj('BanterLine', {
'Text', T(975427696005, --[[BanterDef PortCacao_VillagerFemale_06_Loyalty Text]] "+1 Militia in <em>The Dump</em>"),
'Voiced', false,
'FloatUp', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Scully",
'Text', T(242927789167, --[[BanterDef PortCacao_VillagerFemale_06_Loyalty Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_06_Loyalty voice:Scully]] "Let the man follow his dreams!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Kalyna",
'Text', T(819314723783, --[[BanterDef PortCacao_VillagerFemale_06_Loyalty Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_06_Loyalty voice:Kalyna]] "It means he has taken a sacred oath to protect the Dump. You should be very proud!"),
}),
PlaceObj('BanterLineThin', {
'Character', "Grunty",
'Text', T(889030542088, --[[BanterDef PortCacao_VillagerFemale_06_Loyalty Text section:Banters_Local_PortCacao/PortCacao_VillagerFemale_06_Loyalty voice:Grunty]] "It means he will sacrifice his very life to protect our junk."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('PlayerIsInSectors', {
Negate = true,
Sectors = {
"L9",
},
}),
PlaceObj('SectorMilitiaNumber', {
Amount = 1,
Condition = ">=",
sector_id = "L9",
}),
PlaceObj('SectorCheckOwner', {
sector_id = "L9",
}),
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "PortDiancie",
Condition = ">=",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerFemale_06_Loyalty",
})
PlaceObj('BanterDef', {
Comment = ">> quest Prison",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(991247579196, --[[BanterDef PortCacao_VillagerMale_01 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_01 >> quest Prison voice:CivilianMale_1]] "I hope the Legion robs that weasel <em>Frédéric Le Furet</em> and takes everything from him, just as he cheats and robs us. I was almost sold as a slave to the <em>Good Place</em> because of him."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('CheckGameState', {
GameState = "Sunrise",
}),
PlaceObj('CheckGameState', {
GameState = "Day",
}),
},
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(910107218016, --[[BanterDef PortCacao_VillagerMale_02 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_02 voice:CivilianMale_1]] "People say that the inscription on the statue of <em>Généralissime Chien</em> is an ancient Korean blessing. It grants our country peace and prosperity as long as the Généralissime's dog bowl stays full!"),
}),
},
conditions = {
PlaceObj('PlayerIsInSectors', {
Sectors = {
"L8",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_02",
})
PlaceObj('BanterDef', {
Comment = ">> quest Old Diamond - MentionGuns",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_3",
'Text', T(445415153872, --[[BanterDef PortCacao_VillagerMale_03 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_03 >> quest Old Diamond - MentionGuns voice:CivilianMale_3]] "I heard that you guys have been inspecting the Old Diamond mine at <em>night </em> disguised as workers! That's a very clever move."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('CheckGameState', {
GameState = "Night",
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "OldDiamond",
Vars = set({
ImpostorsKilled = false,
}),
__eval = function ()
local quest = gv_Quests['OldDiamond'] or QuestGetState('OldDiamond')
return not quest.ImpostorsKilled
end,
}),
PlaceObj('SectorCheckOwner', {
sector_id = "K10",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_03",
})
PlaceObj('BanterDef', {
Comment = ">> quest Docks - Given",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(330232946100, --[[BanterDef PortCacao_VillagerMale_04 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_04 >> quest Docks - Given voice:CivilianMale_2]] "Ha-ha, those Legion idiots are thinking they can take the Docks just like that. Think again, that's what I'd say! You guys have a plan how to stop their <em>N-Night</em> operation, right?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
Completed = false,
DocksLost = false,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.Completed and not quest.DocksLost
end,
}),
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_04",
})
PlaceObj('BanterDef', {
Comment = "repelled the Legion from the Docks",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(654508845919, --[[BanterDef PortCacao_VillagerMale_05 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_05 repelled the Legion from the Docks voice:CivilianMale_2]] "The Legion made a series of tactical mistakes at the Docks. They disembarked too fast, and they should have spread their forces to hit you from the sides!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set( "Completed", "N-NightCombat" ),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return quest.Completed and quest['N-NightCombat']
end,
}),
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_05",
})
PlaceObj('BanterDef', {
Comment = "the Legion took over the Docks",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(836366275423, --[[BanterDef PortCacao_VillagerMale_06 Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_06 the Legion took over the Docks voice:CivilianMale_2]] "You could have repelled the Legion invasion of the Docks, but you made a series of tactical mistakes. You should have lured them into a trap, then defeat them with a pincer movement!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Docks",
Vars = set({
Completed = false,
DocksLost = true,
["N-NightCombat"] = true,
}),
__eval = function ()
local quest = gv_Quests['Docks'] or QuestGetState('Docks')
return not quest.Completed and quest.DocksLost and quest['N-NightCombat']
end,
}),
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_06",
})
PlaceObj('BanterDef', {
Comment = ">> Old Diamond income",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(468975897673, --[[BanterDef PortCacao_VillagerMale_07_Loyalty Text section:Banters_Local_PortCacao/PortCacao_VillagerMale_07_Loyalty >> Old Diamond income voice:CivilianMale_1]] "I heard that one can find all kinds of expensive archeology in them mines, right? I want to become a mine worker! I am very... concerned for our, uh, heritage."),
}),
PlaceObj('BanterLine', {
'Text', T(328940533350, --[[BanterDef PortCacao_VillagerMale_07_Loyalty Text]] "<em>Old Diamond</em> mine income increased"),
'Voiced', false,
'FloatUp', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorCheckCity', {
city = "PortDiancie",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "PortCacaoSideQuests",
Vars = set( "EmmaMuseumApproved" ),
__eval = function ()
local quest = gv_Quests['PortCacaoSideQuests'] or QuestGetState('PortCacaoSideQuests')
return quest.EmmaMuseumApproved
end,
}),
PlaceObj('CityHasLoyalty', {
Amount = 60,
City = "PortDiancie",
Condition = ">=",
}),
PlaceObj('SectorCheckOwner', {
sector_id = "K10",
}),
PlaceObj('SectorHasDepletedMine', {
Negate = true,
sector_id = "K10",
}),
},
disabledInConflict = true,
group = "Banters_Local_PortCacao",
id = "PortCacao_VillagerMale_07_Loyalty",
})
|