File size: 51,184 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "Deedee",
DefaultActor = "Deedee",
Parameters = {
PlaceObj('PresetParamNumber', {
'Name', "Parts_High",
'Value', 25,
'Tag', "<Parts_High>",
}),
PlaceObj('PresetParamNumber', {
'Name', "Parts_Low",
'Value', 15,
'Tag', "<Parts_Low>",
}),
},
group = "Ernie",
id = "Deedee",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "first",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Deedee KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(388875162568, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Greeting]] "It worked! See? It worked! Oh, hi. I'm <em>Deedee Bombastic</em>! You here to pick up some boom-toys? I just sort of blew up the last batch, but I can make some more!"),
}),
},
NoBackOption = true,
id = "Greeting",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "<root>",
Keyword = "Are you okay?",
KeywordT = T(242677370659, --[[Conversation Deedee KeywordT]] "Are you okay?"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(463929266040, --[[Conversation Deedee Text voice:Omryn section:Deedee keyword:Are you okay?]] "Is very bad to make big explosion in small space. Are you hurt?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(585131381791, --[[Conversation Deedee Text voice:MD section:Deedee keyword:Are you okay?]] "Are you hurt? Any dizziness, ringing in the ears?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Thor",
Text = T(279285702252, --[[Conversation Deedee Text voice:Thor section:Deedee keyword:Are you okay?]] "Are you on fire a little bit or is that just your aura?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(648071935199, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Are you okay?]] "Oh, don't worry about me! Explosions are common around here. I put a blast shield under the workbench and I've gotten really good at vaulting over it."),
}),
},
StoryBranchIcon = "conversation_friendly",
id = "Friendly",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "<root>",
Keyword = "Nice house...",
KeywordT = T(795796153744, --[[Conversation Deedee KeywordT]] "Nice house..."),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(664332341259, --[[Conversation Deedee Text voice:Wolf section:Deedee keyword:Nice house...]] 'Interesting place you got here. The furnishings say "take cover" while the scorch marks on the wall say "it probably won\'t matter".'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(278045926775, --[[Conversation Deedee Text voice:Buns section:Deedee keyword:Nice house...]] "Though I have to point out there isn't much left of it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Vicki",
Text = T(225291837518, --[[Conversation Deedee Text voice:Vicki section:Deedee keyword:Nice house...]] "This place has seen more backfires than my garage. I like it!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(114758288414, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Nice house...]] "Thanks! Flame retardant paint! I make my own. I have to. The off-the-shelf stuff isn't strong enough."),
}),
},
StoryBranchIcon = "conversation_sarcastic",
id = "Sarcastic",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "<root>",
Keyword = "Watch out with that!",
KeywordT = T(279389344548, --[[Conversation Deedee KeywordT]] "Watch out with that!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(492081531985, --[[Conversation Deedee Text voice:Meltdown section:Deedee keyword:Watch out with that!]] "Careful with that, dumbass!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(430944505664, --[[Conversation Deedee Text voice:Barry section:Deedee keyword:Watch out with that!]] "Explosives are not boom-toys! Explosives are just... boom!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(344206798941, --[[Conversation Deedee Text voice:Wolf section:Deedee keyword:Watch out with that!]] "You trying to get yourself killed?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(362575615024, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Watch out with that!]] "What are you so angry about? No one got hurt. When something explodes, people are usually only angry at me because they lost their favorite hand. You didn't even lose a finger!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(908093182581, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Watch out with that!]] "Fidel lose finger, you lose foot. Both of them."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(260813439218, --[[Conversation Deedee Text voice:Red section:Deedee keyword:Watch out with that!]] "And let's keep it that way, lass!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(568343595601, --[[Conversation Deedee Text voice:Grizzly section:Deedee keyword:Watch out with that!]] "True, but I might have gained a few gray hairs."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_threaten",
id = "Angry",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Comment = "repeated",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Deedee KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(888916594123, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Greeting2]] "Oh hi! Bombastic's the name, boombastic's the game! Get it?"),
}),
},
id = "Greeting2",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DeedeeExplosives",
QuestId = "ErnieSideQuests",
}),
},
Keyword = "Do you sell explosives?",
KeywordT = T(822978725697, --[[Conversation Deedee KeywordT]] "Do you sell explosives?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(133944997432, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Do you sell explosives?]] "Yeah, but I'm low on supplies. Bring me <em>parts</em>, so I can create some <em>boom-toys</em>! I can make the boring types, but also some novel designs!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(259686519463, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Do you sell explosives?]] "Oh, oh! Fidel wants to see!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(475287020390, --[[Conversation Deedee Text voice:Ice section:Deedee keyword:Do you sell explosives?]] "Imma stick with the boring ones. Plannin' to keep my arms and legs where they are."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(299958726808, --[[Conversation Deedee Text voice:Kalyna section:Deedee keyword:Do you sell explosives?]] "Oh! A quest! I will gather up all the parts on the island!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_trade",
id = "DoYouSellExplosives",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Comment = "explosion",
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Fidel",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set( "DeedeeExplosives" ),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return quest.DeedeeExplosives
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
Enabled = false,
PhraseId = "MakeUsSomeExplosives_Default",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
Enabled = false,
PhraseId = "Makeussomeexplosives_NoPartsDefault",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "MakeUsSomeExplosives_Improved",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Makeussomeexplosives_NoPartsImproved",
}),
},
Keyword = "We can improve the design",
KeywordT = T(327678778994, --[[Conversation Deedee KeywordT]] "We can improve the design"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(290426013069, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:We can improve the design]] "This is cute design, but Uncle Fidel show you how <em>save parts</em>. See this safety wire? Only needed for defusing and who wants that? Make room for more boom!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(348585236157, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:We can improve the design]] "Wow, that sounds super dangerous! I can't believe I didn't think of it. Thanks!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(565171697921, --[[Conversation Deedee Text voice:DrQ section:Deedee keyword:We can improve the design]] "This advice seems of profoundly dubious merit."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(748960352227, --[[Conversation Deedee Text voice:Mouse section:Deedee keyword:We can improve the design]] "There's a little voice in my head that screams \"bad idea\"..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(524552415868, --[[Conversation Deedee Text voice:Raven section:Deedee keyword:We can improve the design]] "I just got a sinking feeling. Did anyone else just get a sinking feeling?"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
id = "WeCanImproveTheDesign",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set( "DeedeeExplosives" ),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return quest.DeedeeExplosives
end,
}),
},
Effects = {
PlaceObj('SectorGrantIntel', {
sector_id = "H3",
}),
},
Keyword = "Where do we find parts?",
KeywordT = T(885691479423, --[[Conversation Deedee KeywordT]] "Where do we find parts?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(390464785016, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Where do we find parts?]] "Have you tried <em>the Rust</em>? That bunker is full of useful stuff just waiting to be conjured into beautiful explosions!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "H3_Underground",
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(298478786364, --[[Conversation Deedee Text voice:Raider section:Deedee keyword:Where do we find parts?]] "It's also full of your Legion friends, I presume."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "H3_Underground",
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(415513620959, --[[Conversation Deedee Text voice:Red section:Deedee keyword:Where do we find parts?]] "This bunker would nae be occupied by soldiers, would it?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('SectorCheckOwner', {
Negate = true,
sector_id = "H3_Underground",
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(116201517125, --[[Conversation Deedee Text voice:Omryn section:Deedee keyword:Where do we find parts?]] "Bunker? Maybe food in there, yes? Maybe bad guys, too."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(820592462879, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Where do we find parts?]] "There may be some Legion boys around, but they're not that bad when you get to know them. Wait, I'll draw you a map!"),
}),
},
id = "WheredowefindParts",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasItem', {
Amount = 25,
ItemId = "Parts",
Negate = true,
param_bindings = {
Amount = "Parts_High",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set( "DeedeeExplosives" ),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return quest.DeedeeExplosives
end,
}),
},
Keyword = "Make us some explosives",
KeywordT = T(954966894269, --[[Conversation Deedee KeywordT]] "Make us some explosives"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(460112610932, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Make us some explosives]] "Gladly! But I must have something to work with. I can't make explosives out of thin air."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(555613892339, --[[Conversation Deedee Text voice:Larry section:Deedee keyword:Make us some explosives]] "Ha! Amateur."),
}),
},
}),
},
}),
},
PhraseRolloverText = T(488861110344, --[[Conversation Deedee PhraseRolloverText]] "<color EmStyle>25 Parts</color> required"),
StoryBranchIcon = "conversation_action",
id = "Makeussomeexplosives_NoPartsDefault",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('UnitSquadHasItem', {
Amount = 15,
ItemId = "Parts",
Negate = true,
param_bindings = {
Amount = "Parts_Low",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set( "DeedeeExplosives" ),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return quest.DeedeeExplosives
end,
}),
},
Keyword = "Make us some explosives",
KeywordT = T(954966894269, --[[Conversation Deedee KeywordT]] "Make us some explosives"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(460112610932, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Make us some explosives]] "Gladly! But I must have something to work with. I can't make explosives out of thin air."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(555613892339, --[[Conversation Deedee Text voice:Larry section:Deedee keyword:Make us some explosives]] "Ha! Amateur."),
}),
},
}),
},
}),
},
PhraseRolloverText = T(982637606002, --[[Conversation Deedee PhraseRolloverText]] "<color EmStyle>15 Parts</color> required"),
StoryBranchIcon = "conversation_action",
id = "Makeussomeexplosives_NoPartsImproved",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "default option",
Conditions = {
PlaceObj('UnitSquadHasItem', {
Amount = 25,
ItemId = "Parts",
param_bindings = {
Amount = "Parts_High",
},
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set( "DeedeeExplosives" ),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return quest.DeedeeExplosives
end,
}),
},
Effects = {
PlaceObj('UnitGrantItem', {
LootTableId = "DeedeeExplosives",
param_bindings = {},
}),
PlaceObj('UnitTakeItem', {
Amount = 25,
AnySquad = true,
ItemId = "Parts",
param_bindings = {
Amount = "Parts_High",
},
}),
PlaceObj('QuestSetVariableBool', {
Prop = "DeedeeExplosives",
QuestId = "ErnieSideQuests",
Set = false,
}),
},
Keyword = "Make us some explosives",
KeywordT = T(954966894269, --[[Conversation Deedee KeywordT]] "Make us some explosives"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(536759496951, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Make us some explosives]] "Aww, is it Christmas already? Thank you! Here, let's trade - parts for boom-toys!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Ice",
Text = T(237524957773, --[[Conversation Deedee Text voice:Ice section:Deedee keyword:Make us some explosives]] "Then I say we should be goin' already."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(397180425004, --[[Conversation Deedee Text voice:Barry section:Deedee keyword:Make us some explosives]] "I confess, I am curious. I usually order out of catalogue."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(960095550001, --[[Conversation Deedee Text voice:Meltdown section:Deedee keyword:Make us some explosives]] "Know a guy back home that runs the same kind of operation out of the back of his pick-up."),
}),
},
}),
},
}),
},
PhraseRolloverText = "",
StoryBranchIcon = "conversation_action",
id = "MakeUsSomeExplosives_Default",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "Fidel enabled",
Conditions = {
PlaceObj('UnitSquadHasItem', {
Amount = 15,
ItemId = "Parts",
param_bindings = {
Amount = "Parts_Low",
},
}),
},
Effects = {
PlaceObj('UnitGrantItem', {
LootTableId = "DeedeeExplosives",
param_bindings = {},
}),
PlaceObj('UnitTakeItem', {
Amount = 15,
AnySquad = true,
ItemId = "Parts",
param_bindings = {
Amount = "Parts_Low",
},
}),
PlaceObj('QuestSetVariableBool', {
Prop = "DeedeeExplosives",
QuestId = "ErnieSideQuests",
Set = false,
}),
},
Enabled = false,
Keyword = "Make us some explosives",
KeywordT = T(954966894269, --[[Conversation Deedee KeywordT]] "Make us some explosives"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(854746601877, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Make us some explosives]] "Aww, is it Christmas already? Thank you! Here, this is my present for Uncle Fidel and his friends!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(299751977373, --[[Conversation Deedee Text voice:Mouse section:Deedee keyword:Make us some explosives]] 'Oh my god, Fidel is totally the "fun uncle" who sets fire to the backyard at family get-togethers.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(387860591529, --[[Conversation Deedee Text voice:Fox section:Deedee keyword:Make us some explosives]] '"Uncle Fidel"?! Is this how their kind reproduces?'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Igor",
Text = T(293325695673, --[[Conversation Deedee Text voice:Igor section:Deedee keyword:Make us some explosives]] "Fidel is uncle? Okay. Let us toast to our uncles!"),
}),
},
}),
},
}),
},
PhraseRolloverText = "",
StoryBranchIcon = "conversation_action",
id = "MakeUsSomeExplosives_Improved",
}),
PlaceObj('ConversationPhrase', {
Keyword = "Tell us...",
KeywordT = T(374820773907, --[[Conversation Deedee KeywordT]] "Tell us..."),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(678921777037, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Tell us...]] "Talk fast, I just set the timer! Hehehe, I'm <em>joking</em>! I don't even use timers! Hehehe. <em>Explosives</em> are so much fun!"),
}),
},
id = "Chat",
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Chat.Basil",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Handsup1",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Chat.StophelpingtheLegion_success",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Chat.StophelpingtheLegion_failure",
}),
},
Keyword = 'Why "Boombastic"?',
KeywordT = T(752664871428, --[[Conversation Deedee KeywordT]] 'Why "Boombastic"?'),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(392992508038, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Why "Boombastic"?]] "That's what they call me! Well, at least that's what I call myself. That grumpy old guy <em>Basil</em> calls me a bunch of other names, but half of them I don't even understand. What does \"whack job\" mean anyway?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(357614346671, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Why "Boombastic"?]] "Whack job means you do good job wrecking stuff. Whack job is best job!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(849955228634, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Why "Boombastic"?]] "At least those <em>Legion</em> boys respect my work! They are very careful and polite around my workshop, and they bring me useful parts for explosives!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(966043019025, --[[Conversation Deedee Text voice:Red section:Deedee keyword:Why "Boombastic"?]] "Sorry to disappoint ya, lassie, but yar chums willnae be able to show up after we're done with 'em."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(556302062434, --[[Conversation Deedee Text voice:Blood section:Deedee keyword:Why "Boombastic"?]] "Hate to break it to you, but your clientele on this island is about to get a whole lot smaller."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(784879969485, --[[Conversation Deedee Text voice:Livewire section:Deedee keyword:Why "Boombastic"?]] "Honestly - and I do not mean to judge - I think you should consider looking for better clientele."),
}),
},
}),
},
}),
},
id = "Boombastic",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set({
DeedeeDissuaded = false,
}),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return not quest.DeedeeDissuaded
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TakeTheFortress",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['TakeTheFortress'] or QuestGetState('TakeTheFortress')
return not quest.Completed
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
HasStat = "Explosives",
StatValue = 80,
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
}),
},
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "DeedeeDissuaded",
QuestId = "ErnieSideQuests",
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Minor",
}),
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "ErnieVillage",
SpecialConversationMessage = T(207898515224, --[[Conversation Deedee SpecialConversationMessage]] "convinced <em>Deedee</em> to stop helping the Legion"),
}),
},
Enabled = false,
Keyword = "Stop helping the Legion",
KeywordT = T(287963674293, --[[Conversation Deedee KeywordT]] "Stop helping the Legion"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(525705150892, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Stop helping the Legion]] "But... but... they are nice! They bring me parts to make boom-toys!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fox",
Text = T(536217713512, --[[Conversation Deedee Text voice:Fox section:Deedee keyword:Stop helping the Legion]] "They lie to you, girl, just like all men do. They keep the best parts for themselves!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(528178895857, --[[Conversation Deedee Text voice:Barry section:Deedee keyword:Stop helping the Legion]] "These parts? Very low quality."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(116073481214, --[[Conversation Deedee Text voice:Red section:Deedee keyword:Stop helping the Legion]] "Oh come on, lass! They dinnae give ye the good stuff!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(354440729538, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Stop helping the Legion]] "However, they don't allow me to go near their Fort which is full of wonderful stuff... If you can convince them to let me inside, I'll have enough parts to make boom toys just for myself!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(280781170424, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Stop helping the Legion]] "Uncle Fidel will beat their ass and let you get the best stuff."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Livewire",
Text = T(569089713012, --[[Conversation Deedee Text voice:Livewire section:Deedee keyword:Stop helping the Legion]] "You bet! Pinky promise!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_arrow",
id = "StophelpingtheLegion_success",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set({
DeedeeDissuaded = false,
}),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return not quest.DeedeeDissuaded
end,
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "TakeTheFortress",
Vars = set({
Completed = false,
}),
__eval = function ()
local quest = gv_Quests['TakeTheFortress'] or QuestGetState('TakeTheFortress')
return not quest.Completed
end,
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Explosives",
Negate = true,
StatValue = 80,
}),
PlaceObj('UnitSquadHasMerc', {
HasPerk = "Scoundrel",
Negate = true,
}),
},
Enabled = false,
Keyword = "Stop helping the Legion",
KeywordT = T(287963674293, --[[Conversation Deedee KeywordT]] "Stop helping the Legion"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(525705150892, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Stop helping the Legion]] "But... but... they are nice! They bring me parts to make boom-toys!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raider",
Text = T(364343867625, --[[Conversation Deedee Text voice:Raider section:Deedee keyword:Stop helping the Legion]] "This is wrong! They use your explosives to terrorize people."),
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(892341062673, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Stop helping the Legion]] "Well, if those people brought me parts, I could give them boom toys to terrorize them right back!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(769740648850, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Stop helping the Legion]] "And... Once a boom-toy is made, I don't care where it goes off. I just want it to make a beautiful explosion!"),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "StophelpingtheLegion_failure",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "FortifyErnie",
Vars = {
MachineGun_Declined = true,
MachineGun_Done = true,
MachineGun_Given = true,
Militia_Given = true,
},
__eval = function ()
local quest = gv_Quests['FortifyErnie'] or QuestGetState('FortifyErnie')
return quest.MachineGun_Declined or quest.MachineGun_Done or quest.MachineGun_Given or quest.Militia_Given
end,
}),
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "RescueHerMan",
Vars = set( "HangHerman", "HangLuc", "HangNoOne" ),
__eval = function ()
local quest = gv_Quests['RescueHerMan'] or QuestGetState('RescueHerMan')
return quest.HangHerman or quest.HangLuc or quest.HangNoOne
end,
}),
},
}),
},
Enabled = false,
Keyword = "What do you think of Basil?",
KeywordT = T(705309260165, --[[Conversation Deedee KeywordT]] "What do you think of Basil?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(959660112567, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:What do you think of Basil?]] "He's not a bad person, he just doesn't see things my way. He likes putting things together. I like blowing them up."),
}),
},
id = "Basil",
}),
PlaceObj('ConversationPhrase', {
Keyword = "Why explosives?",
KeywordT = T(401500426103, --[[Conversation Deedee KeywordT]] "Why explosives?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(605476269895, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Why explosives?]] "Well, it started as a hobby. There's a bunch of old war stuff all along the coast - land mines, artillery shells, mortar rounds. I used to play real life minesweeper with my friends until I ran out of friends."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(306478899184, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Why explosives?]] "Ah, much like Fidel's childhood. We used to play dodgeball with grenades. Good times."),
}),
},
}),
},
}),
},
id = "Explode",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Keyword = "Know anything about President LaFontaine?",
KeywordT = T(376227526518, --[[Conversation Deedee KeywordT]] "Know anything about President LaFontaine?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(893586109774, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Know anything about President LaFontaine?]] "Uh, President who? Sorry, no idea who that is. I hope I haven't blown him up or something. People are so careless in minefields, as if they don't have one at home!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(620011986212, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Know anything about President LaFontaine?]] "Yeah! Fidel always wonders the same."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(236223261177, --[[Conversation Deedee Text voice:Larry section:Deedee keyword:Know anything about President LaFontaine?]] "Nah, you can always make one when you need one. Home is where the minefield is."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(302960477139, --[[Conversation Deedee Text voice:Tex section:Deedee keyword:Know anything about President LaFontaine?]] "I have cow pasture near home. Very similar to minefield."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
StoryBranchIcon = "conversation_arrow",
id = "WhatdoyouknowaboutPresidentAlphonse",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Keyword = "Joke",
KeywordT = T(872949881697, --[[Conversation Deedee KeywordT]] "Joke"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(554106182426, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Joke]] "Explosives are sooo exciting! They can just blow your mind."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Grizzly",
Text = T(822678596965, --[[Conversation Deedee Text voice:Grizzly section:Deedee keyword:Joke]] "...What?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(947084766313, --[[Conversation Deedee Text voice:Raven section:Deedee keyword:Joke]] "...What?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(250925488139, --[[Conversation Deedee Text voice:Steroid section:Deedee keyword:Joke]] "Hahahahahahaha! Yes! Good one!"),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
VariantPhrase = true,
id = "Joke",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Keyword = "Joke",
KeywordT = T(872949881697, --[[Conversation Deedee KeywordT]] "Joke"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(570765357321, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Joke]] "A sapper walks into a mine... Boom, the mine is disarmed! So is the sapper! Hehe, get it?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(999638239606, --[[Conversation Deedee Text voice:Red section:Deedee keyword:Joke]] "Hehe... Not bad, lass. Not bad."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(566904845622, --[[Conversation Deedee Text voice:Barry section:Deedee keyword:Joke]] "I do... unfortunately."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Steroid",
Text = T(624773179118, --[[Conversation Deedee Text voice:Steroid section:Deedee keyword:Joke]] "Uh... no."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
VariantPhrase = true,
id = "Joke2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('UnitGrantItem', {
ItemId = "FragGrenade",
}),
},
Keyword = "Joke",
KeywordT = T(872949881697, --[[Conversation Deedee KeywordT]] "Joke"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(912206196515, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Joke]] "You know where sappers go when they die? Everywhere."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(212279544856, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Joke]] "Heheheee... I like this little girl. She's funny!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Annotation = "says the second sentence quietly",
Character = "Deedee",
Text = T(214636245612, --[[Conversation Deedee Text says the second sentence quietly voice:Deedee section:Deedee keyword:Joke]] "Oh by the way, what do you think about this design? Please try it out and tell me if it works... if you still can."),
}),
},
StoryBranchIcon = "conversation_action",
VariantPhrase = true,
id = "Joke3",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "explosion",
GoTo = "Chat.Jokeexplosion",
Keyword = "Joke",
KeywordT = T(872949881697, --[[Conversation Deedee KeywordT]] "Joke"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(400834756143, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Joke]] "Knock-knock... What's ticking? Oh shit..."),
}),
},
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
VariantPhrase = true,
id = "Joke5",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('Explosion', {
AreaOfEffect = 4,
Damage = 15,
LocationGroup = "Deedee_Explosion",
Noise = 0,
}),
PlaceObj('GrantExperienceSector', {
Amount = "XPQuestReward_Minor",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Joke explosion",
KeywordT = T(689964284904, --[[Conversation Deedee KeywordT]] "Joke explosion"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(698280913654, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Joke explosion]] "Hehehe... Good joke, but would be better with screaming."),
}),
},
}),
},
}),
},
StoryBranchIcon = "conversation_action",
id = "Jokeexplosion",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set({
DeedeeDissuaded = false,
}),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return not quest.DeedeeDissuaded
end,
}),
},
Enabled = false,
Keyword = "Hands up!",
KeywordT = T(586177032721, --[[Conversation Deedee KeywordT]] "Hands up!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(350527392902, --[[Conversation Deedee Text voice:MD section:Deedee keyword:Hands up!]] "Drop the grenade! I mean, don't drop the grenade! Ah, shoot! I mean, don't shoot!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Tex",
Text = T(653131942606, --[[Conversation Deedee Text voice:Tex section:Deedee keyword:Hands up!]] "Reach for the sky, little lady!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(450399969091, --[[Conversation Deedee Text voice:Wolf section:Deedee keyword:Hands up!]] "I wanna see those hands!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(732311883484, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Hands up!]] "No-no-no-no, put that gun down and get out of my workshop! Are you nuts? You trying to blow us all up?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(880118514881, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Hands up!]] "Ehehehee..."),
}),
},
}),
},
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_threaten",
id = "Handsup1",
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
GoTo = "Handsup1.DieExplosion",
Keyword = "Die!",
KeywordT = T(482976736771, --[[Conversation Deedee KeywordT]] "Die!"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Raven",
Text = T(696548370710, --[[Conversation Deedee Text voice:Raven section:Deedee keyword:Die!]] "We're ending your little bomb-making operation right here and now!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(442133144936, --[[Conversation Deedee Text voice:Omryn section:Deedee keyword:Die!]] "Die, little bomb demon!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Meltdown",
Text = T(962435805719, --[[Conversation Deedee Text voice:Meltdown section:Deedee keyword:Die!]] "Time to let some lead fly!"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(962803371885, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Die!]] "Wanna play rough, huh? Well, I got a pocket full of boom-toys just for you!"),
}),
},
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_attack",
id = "Attack",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Effects = {
PlaceObj('Explosion', {
AppliedEffect = "Suppressed",
AreaOfEffect = 5,
LocationGroup = "Deedee_Explosion",
Noise = 40,
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "Deedee",
}),
PlaceObj('GroupAlert', {
TargetUnit = "Deedee",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Die Explosion",
KeywordT = T(145857667402, --[[Conversation Deedee KeywordT]] "Die Explosion"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(617128859646, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Die Explosion]] "Take that!"),
}),
},
StoryBranchIcon = "conversation_attack",
id = "DieExplosion",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Deedee",
PhraseId = "Handsup2",
}),
},
GoTo = "<root>",
Keyword = "Sorry...",
KeywordT = T(386331047600, --[[Conversation Deedee KeywordT]] "Sorry..."),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(726523820443, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Sorry...]] "Huh. Apology accepted. But don't you ever threaten a boom-toy expert again!"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(460466081001, --[[Conversation Deedee Text voice:Fidel section:Deedee keyword:Sorry...]] "Yeah! That right!"),
}),
},
}),
},
}),
},
id = "Sorry",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "ErnieSideQuests",
Vars = set({
DeedeeDissuaded = false,
}),
__eval = function ()
local quest = gv_Quests['ErnieSideQuests'] or QuestGetState('ErnieSideQuests')
return not quest.DeedeeDissuaded
end,
}),
},
Effects = {
PlaceObj('Explosion', {
AppliedEffect = "Suppressed",
AreaOfEffect = 5,
LocationGroup = "Deedee_Explosion",
Noise = 40,
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "Deedee",
}),
PlaceObj('GroupAlert', {
TargetUnit = "Deedee",
}),
},
Enabled = false,
GoTo = "<end conversation>",
Keyword = "Hands up!",
KeywordT = T(586177032721, --[[Conversation Deedee KeywordT]] "Hands up!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(848161864706, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Hands up!]] "You have a death wish, do you?! Oh well, then I'll be the genie for you! Wish granted."),
}),
},
id = "Handsup2",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Deedee KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "Deedee",
Text = T(549654274476, --[[Conversation Deedee Text voice:Deedee section:Deedee keyword:Goodbye]] "Have a boom-boombastic day!"),
}),
},
StoryBranchIcon = "conversation_goodbye",
id = "Goodbye",
}),
})
|