File size: 53,979 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 |
-- ========== GENERATED BY BanterDef Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Broker",
'Text', T(995916200607, --[[BanterDef BrokerApproach Text section:Banters_Local_Fleatown/BrokerApproach voice:Broker]] "Is the shooting and screaming over? Not to complain, but why did you have to shoot my customers?"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Buns",
'Text', T(328627892790, --[[BanterDef BrokerApproach Text section:Banters_Local_Fleatown/BrokerApproach voice:Buns]] "Because they were shooting at us. It's not something we approve of."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raven",
'Text', T(767126160296, --[[BanterDef BrokerApproach Text section:Banters_Local_Fleatown/BrokerApproach voice:Raven]] "You need a better class of customer."),
}),
},
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Character', "Broker",
'Text', T(836641524567, --[[BanterDef BrokerApproach Text section:Banters_Local_Fleatown/BrokerApproach voice:Broker]] "It's alright though, they were all small fish. But you! Ah, I bet you would be interested in some serious trading."),
'Optional', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorIsInConflict', {
Negate = true,
sector_id = "H9",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "BrokerApproach",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Broker",
'Text', T(243643991432, --[[BanterDef BrokerEnemiesInSector Text section:Banters_Local_Fleatown/BrokerEnemiesInSector voice:Broker]] "Please don't start any trouble, it's bad for business."),
}),
PlaceObj('BanterLine', {
'Character', "Fidel",
'Text', T(598914458174, --[[BanterDef BrokerEnemiesInSector Text section:Banters_Local_Fleatown/BrokerEnemiesInSector voice:Fidel]] "Shut up! Getting shot in the guts is more bad for business!"),
'Optional', true,
}),
PlaceObj('BanterLine', {
'Character', "Wolf",
'Text', T(921194855539, --[[BanterDef BrokerEnemiesInSector Text section:Banters_Local_Fleatown/BrokerEnemiesInSector voice:Wolf]] "Trouble IS our business."),
'Optional', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorIsInConflict', {
sector_id = "H9",
}),
},
group = "Banters_Local_Fleatown",
id = "BrokerEnemiesInSector",
})
PlaceObj('BanterDef', {
Comment = ">> Proud",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(256238805912, --[[BanterDef Fleatown_VillagerFemale_01_Loyalty Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_01_Loyalty >> Proud voice:CivilianFemale_1]] "I left my door unlocked last night, and you know what? I was not robbed! I don't know how you did it, but boys who used to be in gangs are now keeping the peace in the militia."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Wolf",
'Text', T(666030235268, --[[BanterDef Fleatown_VillagerFemale_01_Loyalty Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_01_Loyalty voice:Wolf]] "Being in the town militia gives people permission to feel good about themselves."),
}),
PlaceObj('BanterLineThin', {
'Character', "Len",
'Text', T(614049888586, --[[BanterDef Fleatown_VillagerFemale_01_Loyalty Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_01_Loyalty voice:Len]] "Joining the town militia gives a youngster a sense of self-worth, which is what a gang can give but for the wrong reasons."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raider",
'Text', T(546348644453, --[[BanterDef Fleatown_VillagerFemale_01_Loyalty Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_01_Loyalty voice:Raider]] "I'm glad we're keeping the streets safe, ma'am. Now, if we can just figure out how to keep them clean..."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 55,
City = "Fleatown",
Condition = ">=",
}),
PlaceObj('SectorMilitiaNumber', {
Amount = 2,
Condition = ">=",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerFemale_01_Loyalty",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_2",
'Text', T(331038563543, --[[BanterDef Fleatown_VillagerFemale_02 Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_02 voice:CivilianFemale_2]] "My sister works in <em>Rimville</em>. She says it's very nice, but they make her empty her pockets before letting her leave."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Fox",
'Text', T(783373271787, --[[BanterDef Fleatown_VillagerFemale_02 Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_02 voice:Fox]] "She has an outfit that has pockets?! Where does she shop?"),
}),
PlaceObj('BanterLineThin', {
'Character', "Livewire",
'Text', T(907615803520, --[[BanterDef Fleatown_VillagerFemale_02 Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_02 voice:Livewire]] "I know some people who can sew pockets into jacket linings. I'll put you in touch."),
}),
PlaceObj('BanterLineThin', {
'Character', "Magic",
'Text', T(119620804934, --[[BanterDef Fleatown_VillagerFemale_02 Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_02 voice:Magic]] "You don't need pockets to make things disappear. It's called misdirection, ya dig?"),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerFemale_02",
})
PlaceObj('BanterDef', {
Comment = ">> Mine Production",
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianFemale_1",
'Text', T(732460030057, --[[BanterDef Fleatown_VillagerFemale_03_Loyalty Text section:Banters_Local_Fleatown/Fleatown_VillagerFemale_03_Loyalty >> Mine Production voice:CivilianFemale_1]] "I heard you are paying good wages for people to work in <em>Mfumu's Mine</em>. My husband is eager to work for you - at least, he better be. He'll sign up tomorrow."),
}),
PlaceObj('BanterLine', {
'Text', T(746970221083, --[[BanterDef Fleatown_VillagerFemale_03_Loyalty Text]] "<em>Mfumu's Mine</em> income increased"),
'Voiced', false,
'FloatUp', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 45,
City = "Fleatown",
Condition = ">=",
}),
PlaceObj('SectorCheckOwner', {
sector_id = "H7",
}),
PlaceObj('SectorHasDepletedMine', {
Negate = true,
sector_id = "H7",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerFemale_03_Loyalty",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(558146866437, --[[BanterDef Fleatown_VillagerMale_01 Text section:Banters_Local_Fleatown/Fleatown_VillagerMale_01 voice:CivilianMale_1]] "There are worse places than Fleatown, my friend... just not by a whole lot."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 40,
City = "Fleatown",
Condition = "<",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerMale_01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(247147359593, --[[BanterDef Fleatown_VillagerMale_02 Text section:Banters_Local_Fleatown/Fleatown_VillagerMale_02 voice:CivilianMale_2]] "The communists pay their miners little but have good benefits. The capitalists pay better, but work you to death. These are my options."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "C7_Underground",
}),
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "A2",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerMale_02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_1",
'Text', T(328870299171, --[[BanterDef Fleatown_VillagerMale_03 Text section:Banters_Local_Fleatown/Fleatown_VillagerMale_03 voice:CivilianMale_1]] "You with the smugglers or the gangsters? You don't look like miners, that's for damn sure."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "04_Betrayal",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['04_Betrayal'] or QuestGetState('04_Betrayal')
return not quest.Completed
end,
}),
PlaceObj('CityHasLoyalty', {
Amount = 30,
City = "Fleatown",
Condition = "<",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerMale_03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "CivilianMale_2",
'Text', T(817127699894, --[[BanterDef Fleatown_VillagerMale_04 Text section:Banters_Local_Fleatown/Fleatown_VillagerMale_04 voice:CivilianMale_2]] "The market has everything you might expect to find, as long as you don't expect to find much."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Fleatown",
Condition = "<",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "Fleatown_VillagerMale_04",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss and the mercs have supported him",
Lines = {
PlaceObj('BanterLine', {
'Character', "Luigi",
'Text', T(311000309445, --[[BanterDef LuigiBoss_03 Text section:Banters_Local_Fleatown/LuigiBoss_03 Luigi is Boss and the mercs have supported him voice:Luigi]] "Ciao ragazzi! Welcome to Rimville! I just made Caponata - my own family recipe. Come, be my guest."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Blood",
'Text', T(849994240161, --[[BanterDef LuigiBoss_03 Text section:Banters_Local_Fleatown/LuigiBoss_03 voice:Blood]] "Home-cooked Italian food? I knew we supported the right guy."),
}),
PlaceObj('BanterLineThin', {
'Character', "Omryn",
'Text', T(878345825627, --[[BanterDef LuigiBoss_03 Text section:Banters_Local_Fleatown/LuigiBoss_03 voice:Omryn]] "A friend who gives diamonds is nice. A friend who gives food is better."),
}),
PlaceObj('BanterLineThin', {
'Character', "Thor",
'Text', T(342666639148, --[[BanterDef LuigiBoss_03 Text section:Banters_Local_Fleatown/LuigiBoss_03 voice:Thor]] "You made... Caponata? I am speechless... and suddenly quite hungry."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set( "Completed", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and quest.SupportLuigi
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_03",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss and the mercs have supported him",
Lines = {
PlaceObj('BanterLine', {
'Character', "Luigi",
'Text', T(501493090605, --[[BanterDef LuigiBoss_04 Text section:Banters_Local_Fleatown/LuigiBoss_04 Luigi is Boss and the mercs have supported him voice:Luigi]] "Hey, amici! I hope my bambinos are not giving you trouble, yeah?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set( "Completed", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and quest.SupportLuigi
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_04",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss, because the mercs just killed the old Boss",
Lines = {
PlaceObj('BanterLine', {
'Character', "Luigi",
'Text', T(553962753074, --[[BanterDef LuigiBoss_05 Text section:Banters_Local_Fleatown/LuigiBoss_05 Luigi is Boss, because the mercs just killed the old Boss voice:Luigi]] "Ciao! I would offer you some food, but you need to be somewhere else... Right now. Don't let me keep you. Ciao!"),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Shadow",
'Text', T(403713838023, --[[BanterDef LuigiBoss_05 Text section:Banters_Local_Fleatown/LuigiBoss_05 voice:Shadow]] "I think we just got the brush-off."),
}),
PlaceObj('BanterLineThin', {
'Character', "MD",
'Text', T(426699394684, --[[BanterDef LuigiBoss_05 Text section:Banters_Local_Fleatown/LuigiBoss_05 voice:MD]] "But we don't have anywhere we need... Oh. You want us to leave. Got it."),
}),
PlaceObj('BanterLineThin', {
'Character', "Blood",
'Text', T(815844063450, --[[BanterDef LuigiBoss_05 Text section:Banters_Local_Fleatown/LuigiBoss_05 voice:Blood]] "We won't be getting home-cooked Italian food? Oh man, we failed this mission BIG time!"),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = true,
SupportBlaubert = false,
SupportLuigi = false,
SupportNoOne = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and not quest.SupportBlaubert and not quest.SupportLuigi and not quest.SupportNoOne
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_05",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss, because the mercs just killed the old Boss",
Lines = {
PlaceObj('BanterLine', {
'Annotation', 'Vaffenculo - Italian swear meaning "go fuck yourself"',
'Character', "Luigi",
'Text', T(576050687085, --[[BanterDef LuigiBoss_06 Text section:Banters_Local_Fleatown/LuigiBoss_06 Vaffenculo - Italian swear meaning "go fuck yourself" Luigi is Boss, because the mercs just killed the old Boss voice:Luigi]] "I would invite you to stay, but you killed <em>Blaubert</em> without giving me a FUCKING CHANCE to kill him myself. Vaffanculo!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = true,
SupportBlaubert = false,
SupportLuigi = false,
SupportNoOne = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and not quest.SupportBlaubert and not quest.SupportLuigi and not quest.SupportNoOne
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_06",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss, Mollie has left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Luigi",
'Text', T(942134186031, --[[BanterDef LuigiBoss_07 Text section:Banters_Local_Fleatown/LuigiBoss_07 Luigi is Boss, Mollie has left voice:Luigi]] "I wonder what happened to that pretty bambina that was always hanging around Blaubert. She was quite a treat, eh?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set( "Completed", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and quest.SupportLuigi
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set( "Completed", "Mollie_return" ),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return quest.Completed and quest.Mollie_return
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_07",
})
PlaceObj('BanterDef', {
Comment = "Luigi is Boss",
Lines = {
PlaceObj('BanterLine', {
'Character', "Luigi",
'Text', T(820210937658, --[[BanterDef LuigiBoss_08 Text section:Banters_Local_Fleatown/LuigiBoss_08 Luigi is Boss voice:Luigi]] "So much to do, ragazzi, so much to do. Blaubert, god rest his soul, let a lot of kneecaps go unbusted, so I gotta make up for lost time, capiche?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set( "Completed" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "LuigiBoss_08",
})
PlaceObj('BanterDef', {
Comment = "Smiley dead or left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Mollie",
'Text', T(633465533728, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_01 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_01 Smiley dead or left voice:Mollie]] "Hey! How are you? You like the mansion? Isn't it magnificent?"),
}),
PlaceObj('BanterLine', {
'Character', "Buns",
'Text', T(801710559025, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_01 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_01 Smiley dead or left voice:Buns]] "It is a very good example of kitsch."),
'Optional', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = {
BossDead = false,
Mollie_stay = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead and quest.Mollie_stay
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Smiley",
Vars = {
SmileyDead = true,
Smiley_leave = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return quest.SmileyDead or quest.Smiley_leave
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleBanter_Mollie_AfterSm_BossAlive_01",
})
PlaceObj('BanterDef', {
Comment = "Smiley dead or left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Mollie",
'Text', T(954641708473, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_02 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_02 Smiley dead or left voice:Mollie]] "Booboo is always busy, he just worries too much! That's why I try to distract him whenever I can."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = {
BossDead = false,
Mollie_stay = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead and quest.Mollie_stay
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Smiley",
Vars = {
SmileyDead = true,
Smiley_leave = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return quest.SmileyDead or quest.Smiley_leave
end,
}),
PlaceObj('CombatIsActive', {
Negate = true,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleBanter_Mollie_AfterSm_BossAlive_02",
})
PlaceObj('BanterDef', {
Comment = "Smiley dead or left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Mollie",
'Text', T(495935094469, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_03 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_03 Smiley dead or left voice:Mollie]] "Do you like my new skirt? Booboo says it's revealing too much, but I think he likes what he sees."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = {
BossDead = false,
Mollie_stay = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead and quest.Mollie_stay
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Smiley",
Vars = {
SmileyDead = true,
Smiley_leave = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return quest.SmileyDead or quest.Smiley_leave
end,
}),
PlaceObj('CombatIsActive', {
Negate = true,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleBanter_Mollie_AfterSm_BossAlive_03",
})
PlaceObj('BanterDef', {
Comment = "Smiley left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Mollie",
'Text', T(118476086363, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_04 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_04 Smiley left voice:Mollie]] "I wonder where Smiley is. I hope he is happy and well!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = {
BossDead = false,
Mollie_stay = true,
SmileyDead = false,
Smiley_leave = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead and quest.Mollie_stay and not quest.SmileyDead and quest.Smiley_leave
end,
}),
PlaceObj('CombatIsActive', {
Negate = true,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleBanter_Mollie_AfterSm_BossAlive_04",
})
PlaceObj('BanterDef', {
Comment = "Smiley dead or left",
Lines = {
PlaceObj('BanterLine', {
'Character', "Mollie",
'Text', T(322108184818, --[[BanterDef RimvilleBanter_Mollie_AfterSm_BossAlive_05 Text section:Banters_Local_Fleatown/RimvilleBanter_Mollie_AfterSm_BossAlive_05 Smiley dead or left voice:Mollie]] "Sometimes I miss Smiley. Don't tell Booboo! He gets jealous."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = {
BossDead = false,
Mollie_stay = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead and quest.Mollie_stay
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Smiley",
Vars = {
SmileyDead = true,
Smiley_leave = true,
},
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return quest.SmileyDead or quest.Smiley_leave
end,
}),
PlaceObj('CombatIsActive', {
Negate = true,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleBanter_Mollie_AfterSm_BossAlive_05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(649172765064, --[[BanterDef RimvilleJoseph_01 Text section:Banters_Local_Fleatown/RimvilleJoseph_01 voice:PrisonerJoseph]] "Don't worry, <em>Boss Luigi</em> will tell you what to do right after he talks with <em>Boss Blaubert</em>."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Completed and not quest.Failed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(669558952007, --[[BanterDef RimvilleJoseph_02 Text section:Banters_Local_Fleatown/RimvilleJoseph_02 voice:PrisonerJoseph]] "<em>Boss Blaubert</em> is family! I have a <em>Thing</em> for family."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = false,
Failed = false,
LuigiMentionBoss = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Completed and not quest.Failed and quest.LuigiMentionBoss
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(172830798529, --[[BanterDef RimvilleJoseph_03 Text section:Banters_Local_Fleatown/RimvilleJoseph_03 voice:PrisonerJoseph]] "I got the <em>Thing</em> ready."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Mouse",
'Text', T(920105163656, --[[BanterDef RimvilleJoseph_03 Text section:Banters_Local_Fleatown/RimvilleJoseph_03 voice:Mouse]] "You just keep your <em>Thing</em> away from me."),
}),
PlaceObj('BanterLineThin', {
'Character', "Grizzly",
'Text', T(663947900158, --[[BanterDef RimvilleJoseph_03 Text section:Banters_Local_Fleatown/RimvilleJoseph_03 voice:Grizzly]] "You just keep your <em>Thing</em> in your pants, mister."),
}),
PlaceObj('BanterLineThin', {
'Character', "Raven",
'Text', T(480895566414, --[[BanterDef RimvilleJoseph_03 Text section:Banters_Local_Fleatown/RimvilleJoseph_03 voice:Raven]] "You just keep your <em>Thing</em> where I can see it... On second thoughts, forget I said that."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
LuigiRewardGiven = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiRewardGiven
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(823362864269, --[[BanterDef RimvilleJoseph_04 Text section:Banters_Local_Fleatown/RimvilleJoseph_04 voice:PrisonerJoseph]] "<em>Boss Luigi</em> always knows what to do. "),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(917218914222, --[[BanterDef RimvilleJoseph_05 Text section:Banters_Local_Fleatown/RimvilleJoseph_05 voice:PrisonerJoseph]] "Just listen to <em>Boss Luigi</em> and he will explain. If you don't understand, ask him again and he will yell a bit and then explain slow. He is very good... explainerist."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "PrisonerJoseph",
'Text', T(120933653073, --[[BanterDef RimvilleJoseph_06 Text section:Banters_Local_Fleatown/RimvilleJoseph_06 voice:PrisonerJoseph]] "<em>Boss Luigi</em> does the thinking, I do the, er, the Thinging."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Annotation', "in an honest voice",
'Character', "PrisonerJoseph",
'Text', T(656968802056, --[[BanterDef RimvilleJoseph_07 Text section:Banters_Local_Fleatown/RimvilleJoseph_07 in an honest voice voice:PrisonerJoseph]] "<em>Boss Blaubert</em> was a very good Boss. I will bring fresh flowers to him every week."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set( "Completed", "Failed" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed or quest.Failed
end,
}),
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_FleatownBoss",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleJoseph_07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(755676049152, --[[BanterDef RimvilleThugMale_01 Text section:Banters_Local_Fleatown/RimvilleThugMale_01 voice:ThugMale_1]] "You have no business here!... Or do you?"),
}),
},
conditions = {
PlaceObj('SectorInWarningState', {}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
SupportLuigi = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.SupportLuigi
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_01",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(203677239999, --[[BanterDef RimvilleThugMale_02 Text section:Banters_Local_Fleatown/RimvilleThugMale_02 voice:ThugMale_1]] "Hey! Are you friends with that little shithead who was hanging out with Miss <em>Mollie</em>? If you see him, tell him she's having a much better time with the <em>Boss</em>!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
LaBouePartDone = false,
MollieDead = false,
SmileyDead = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.LaBouePartDone and not quest.MollieDead and not quest.SmileyDead
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set({
LuigiSaved = false,
SupportBlaubert = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiSaved or quest.SupportBlaubert
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_02",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(671326700181, --[[BanterDef RimvilleThugMale_03 Text section:Banters_Local_Fleatown/RimvilleThugMale_03 voice:ThugMale_1]] "Do you see this gun? I have shot at many people with it!"),
}),
PlaceObj('BanterLine', {
'Character', "Raven",
'Text', T(324033128942, --[[BanterDef RimvilleThugMale_03 Text section:Banters_Local_Fleatown/RimvilleThugMale_03 voice:Raven]] "Did you hit them?"),
'Optional', true,
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(814637381500, --[[BanterDef RimvilleThugMale_03 Text section:Banters_Local_Fleatown/RimvilleThugMale_03 voice:ThugMale_1]] "I hit at least three of them!"),
'playOnce', true,
}),
PlaceObj('BanterLine', {
'Character', "Nails",
'Text', T(690371032055, --[[BanterDef RimvilleThugMale_03 Text section:Banters_Local_Fleatown/RimvilleThugMale_03 voice:Nails]] "Whoa, we got a badass over here!"),
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_03",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(474643488165, --[[BanterDef RimvilleThugMale_04 Text section:Banters_Local_Fleatown/RimvilleThugMale_04 voice:ThugMale_1]] "Um, welcome to Rimville, I guess."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set( "BossInvited", "SupportBlaubert", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited or quest.SupportBlaubert or quest.SupportLuigi
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_04",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(576738185900, --[[BanterDef RimvilleThugMale_05 Text section:Banters_Local_Fleatown/RimvilleThugMale_05 voice:ThugMale_1]] "Uh, so you are friends with the <em>Boss</em> now, huh?"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set( "BossInvited", "SupportBlaubert", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited or quest.SupportBlaubert or quest.SupportLuigi
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_05",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_2",
'Text', T(289744202923, --[[BanterDef RimvilleThugMale_06 Text section:Banters_Local_Fleatown/RimvilleThugMale_06 voice:ThugMale_2]] "Who's there?! Ah, it's you."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set( "BossInvited", "SupportBlaubert", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited or quest.SupportBlaubert or quest.SupportLuigi
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_06",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_2",
'Text', T(685331791686, --[[BanterDef RimvilleThugMale_07 Text section:Banters_Local_Fleatown/RimvilleThugMale_07 voice:ThugMale_2]] "Miss <em>Mollie</em> said not to step on the flowers."),
}),
PlaceObj('BanterLine', {
'Character', "Fidel",
'Text', T(217985373829, --[[BanterDef RimvilleThugMale_07 Text section:Banters_Local_Fleatown/RimvilleThugMale_07 voice:Fidel]] "She say something about planting mines in flowers? No? Okay then, Fidel knows what to do."),
'Optional', true,
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
BossInvited = true,
SupportLuigi = false,
SupportNoOne = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited and not quest.SupportLuigi and not quest.SupportNoOne
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set({
LuigiSaved = false,
SupportBlaubert = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiSaved or quest.SupportBlaubert
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
MollieDead = false,
Mollie_return = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.MollieDead and not quest.Mollie_return
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_07",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(223526387694, --[[BanterDef RimvilleThugMale_08 Text section:Banters_Local_Fleatown/RimvilleThugMale_08 voice:ThugMale_1]] "Miss <em>Mollie</em> said you have to take your shoes off when you enter the house."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Grunty",
'Text', T(836713405449, --[[BanterDef RimvilleThugMale_08 Text section:Banters_Local_Fleatown/RimvilleThugMale_08 voice:Grunty]] "That is good to hear. I need to apply more foot powder anyway."),
}),
PlaceObj('BanterLineThin', {
'Character', "Gus",
'Text', T(186232268009, --[[BanterDef RimvilleThugMale_08 Text section:Banters_Local_Fleatown/RimvilleThugMale_08 voice:Gus]] "She's gonna change her mind after she gets a whiff of these socks, Woodchip."),
}),
PlaceObj('BanterLineThin', {
'Character', "Tex",
'Text', T(413862839706, --[[BanterDef RimvilleThugMale_08 Text section:Banters_Local_Fleatown/RimvilleThugMale_08 voice:Tex]] "She is lucky. These boots only come off feet for pretty ladies."),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
BossInvited = true,
SupportLuigi = false,
SupportNoOne = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited and not quest.SupportLuigi and not quest.SupportNoOne
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set({
LuigiSaved = false,
SupportBlaubert = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiSaved or quest.SupportBlaubert
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
MollieDead = false,
Mollie_return = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.MollieDead and not quest.Mollie_return
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_08",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(697888247526, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:ThugMale_1]] "Miss <em>Mollie</em> said to be careful around the statues."),
}),
PlaceObj('BanterLine', {
'Character', "ThugMale_2",
'Text', T(585458060589, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:ThugMale_2]] "Yeah, no peeing on them."),
'Optional', true,
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Nails",
'Text', T(254442007833, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:Nails]] "She ain't the boss of me."),
}),
PlaceObj('BanterLineThin', {
'Character', "Fox",
'Text', T(797092982692, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:Fox]] "That seems an oddly specific request."),
}),
PlaceObj('BanterLineThin', {
'Character', "Hitman",
'Text', T(497057920356, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:Hitman]] "You know, I wasn't even thinking about it, but now that you brought it up, I kinda want to pee on a statue."),
}),
PlaceObj('BanterLineThin', {
'Character', "Steroid",
'Text', T(127819204555, --[[BanterDef RimvilleThugMale_09 Text section:Banters_Local_Fleatown/RimvilleThugMale_09 voice:Steroid]] "No one tells ME where I cannot pee! Especially not this little Miss Mollie girl."),
}),
},
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
BossInvited = true,
SupportLuigi = false,
SupportNoOne = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossInvited and not quest.SupportLuigi and not quest.SupportNoOne
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set({
LuigiSaved = false,
SupportBlaubert = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiSaved or quest.SupportBlaubert
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
MollieDead = false,
Mollie_return = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.MollieDead and not quest.Mollie_return
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_09",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Jailbird",
'Text', T(148023421819, --[[BanterDef RimvilleThugMale_10 Text section:Banters_Local_Fleatown/RimvilleThugMale_10 voice:Jailbird]] "<em>Boss Luigi</em> is so much better than <em>Boss Blaubert</em>! He's a real Italian, you see."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_10",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Jailbird",
'Text', T(851097536331, --[[BanterDef RimvilleThugMale_11 Text section:Banters_Local_Fleatown/RimvilleThugMale_11 voice:Jailbird]] "<em>Joseph</em> is like a child inside... a child inside a bulldozer, that is. That's just a friendly warning to play nice."),
}),
},
conditions = {
PlaceObj('UnitIsOnMap', {
TargetUnit = "PrisonerJoseph",
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_11",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Annotation', "with pride",
'Character', "Jailbird",
'Text', T(426854649119, --[[BanterDef RimvilleThugMale_12 Text section:Banters_Local_Fleatown/RimvilleThugMale_12 with pride voice:Jailbird]] "<em>Boss Blaubert</em> wasn't a bad guy. That was his problem. But <em>Boss Luigi</em> - he is the baddest!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = true,
Failed = false,
SupportLuigi = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and not quest.Failed and quest.SupportLuigi
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_12",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(983110228231, --[[BanterDef RimvilleThugMale_13 Text section:Banters_Local_Fleatown/RimvilleThugMale_13 voice:ThugMale_1]] "I heard that back at the time when Boss Blaubert's whore was running the show here, you could be scolded for pissing on the flowers!"),
}),
PlaceObj('BanterLine', {
'Annotation', "with pride",
'Character', "ThugMale_1",
'Text', T(904592902660, --[[BanterDef RimvilleThugMale_13 Text section:Banters_Local_Fleatown/RimvilleThugMale_13 with pride voice:ThugMale_1]] "Now they bust your kneecaps if you do it. That's what I call a tough Boss!"),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Completed = true,
Failed = false,
SupportLuigi = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.Completed and not quest.Failed and quest.SupportLuigi
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_13",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "Jailbird",
'Text', T(192777920115, --[[BanterDef RimvilleThugMale_14 Text section:Banters_Local_Fleatown/RimvilleThugMale_14 voice:Jailbird]] "I'd still be in jail if it wasn't for <em>Boss Luigi</em>."),
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
LuigiSaved = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed and quest.LuigiSaved
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_14",
})
PlaceObj('BanterDef', {
Comment = "entering through a door to Rimville",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(972534311487, --[[BanterDef RimvilleThugMale_15 Text section:Banters_Local_Fleatown/RimvilleThugMale_15 entering through a door to Rimville voice:ThugMale_1]] "The fuck you think you're going?!"),
}),
},
conditions = {
PlaceObj('SectorInWarningState', {
Negate = true,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
BossInvited = false,
Completed = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.BossInvited and not quest.Completed and not quest.Failed
end,
}),
PlaceObj('PlayerIsInSectors', {
Sectors = {
"I9",
},
}),
},
group = "Banters_Local_Fleatown",
id = "RimvilleThugMale_15",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(842490514904, --[[BanterDef ThugMale_11 Text section:Banters_Local_Fleatown/ThugMale_11 voice:ThugMale_1]] "Don't think we are the same as those Legion weaklings. Mess with the <em>Boss</em> and you're not leaving Fleatown in one piece."),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Fleatown",
Condition = "<",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Luigi",
Vars = set({
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.Failed
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_11",
})
PlaceObj('BanterDef', {
Comment = ">> Loot",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(500914930122, --[[BanterDef ThugMale_12_Loyalty Text section:Banters_Local_Fleatown/ThugMale_12_Loyalty >> Loot voice:ThugMale_1]] "Lots of floaters to fish these days, all thanks to you! Here is your share, boss."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Buns",
'Text', T(264627122388, --[[BanterDef ThugMale_12_Loyalty Text section:Banters_Local_Fleatown/ThugMale_12_Loyalty voice:Buns]] "Please, tell me you cleaned that."),
}),
PlaceObj('BanterLineThin', {
'Character', "Vicki",
'Text', T(397559330987, --[[BanterDef ThugMale_12_Loyalty Text section:Banters_Local_Fleatown/ThugMale_12_Loyalty voice:Vicki]] "Unless you caught a 1956 Aston Martin DBR1, I'm not interested."),
}),
PlaceObj('BanterLineThin', {
'Character', "Scope",
'Text', T(427175339473, --[[BanterDef ThugMale_12_Loyalty Text section:Banters_Local_Fleatown/ThugMale_12_Loyalty voice:Scope]] "Uh... Thank you, love. You REALLY didn't have to."),
}),
},
'playOnce', true,
}),
},
Once = true,
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Fleatown",
Condition = ">=",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_12_Loyalty",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(642829137294, --[[BanterDef ThugMale_14 Text section:Banters_Local_Fleatown/ThugMale_14 voice:ThugMale_1]] "Friends of the Boss are friends indeed!"),
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set( "BossPartnership", "SupportLuigi" ),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return quest.BossPartnership or quest.SupportLuigi
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_14",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_2",
'Text', T(826512910247, --[[BanterDef ThugMale_16 Text section:Banters_Local_Fleatown/ThugMale_16 voice:ThugMale_2]] "Don't touch the merchandise. The market is open for business if you are interested. "),
}),
},
conditions = {
PlaceObj('PlayerIsInSectors', {
Sectors = {
"H9",
},
}),
PlaceObj('CityHasLoyalty', {
Amount = 40,
City = "Fleatown",
Condition = "<",
}),
PlaceObj('PlayerIsInSectors', {
Negate = true,
Sectors = {
"I9",
},
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_16",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_2",
'Text', T(856177222380, --[[BanterDef ThugMale_17 Text section:Banters_Local_Fleatown/ThugMale_17 voice:ThugMale_2]] "There are sheep who do mining, and there are lions that serve <em>Boss Blaubert</em>. Guess what I am."),
}),
PlaceObj('BanterLine', {
'MultipleTexts', true,
'AnyOfThese', {
PlaceObj('BanterLineThin', {
'Character', "Flay",
'Text', T(489112565621, --[[BanterDef ThugMale_17 Text section:Banters_Local_Fleatown/ThugMale_17 voice:Flay]] "Lions serve no one, you imbecile."),
}),
PlaceObj('BanterLineThin', {
'Character', "Steroid",
'Text', T(707740704061, --[[BanterDef ThugMale_17 Text section:Banters_Local_Fleatown/ThugMale_17 voice:Steroid]] "You think I am stupid? Ha! Sheep do not know how to mine."),
}),
PlaceObj('BanterLineThin', {
'Character', "Ice",
'Text', T(704565235083, --[[BanterDef ThugMale_17 Text section:Banters_Local_Fleatown/ThugMale_17 voice:Ice]] "An idiot?"),
}),
},
'playOnce', true,
}),
},
conditions = {
PlaceObj('SectorCheckCity', {
city = "Fleatown",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
BossDead = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.BossDead
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Luigi",
Vars = set({
LuigiSaved = false,
SupportBlaubert = true,
}),
__eval = function ()
local quest = gv_Quests['Luigi'] or QuestGetState('Luigi')
return not quest.LuigiSaved or quest.SupportBlaubert
end,
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_17",
})
PlaceObj('BanterDef', {
Comment = ">> Lead_Rumor (Smiley)",
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(756419466513, --[[BanterDef ThugMale_18 Text section:Banters_Local_Fleatown/ThugMale_18 >> Lead_Rumor (Smiley) voice:ThugMale_1]] "To hell with that asshole who kidnapped the <em>Carnival Queen</em>! I was third on the list at <em>Le Lys Rouge</em> when they told us someone snatched her away. It's not fair to skip the line like that!"),
'playOnce', true,
}),
},
conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Smiley",
Vars = set({
Completed = false,
Failed = false,
}),
__eval = function ()
local quest = gv_Quests['Smiley'] or QuestGetState('Smiley')
return not quest.Completed and not quest.Failed
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('CheckGameState', {
GameState = "Sunset",
}),
PlaceObj('CheckGameState', {
GameState = "Night",
}),
},
}),
PlaceObj('PlayerControlSectors', {
Amount = 8,
Condition = ">=",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_18",
})
PlaceObj('BanterDef', {
Lines = {
PlaceObj('BanterLine', {
'Character', "ThugMale_1",
'Text', T(560709510972, --[[BanterDef ThugMale_19 Text section:Banters_Local_Fleatown/ThugMale_19 voice:ThugMale_1]] "Go bother someone else!"),
}),
},
conditions = {
PlaceObj('CityHasLoyalty', {
Amount = 50,
City = "Fleatown",
Condition = "<",
}),
},
disabledInConflict = true,
group = "Banters_Local_Fleatown",
id = "ThugMale_19",
})
|