File size: 50,152 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 |
-- ========== GENERATED BY Conversation Editor DO NOT EDIT MANUALLY! ==========
PlaceObj('Conversation', {
AssignToGroup = "TheBeast",
Comment = "Key points:\n- In this conversation, you meet the Beast as a nice old lady in her cottage in the woods.\n\n- You may infer she is the Beast but it's not explicitly stated",
Conditions = {
PlaceObj('PlayerIsInSectors', {
Sectors = {
"C14",
},
}),
},
DefaultActor = "TheBeast",
DefaultActorPortraitOverride = "UI/NPCs/OldGranny",
group = "Jungle",
id = "Beast_2",
PlaceObj('ConversationPhrase', {
Comment = "The player has killed Wlad. The Beast will attack after this",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "_GroupsAttacked",
Vars = set( "Wlad_Killed" ),
__eval = function ()
local quest = gv_Quests['_GroupsAttacked'] or QuestGetState('_GroupsAttacked')
return quest.Wlad_Killed
end,
}),
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_Wlad",
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "WladAndBeast",
QuestId = "Beast",
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "TheBeast",
}),
PlaceObj('GroupAlert', {
TargetUnit = "TheBeast",
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(255821357526, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting4]] "You killed my Wlad! I have been protecting him for so many years. The Beast... The Beast shall have you. All of you!"),
}),
},
id = "Greeting4",
}),
PlaceObj('ConversationPhrase', {
Comment = "Wlad is dead but not by the player's hand. End.",
Conditions = {
PlaceObj('CheckIsPersistentUnitDead', {
per_ses_id = "NPC_Wlad",
}),
PlaceObj('QuestIsVariableBool', {
QuestId = "_GroupsAttacked",
Vars = set({
Wlad_Killed = false,
}),
__eval = function ()
local quest = gv_Quests['_GroupsAttacked'] or QuestGetState('_GroupsAttacked')
return not quest.Wlad_Killed
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "WladAndBeast",
QuestId = "Beast",
}),
},
GoTo = "<end conversation>",
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(862076420263, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting5]] "What have you done?! I have protected Wlad for so many years, and you, you just let him die... Go away, or the Beast will have you."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(936268610914, --[[Conversation Beast_2 Text voice:Mouse section:Beast_2 keyword:Greeting5]] "We're sorry..."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(117281741152, --[[Conversation Beast_2 Text voice:Len section:Beast_2 keyword:Greeting5]] "I'm sorry for your loss."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fauda",
Text = T(273343327979, --[[Conversation Beast_2 Text voice:Fauda section:Beast_2 keyword:Greeting5]] "May his soul watch over you."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(693575594278, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting5]] "He's dead, and I... I don't care anymore."),
}),
},
id = "Greeting5",
}),
PlaceObj('ConversationPhrase', {
Comment = "You have met her before",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BeastSecondMeeting",
QuestId = "Beast",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(350826597521, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting]] "Oh, hello, sweet children of mine. How's Wlad?"),
}),
},
VariantPhrase = true,
id = "Greeting",
}),
PlaceObj('ConversationPhrase', {
Comment = "Repeated. You have met her before.",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BeastSecondMeeting",
QuestId = "Beast",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(732199604887, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting7]] "Hello! Have you been good kids? Are you eating well?"),
}),
},
VariantPhrase = true,
id = "Greeting7",
}),
PlaceObj('ConversationPhrase', {
Comment = "You know she is the Beast but have not met her in her suit",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastExposed = true,
BeastGranny = true,
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastExposed and quest.BeastGranny and not quest.BeastMet
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(304535042917, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting2]] "Hello, sweet children. What are you doing in the lair of the Beast?"),
}),
},
id = "Greeting2",
}),
PlaceObj('ConversationPhrase', {
Comment = "You have only met her as Granny and do not know she is the Beast",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastExposed = false,
BeastGranny = true,
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastExposed and quest.BeastGranny and not quest.BeastMet
end,
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(412375015244, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting6]] "Hello, sweet children. Has the Beast not gotten to you... yet?"),
}),
},
id = "Greeting6",
}),
PlaceObj('ConversationPhrase', {
Comment = "You have not met her yet in either form",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastGranny = false,
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastGranny and not quest.BeastMet
end,
}),
},
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BeastGranny",
QuestId = "Beast",
}),
},
Keyword = "Greeting",
KeywordT = T(774381032385, --[[Conversation Beast_2 KeywordT]] "Greeting"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(827726239954, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Greeting3]] "Well hello, sweet children. Are you lost in the woods?"),
}),
},
NoBackOption = true,
id = "Greeting3",
PlaceObj('ConversationPhrase', {
GoTo = "Greeting3.Redirect",
Keyword = "Yes",
KeywordT = T(556648424716, --[[Conversation Beast_2 KeywordT]] "Yes"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Yes",
}),
PlaceObj('ConversationPhrase', {
GoTo = "Greeting3.Redirect",
Keyword = "No",
KeywordT = T(430002284053, --[[Conversation Beast_2 KeywordT]] "No"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Yes2",
}),
PlaceObj('ConversationPhrase', {
GoTo = "Greeting3.Redirect",
Keyword = "Maybe",
KeywordT = T(443168483922, --[[Conversation Beast_2 KeywordT]] "Maybe"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "No",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "Greeting3.Redirect",
Keyword = "We don’t know",
KeywordT = T(809048630566, --[[Conversation Beast_2 KeywordT]] "We don’t know"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Maybe",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "Greeting3.Redirect",
Keyword = "Can you repeat the question?",
KeywordT = T(206241465626, --[[Conversation Beast_2 KeywordT]] "Can you repeat the question?"),
PlayGoToPhrase = true,
StoryBranchIcon = "conversation_action",
id = "Wedontknow",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "Given",
QuestId = "Beast",
}),
},
Enabled = false,
GoTo = "<root>",
Keyword = "Redirect",
KeywordT = T(328092960140, --[[Conversation Beast_2 KeywordT]] "Redirect"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(981337301932, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Redirect]] "You should be careful. These woods belong to the <em>Beast</em>. It munches cute little kids like you for breakfast."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(245679525637, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Redirect]] "Ooooh, I know, I know! You are an old woman living in a small cottage in the forest, and you are surrounded by those creepy scarecrows, and... "),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(786649939897, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Redirect]] "And?"),
}),
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(442563224440, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Redirect]] "Please, Missis Witch, do not turn me into a scarecrow!!!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(422462461813, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Redirect]] "Only if you have been a naughty boy."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(263886128519, --[[Conversation Beast_2 Text voice:Hitman section:Beast_2 keyword:Redirect]] "Most important meal of the day! ...What? Sorry, I zoned out for a second and all I heard was breakfast."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Red",
Text = T(163894180251, --[[Conversation Beast_2 Text voice:Red section:Beast_2 keyword:Redirect]] "Well, if the wee beastie likes his meat tougher than week old haggis and twice as spicy, he's free to take a bite of this \"cute kid\" anytime!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(202970239172, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Redirect]] "It sounds like an evil spirit that feeds on the young and innocent. I can't wait to meet it!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(964339226978, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Redirect]] "Be careful what you wish for, my dear."),
}),
},
}),
},
}),
},
id = "Redirect",
}),
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Beast_2",
PhraseId = "YouaretheBeastarentyou",
}),
PlaceObj('PhraseSetEnabled', {
Conversation = "Beast_2",
PhraseId = "Whatsthedealwiththescarecrows",
}),
},
Keyword = "Tell us about the Beast",
KeywordT = T(283957302091, --[[Conversation Beast_2 KeywordT]] "Tell us about the Beast"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Leonard Cohen reference",
Character = "TheBeast",
Text = T(741230351405, --[[Conversation Beast_2 Text Leonard Cohen reference voice:TheBeast section:Beast_2 keyword:Tell us about the Beast]] "Most of the time it slumbers in its lair, but... But there are times when the moon's too bright, the chain's too tight, and the Beast won't go to sleep."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(998838733716, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Tell us about the Beast]] "Gulp..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(544954303284, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Tell us about the Beast]] "Then it goes out, this murderous Beast, and it roams these woods until it's satisfied with blood and carnage."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(601826110555, --[[Conversation Beast_2 Text voice:Reaper section:Beast_2 keyword:Tell us about the Beast]] "I couldn't have explained the dance of an Angel of Death any better myself."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(381552435018, --[[Conversation Beast_2 Text voice:Omryn section:Beast_2 keyword:Tell us about the Beast]] "Is werewolf? Is okay. I have silver bullets."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(305555658032, --[[Conversation Beast_2 Text voice:Flay section:Beast_2 keyword:Tell us about the Beast]] "This Beast and I, we are much alike. I look forward to hunting it."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(734001381387, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Tell us about the Beast]] "Hmmm... Sounds like a werewolf, but it could be a bugbear or maybe a vampire. Does it drink blood?"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(403461820012, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Tell us about the Beast]] "Aren't you a curious little one? No, it does not."),
}),
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(903839178509, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Tell us about the Beast]] "Okay, so vampire is out."),
}),
},
}),
},
}),
},
id = "TellusabouttheBeast",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
PlaceObj('CheckOR', {
Conditions = {
PlaceObj('UnitSquadHasMerc', {
Name = "Kalyna",
}),
PlaceObj('UnitSquadHasMerc', {
HasStat = "Wisdom",
StatValue = 85,
}),
},
}),
},
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "IlleMorat",
SpecialConversationMessage = T(247294966082, --[[Conversation Beast_2 SpecialConversationMessage]] "good impression on the <em>Beast</em>"),
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BeastCabin",
QuestId = "Beast",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BeastExposed",
QuestId = "Beast",
}),
},
Enabled = false,
Keyword = "YOU are the Beast, aren’t you?",
KeywordT = T(298603776526, --[[Conversation Beast_2 KeywordT]] "YOU are the Beast, aren’t you?"),
Lines = {
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Barry",
Text = T(650991280908, --[[Conversation Beast_2 Text voice:Barry section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "This Beast. I am thinking it is you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Buns",
Text = T(293764401303, --[[Conversation Beast_2 Text voice:Buns section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Unless I'm wrong, and I never am, YOU are the Beast."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "MD",
Text = T(740086846071, --[[Conversation Beast_2 Text voice:MD section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Signs of blood under the nails. Powder burns on the knuckles. Excuse me, ma'am, but are YOU the Beast?"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(439303761636, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Wait, I know! You're a shapeshifter! Will you teach me your magic?"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(762429290866, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "There is no magic, dear. There is only the thirst for justice, the lust for battle, and the willingness to do terrible things."),
}),
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(440312668379, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "But I already have those things and I'm no Beast."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(977987486738, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Aren't we all? Aren't you?... When you raise your gun at one of those bandits, and..."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(917421969604, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "What big eyes you have, Granny!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(538548023400, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Um, thank you. As I was saying..."),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(675497372684, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "...Then you catch them on the move, and you feel the recoil when the bullets rip them in half, and... And the feeling is joy."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(273420530199, --[[Conversation Beast_2 Text voice:Blood section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Gosh... This woman scares me."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(129552737213, --[[Conversation Beast_2 Text voice:Reaper section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "This woman fascinates me."),
}),
},
}),
},
MaxPlayed = 2,
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Flay",
Text = T(479540627462, --[[Conversation Beast_2 Text voice:Flay section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "At this moment, I find you very attractive."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Fidel",
Text = T(161266612476, --[[Conversation Beast_2 Text voice:Fidel section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "Yes! Ay, dios mío! This is what bring laughter to the heart of Fidel!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Wolf",
Text = T(589622777409, --[[Conversation Beast_2 Text voice:Wolf section:Beast_2 keyword:YOU are the Beast, aren’t you?]] "It's just a job - one I'm good at. Nothing more."),
}),
},
}),
},
}),
},
id = "YouaretheBeastarentyou",
}),
PlaceObj('ConversationPhrase', {
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "BeastEffigies",
QuestId = "Beast",
}),
},
Enabled = false,
Keyword = "What’s the deal with the scarecrows?",
KeywordT = T(749550151818, --[[Conversation Beast_2 KeywordT]] "What’s the deal with the scarecrows?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(109395178318, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:What’s the deal with the scarecrows?]] "They are here to keep the Beast asleep. They remind it of the good people it had known."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(113075267696, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:What’s the deal with the scarecrows?]] "I knew it! You are a good witch that repels evil with her magic!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(644576471841, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:What’s the deal with the scarecrows?]] "Oh, man... Let's split up and get out of here."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry_Clean",
Text = T(246729994425, --[[Conversation Beast_2 Text voice:Larry_Clean section:Beast_2 keyword:What’s the deal with the scarecrows?]] "Oh, kinda like my sobriety bear, only waaay creepier."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Hitman",
Text = T(973675007685, --[[Conversation Beast_2 Text voice:Hitman section:Beast_2 keyword:What’s the deal with the scarecrows?]] "Hey, whatever it takes to get to sleep at night, right?"),
}),
},
}),
},
}),
},
id = "Whatsthedealwiththescarecrows",
}),
PlaceObj('ConversationPhrase', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
Condition = "or",
QuestId = "Beast",
Vars = set( "BeastExposed", "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastExposed or quest.BeastMet
end,
}),
},
Keyword = "Is this how the “Beast” lives?",
KeywordT = T(493160804037, --[[Conversation Beast_2 KeywordT]] "Is this how the “Beast” lives?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(328769264413, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Is this how the “Beast” lives?]] "Yes. Most of the time, I'm just a harmless old woman. There are so many advantages to that. No one takes you seriously... until it's too late."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(578273112081, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Is this how the “Beast” lives?]] "I take you seriously! I don't want to be turned into a scarecrow!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Shadow",
Text = T(474870761527, --[[Conversation Beast_2 Text voice:Shadow section:Beast_2 keyword:Is this how the “Beast” lives?]] 'The "sweet little old lady" disguise. One of my favorites.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "DrQ",
Text = T(511606084690, --[[Conversation Beast_2 Text voice:DrQ section:Beast_2 keyword:Is this how the “Beast” lives?]] "Always seem less than you are and people will soon reveal their true nature to you."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(366083562070, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Is this how the “Beast” lives?]] "Woe to the careless traveller who takes the gifts of the forest without paying for them!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(267968780890, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Is this how the “Beast” lives?]] "Oh, my dear. You almost make me wish I had a daughter."),
}),
},
}),
},
}),
},
id = "IsthishowtheBeastlives",
}),
PlaceObj('ConversationPhrase', {
AutoRemove = true,
Keyword = "Are those cookies!?",
KeywordT = T(301168935124, --[[Conversation Beast_2 KeywordT]] "Are those cookies!?"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(617588963930, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Are those cookies!?]] "Yes! Help yourselves. I hope you will find them... enchanting."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(406732292912, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Are those cookies!?]] "Zoinks! Listen to me, people, DON'T EAT THE COOKIES!!! That's how she turned all these people into scarecrows!"),
}),
},
}),
},
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(248942898395, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Are those cookies!?]] "Magical cookies from a sweet old lady in a cabin in a Cursed Forest!? I can't wait to try!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(972043705450, --[[Conversation Beast_2 Text voice:Omryn section:Beast_2 keyword:Are those cookies!?]] "There is enough for Omryn, but you will need more for others."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(433832066439, --[[Conversation Beast_2 Text voice:Scope section:Beast_2 keyword:Are those cookies!?]] "I always tell my kids not to take sweets from strangers, but fresh-baked cookies are a different thing entirely!"),
}),
},
}),
},
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_friendly",
id = "Wesmellcookies",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('UnitGrantItem', {
ItemId = "SkillMag_Health",
}),
},
GoTo = "<root>",
Keyword = "Thank you!",
KeywordT = T(461263164296, --[[Conversation Beast_2 KeywordT]] "Thank you!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(927890085650, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] "Come, have some more! Once people taste my cookies, they just don't ever seem to want to leave my cottage."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(851316637599, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Thank you!]] "I won't touch 'em with a ten-foot pole, man!"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "IlleMorat",
SpecialConversationMessage = T(263716147314, --[[Conversation Beast_2 SpecialConversationMessage]] "good impression on the <em>Beast</em>"),
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Mouse",
Text = T(573826802985, --[[Conversation Beast_2 Text voice:Mouse section:Beast_2 keyword:Thank you!]] "Yay! They're as tasty as it gets! May I have one more?"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(202676325346, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] "Of course, sweet child. Take as many as you want, there are more where these came from."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = 5,
City = "IlleMorat",
SpecialConversationMessage = T(263716147314, --[[Conversation Beast_2 SpecialConversationMessage]] "good impression on the <em>Beast</em>"),
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(956543398820, --[[Conversation Beast_2 Text voice:Scope section:Beast_2 keyword:Thank you!]] "Mmm, darling, they are delicious! Would you care to share the recipe?"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(129233503019, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] "But, of course! I'll write it down for you."),
}),
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(800092642209, --[[Conversation Beast_2 Text voice:Scope section:Beast_2 keyword:Thank you!]] "Marvelous! And this here is my favorite cookie recipe. I would be delighted if you'd give it a try."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Blood",
Text = T(726768327192, --[[Conversation Beast_2 Text voice:Blood section:Beast_2 keyword:Thank you!]] "Now this is what I call hot cuisine!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(593961597535, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] 'I think you mean "haute cuisine" my dear, but thank you.'),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Omryn",
Text = T(777551120891, --[[Conversation Beast_2 Text voice:Omryn section:Beast_2 keyword:Thank you!]] "Okay, it is agreed. Omryn will stay here."),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(108236257097, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] "I'm going to need more flour. A lot more."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Kalyna",
Text = T(808465880634, --[[Conversation Beast_2 Text voice:Kalyna section:Beast_2 keyword:Thank you!]] "When do I turn into a gingerbread person?"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(601234991120, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Thank you!]] "These are sugar cookies, dear, and you're already sweet enough as it is."),
}),
},
}),
},
MaxPlayed = 2,
}),
},
PhraseRolloverText = T(987879773383, --[[Conversation Beast_2 PhraseRolloverText]] "Eat cookies"),
id = "Thankyou",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
GoTo = "<root>",
Keyword = "No thanks",
KeywordT = T(159677042642, --[[Conversation Beast_2 KeywordT]] "No thanks"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(722999462410, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:No thanks]] "That almost breaks my heart. Well, I guess I will have to give them to the Beast."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(253042890540, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:No thanks]] "Let's leave this place before the Beast smells them!"),
}),
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(913429994554, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:No thanks]] "It may be a little too late for that, child."),
}),
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(169599272683, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:No thanks]] "Oooohhh... Keep your eyes peeled, Ted!"),
}),
},
}),
},
}),
},
PhraseRolloverText = T(145393512283, --[[Conversation Beast_2 PhraseRolloverText]] "Refuse cookies"),
id = "Thankyou2",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
Keyword = "Hands up!",
KeywordT = T(586177032721, --[[Conversation Beast_2 KeywordT]] "Hands up!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(193235900532, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Hands up!]] "Are you out of your mind? Put that gun down immediately! You will upset the Beast!"),
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_threaten",
id = "Handsup",
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "PlayerAttackedBeast",
QuestId = "CursedForestSideQuests",
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "TheBeast",
}),
PlaceObj('GroupAlert', {
TargetUnit = "TheBeast",
}),
},
GoTo = "<end conversation>",
Keyword = "Hands up, now!",
KeywordT = T(979317918773, --[[Conversation Beast_2 KeywordT]] "Hands up, now!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(315955816468, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Hands up, now!]] "I see you're a bunch of naughty kids like all the others. The Beast will have you."),
}),
},
StoryBranchIcon = "conversation_attack",
id = "Handsupnow",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('QuestSetVariableBool', {
Prop = "PlayerAttackedBeast",
QuestId = "CursedForestSideQuests",
}),
PlaceObj('GroupSetSide', {
Side = "enemy2",
TargetUnit = "TheBeast",
}),
PlaceObj('GroupAlert', {
TargetUnit = "TheBeast",
}),
},
GoTo = "<end conversation>",
Keyword = "Mercs, open fire!",
KeywordT = T(123772999142, --[[Conversation Beast_2 KeywordT]] "Mercs, open fire!"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
SoundBefore = "Sounds/ConversationEffects/38-S&W_shot4m_dry.wav",
Text = T(118362123278, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Mercs, open fire!]] "No, you won't kill the Beast so easily."),
}),
},
ShowPhraseRollover = false,
StoryBranchIcon = "conversation_attack",
id = "Mercsopenfire_failure",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Effects = {
PlaceObj('CityGrantLoyalty', {
Amount = -10,
City = "IlleMorat",
SpecialConversationMessage = T(988944030324, --[[Conversation Beast_2 SpecialConversationMessage]] "bad impression on the <em>Beast</em>"),
}),
},
GoTo = "<root>",
Keyword = "Sorry, we were joking",
KeywordT = T(112798754983, --[[Conversation Beast_2 KeywordT]] "Sorry, we were joking"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(156345664707, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Sorry, we were joking]] "Goodness! That was one very dangerous joke. The Beast doesn't like naughty kids scaring a frail old lady like that!"),
}),
},
StoryBranchIcon = "conversation_back",
id = "Sorrywewerejoking",
}),
}),
PlaceObj('ConversationPhrase', {
Align = "right",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = true,
BeastSatisfied = false,
QuestLoyalty = true,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet and not quest.BeastSatisfied and quest.QuestLoyalty
end,
}),
},
Keyword = "Will you support us against the Legion?",
KeywordT = T(562651864601, --[[Conversation Beast_2 KeywordT]] "Will you support us against the Legion?"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Batman reference",
Character = "TheBeast",
Text = T(884744553496, --[[Conversation Beast_2 Text Batman reference voice:TheBeast section:Beast_2 keyword:Will you support us against the Legion?]] 'My answer remains "no". The people of my village still need their silent guardian, their watchful protector... their Beast.'),
}),
},
StoryBranchIcon = "conversation_arrow",
id = "Haveyouconsideredjoiningus_failure",
}),
PlaceObj('ConversationPhrase', {
Align = "right",
AutoRemove = true,
Comment = "send the Beast to help in battles across the Cursed Forest",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet", "BeastSatisfied", "QuestLoyalty" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet and quest.BeastSatisfied and quest.QuestLoyalty
end,
}),
},
Effects = {
PlaceObj('PhraseSetEnabled', {
Conversation = "Beast_2",
Enabled = false,
PhraseId = "Haveyouconsideredjoiningus_failure",
}),
PlaceObj('QuestSetVariableBool', {
Prop = "BeastRecruited",
QuestId = "Beast",
}),
},
Keyword = "Will you support us against the Legion?",
KeywordT = T(562651864601, --[[Conversation Beast_2 KeywordT]] "Will you support us against the Legion?"),
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Batman reference",
Character = "TheBeast",
Text = T(272465674111, --[[Conversation Beast_2 Text Batman reference voice:TheBeast section:Beast_2 keyword:Will you support us against the Legion?]] "Yes. Now that my people are safe... I was thinking - do you know the only remaining reward for being the Beast?"),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Scope",
Text = T(509196701189, --[[Conversation Beast_2 Text voice:Scope section:Beast_2 keyword:Will you support us against the Legion?]] "Being able to bake top notch cookies in peace?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Annotation = "Conan reference",
Character = "Steroid",
Text = T(397927994034, --[[Conversation Beast_2 Text Conan reference voice:Steroid section:Beast_2 keyword:Will you support us against the Legion?]] "To see your enemies driven before you?"),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Nails",
Text = T(590663979346, --[[Conversation Beast_2 Text voice:Nails section:Beast_2 keyword:Will you support us against the Legion?]] "A bitchin' outfit?"),
}),
},
}),
},
}),
PlaceObj('ConversationLine', {
Annotation = "Batman reference",
Character = "TheBeast",
Text = T(644684558186, --[[Conversation Beast_2 Text Batman reference voice:TheBeast section:Beast_2 keyword:Will you support us against the Legion?]] "...You just get to be... the Beast! So, I will unleash my true self and show it to all of Grand Chien."),
}),
PlaceObj('ConversationInterjectionList', {
Interjections = {
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Reaper",
Text = T(402776818009, --[[Conversation Beast_2 Text voice:Reaper section:Beast_2 keyword:Will you support us against the Legion?]] "May you reap the souls of the wicked."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Larry",
Text = T(536878363748, --[[Conversation Beast_2 Text voice:Larry section:Beast_2 keyword:Will you support us against the Legion?]] "Um... We better start sleeping in shifts, Ted."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Len",
Text = T(523911565497, --[[Conversation Beast_2 Text voice:Len section:Beast_2 keyword:Will you support us against the Legion?]] "And a grateful Grand Chien will thank you for your service."),
}),
},
}),
PlaceObj('ConversationInterjection', {
Lines = {
PlaceObj('ConversationLine', {
Character = "Smiley",
Text = T(218558138987, --[[Conversation Beast_2 Text voice:Smiley section:Beast_2 keyword:Will you support us against the Legion?]] "I too wish to expose myself to all of Grand Chien!"),
}),
},
}),
},
}),
},
NoBackOption = true,
StoryBranchIcon = "conversation_arrow",
id = "Haveyouconsideredjoiningus_success",
}),
PlaceObj('ConversationPhrase', {
Comment = "You have not met her as the Beast yet",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set({
BeastMet = false,
}),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return not quest.BeastMet
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Beast_2 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(535941440078, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Goodbye]] "Farewell and be careful. Beware of the Beast."),
}),
},
id = "Goodbye",
}),
PlaceObj('ConversationPhrase', {
Comment = "You met her as the Beast",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Beast_2 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(957772244177, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Goodbye]] "If you see Wlad, remind him to eat and sleep sometimes. He keeps forgetting to do that."),
}),
},
VariantPhrase = true,
id = "Goodbye2",
}),
PlaceObj('ConversationPhrase', {
Comment = "Alternative. You met her as the Beast",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Beast_2 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(466308592409, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Goodbye]] "Make sure you watch over Wlad, or the Beast will come for you."),
}),
},
VariantPhrase = true,
id = "Goodbye3",
}),
PlaceObj('ConversationPhrase', {
Comment = "Alternative. You met her as the Beast",
Conditions = {
PlaceObj('QuestIsVariableBool', {
QuestId = "Beast",
Vars = set( "BeastMet" ),
__eval = function ()
local quest = gv_Quests['Beast'] or QuestGetState('Beast')
return quest.BeastMet
end,
}),
},
GoTo = "<end conversation>",
Keyword = "Goodbye",
KeywordT = T(557225474228, --[[Conversation Beast_2 KeywordT]] "Goodbye"),
Lines = {
PlaceObj('ConversationLine', {
Character = "TheBeast",
Text = T(207383296233, --[[Conversation Beast_2 Text voice:TheBeast section:Beast_2 keyword:Goodbye]] "Farewell and beware of the... Oh, I forgot that you already know who I am. Must be getting old. Take care anyway. "),
}),
},
VariantPhrase = true,
id = "Goodbye4",
}),
})
|