Skip to content
Snippets Groups Projects
behaviour.xml 1000 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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
    <?xml version='1.0' encoding='UTF-8'?>
    
    <!--This file was machine generated using the Character Editor v4.3 at 10:19:31 PM on July 11, 2019. Please do not edit it directly without preserving your improvements elsewhere or your changes may be lost the next time this file is generated.-->
    <opponent>
        <version>v4.3</version>
        <first>Rin</first>
        <last>Tezuka</last>
        <label>Rin</label>
        <gender>female</gender>
        <size>medium</size>
        <timer>25</timer>
        <intelligence>average</intelligence>
    
        <intelligence stage="3">best</intelligence>
    
        <intelligence stage="4">average</intelligence>
    
        <tags>
            <tag>ginger</tag>
            <tag>short_hair</tag>
            <tag>messy_hair</tag>
            <tag>green_eyes</tag>
            <tag>fair-skinned</tag>
            <tag>hairy</tag>
            <tag>pubic_hair</tag>
            <tag>medium_breasts</tag>
            <tag>school_uniform</tag>
            <tag>ditzy</tag>
            <tag>indifferent</tag>
            <tag>japanese</tag>
            <tag>visual_novel</tag>
            <tag>katawa_shoujo</tag>
            <tag>student</tag>
            <tag from="2" to="6">assisted_strip</tag>
            <tag>uses_toy</tag>
        </tags>
    
        <start />
    
        <wardrobe>
            <clothing lowercase="panties" position="lower" formalName="panties" type="important" />
            <clothing lowercase="bra" position="upper" formalName="bra" type="important" />
            <clothing lowercase="shirt" position="upper" formalName="shirt" type="major" />
            <clothing lowercase="pants" position="lower" formalName="pants" type="major" />
            <clothing lowercase="tie" position="neck" formalName="tie" type="extra" />
            <clothing lowercase="sandals" position="feet" formalName="sandals" type="minor" plural="true" />
        </wardrobe>
    
        <poses>
            <pose id="new_pose" />
        </poses>
    
        <behaviour>
            <stage id="0">
                <case tag="selected">
                    <state img="0-bored.png">Helloooo...</state>
                    <state img="0-absent.png" weight="2">Hello there. I'm Rin. Rin Tezuka. Tezuka Rin. Rin Tezuka.</state>
                </case>
                <case tag="selected" alsoPlaying="emi">
                    <state img="0-confused.png">Strip Poker? Emi...why are we here?</state>
                </case>
                <case tag="selected" alsoPlaying="emi" priority="150">
                    <condition count="1" filter="hanako" />
                    <state img="0-surprised.png">Emi's here...and...the Mysterious Toilet Girl?</state>
                    <state img="0-lucid.png">...It does feel empty...like a cookie jar void of cookies.</state>
                    <state img="0-lucid.png">...It does feel empty...like, a really empty thing.</state>
                    <state img="0-lucid.png">...It does feel empty...like a canvas with nothing on it...</state>
                    <state img="0-lucid.png">...It does feel empty...like something...spacey.</state>
                </case>
                <case tag="selected" alsoPlaying="emi">
                    <condition count="1" filter="hanako" />
                    <test expr="~background~" value="classroom" />
                    <state img="0-confused.png">I...have no idea what is going on Emi...</state>
                    <state img="0-lucid.png">Well, this isn't the Art Club, that's for sure.</state>
                </case>
                <case tag="selected" alsoPlaying="emi">
                    <condition count="1" filter="hanako" />
                    <test expr="player" cmp="!=" value="Hisao" />
                    <state img="0-curious.png">So many students here...I wonder what this is all about.</state>
                </case>
                <case tag="selected" id="0-1" priority="100">
                    <test expr="~name~" value="Hisao" />
                    <state img="0-curious.png">...Hisao?</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="akko">
                    <state img="0-curious.png">Is...Is that a witch?</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="emi">
                    <state img="0-confused.png">Strip Poker? Emi...why are we here?</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="hanako">
                    <state img="0-curious.png">Wait...is that...the Mysterious Toilet Girl?</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="monika">
                    <state img="0-doubt.png">Who are you?...I'm...getting some...weird vibes from you...</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="natsuki">
                    <state img="0-bored.png">Hello Misha-...Wait...you aren't Misha...aren't you?</state>
                </case>
                <case tag="opponent_selected" alsoPlaying="sayori">
                    <state img="0-curious.png">Hey...you kinda look like me...except with a bow.</state>
                    <state img="0-curious.png">Hey...you kinda look like me...except with that orange hair of yours.</state>
                    <state img="0-confused.png">Hey...you kinda look like me...except...you act like a bit more like Emi...</state>
                </case>
                <case tag="game_start">
                    <state img="0-DPNormal.png" weight="2">I won't shake hands with you, but at least we know who we are now.</state>
                    <state img="0-DPNormal.png">I'd shake hands with you...but I can't.</state>
                    <state img="0-DPNormal.png">Pleased to meet you...I'd offer to shake hands...but...y'know.</state>
                </case>
                <case tag="game_start" alsoPlaying="el_shaggy_blanco">
                    <state img="0-DPUpset.png">...Why do I have a feeling that we're all going to die?</state>
                    <state img="0-DPUpset.png">...I'm not liking this...</state>
                </case>
                <case tag="game_start" alsoPlaying="emi" priority="150">
                    <state img="0-DPNormal.png">...I guess you could say I was dragged here.</state>
                    <state img="0-lucid.png" weight="2">...I guess I can stick around...</state>
                    <state img="0-lucid.png" weight="2">...Alright...I'll stay.</state>
                </case>
                <case tag="game_start" alsoPlaying="hanako" priority="150">
                    <state img="0-DPAmused.png" marker="toiletgirl">It really is you...Didn't expect you to be in a place like this.</state>
                    <state img="0-confused.png" marker="toiletgirl">Aren't you more of a book person than a...poker person?</state>
                    <state img="0-DPNormal.png" marker="toiletgirl">Shouldn't you be at the Yamaku Library?</state>
                </case>
                <case tag="game_start" alsoPlaying="natsuki">
                    <state img="0-curious.png">So your name is Natsuki? You do remind me of Misha, just...a more flatter version of her...Are you a time traveler?</state>
                </case>
                <case tag="game_start" alsoPlaying="zizou">
                    <state img="0-DPNormal.png">You may win. You may not win.</state>
                    <state img="0-lucid.png">That's kind of a bold statement.</state>
                </case>
                <case tag="game_start">
                    <condition count="3" filter="ddlc" />
                    <state img="0-confused.png">...Why do I feel so out of place?</state>
                    <state img="0-doubt.png">...Am I in the right school?</state>
                    <state img="0-DPNormal.png">...All of you seem familiar...though I can't put my finger on it...because I don't have any fingers.</state>
                </case>
                <case tag="game_start" totalAlive="3-4">
                    <condition count="0" filter="emi" />
                    <test expr="~background~" value="roof" />
                    <state img="0-disgust.png">...Wait...who are you people?</state>
                    <state img="0-confused.png">...Where's Emi?...And who are all of you?</state>
                </case>
                <case tag="game_start" alsoPlaying="hanako">
                    <test expr="~background~" value="library" />
                    <state img="0-bored.png">How's the library been treating you MTG?</state>
                    <state img="0-confused.png">Didn't expect to play Strip Poker in a library with the Mysterious Toilet Girl...I'm not dreaming, am I?</state>
                </case>
                <case tag="game_start" alsoPlaying="emi" totalAlive="3-4">
                    <test expr="~background~" value="roof" />
                    <state img="0-confused.png">Emi...Who are these people?</state>
                    <state img="0-confused.png">...Emi? You invited others onto the roof?</state>
                </case>
                <case tag="game_start">
                    <test expr="~name~" value="Hisao" />
                    <state img="0-DPAmused.png">...Nice to see you again.</state>
                    <state img="0-DPDelighted.png">...Here to see other people's panties again, aren't you?</state>
                    <state img="0-DPDelighted.png">...Is your heart acting like a drunk percussion orchestra again, or are you just happy to see me?</state>
                </case>
                <case tag="game_start">
                    <test expr="~player~" value="Master" />
                    <state img="0-confused.png">Your name is Master? Master what?</state>
                    <state img="0-curious.png">What are you a master of exactly?</state>
                </case>
                <case tag="game_start">
                    <test expr="~player~" value="Mister" />
                    <state img="0-confused.png">Your name is Mister? Mister what?</state>
                </case>
                <case tag="swap_cards">
                    <state img="0-absent.png">~cards~.</state>
                    <state img="0-pondering.png">I have to think about what I think is the appropriate amount of cards.</state>
                    <state img="0-absent.png">~cards~ should do.</state>
                    <state img="0-bored.png">~cards~...</state>
                    <state img="0-pondering.png">~cards~ I suppose.</state>
                    <state img="0-pondering.png">Hmmm...</state>
                    <state img="0-lucid.png">I'm really spacing out, aren't I?</state>
                    <state img="0-absent.png">~cards~ cards.</state>
                    <state img="0-confused.png">What's the number...Oh yeah. ~cards~.</state>
                    <state img="0-confused.png">I'm not really good with numbers. ~cards~?</state>
                    <state img="0-doubt.png">~cards~...?</state>
                    <state img="0-absent.png">~cards~ I guess.</state>
                    <state img="0-lucid.png">...</state>
                </case>
                <case tag="swap_cards" saidMarker="sleep==2" priority="999">
                    <state img="0-sleepy.png" marker="sleep=3">Zzz...huh-wha...Oh. ~cards~ cards.</state>
                    <state img="0-sleepy.png" marker="sleep=3">Zzz...hm? ...~cards~ cards...</state>
                    <state img="0-sleepy.png" marker="sleep=3">Zzz...huh-...what did I...</state>
                </case>
                <case tag="good_hand" priority="10">
                    <state img="0-DPDelighted.png">Niiiiice...</state>
                    <state img="0-amused.png">I really like the look of these cards!</state>
                    <state img="0-amused.png">This is some really nice artwork!</state>
                    <state img="0-amused.png">These cards are as perfect as the sky!</state>
                    <state img="0-DPAmused.png">I don't know about you ~player~, but I think I can get used to these cards.</state>
                    <state img="0-amused.png">These cards are like oranges that are already peeled, perfect.</state>
                    <state img="0-amused.png">What other words are there for excitement? Because this is what I'm feeling right now.</state>
                </case>
                <case tag="okay_hand" priority="10">
                    <state img="0-confused.png">I guess I'll win this hand...or not win it...</state>
                    <state img="0-confused.png">I've had to work with worse.</state>
                    <state img="0-lucid.png">This is fine.</state>
                    <state img="0-DPNormal.png">These cards are like painting with my feet, manageable.</state>
                    <state img="0-lucid.png">...Hmm.</state>
                    <state img="0-confused.png">These cards are like having sunrise twice in a row when you want to bathe naked in moonlight. Nice, but not good enough.</state>
                    <state img="0-pondering.png">I can make these work.</state>
                    <state img="0-DPNormal.png">Could be worse. I could be peeling oranges with my feet. Of course that never goes well for me.</state>
                    <state img="0-lucid.png">...I'm OK with this.</state>
                    <state img="0-absent.png">...Not the worst thing I've seen.</state>
                    <state img="0-pondering.png">...I've seen far worse.</state>
                    <state img="0-pondering.png">This could be alright.</state>
                </case>
                <case tag="bad_hand" priority="10">
                    <state img="0-doubt.png">Did I make a mistake?</state>
                    <state img="0-DPNormal.png">...Oh.</state>
                    <state img="0-DPUpset.png">...That's not good.</state>
                    <state img="0-DPNormal.png" marker="sevenyears">Artists usually get bad luck. This is really no exception.</state>
                    <state img="0-annoyed.png">I jinxed it, didn't I?</state>
                    <state img="0-DPNormal.png">These cards are just as useful as me eating oranges with the peel still on.</state>
                    <state img="0-DPNormal.png">These cards are like sweets...I don't like sweets.</state>
                    <state img="0-lucid.png" marker="sevenyears">This is what happens when you comment on works in progress. Seven years of bad luck. Don't follow my example.</state>
                    <state img="0-DPNormal.png">...Really?</state>
                    <state img="0-confused.png">...Eh?</state>
                    <state img="0-lucid.png">...Wow...</state>
                    <state img="0-doubt.png">Why is the king looking at me like that?</state>
                    <state img="0-DPNormal.png">...The queen is silently judging me...</state>
                    <state img="0-lucid.png">...Maybe I should just stick to painting...</state>
                    <state img="0-bored.png">If poker was a game of painting, instead of stripping...I'd probably be doing better.</state>
                </case>
                <case tag="hand" alsoPlaying="emi" alsoPlayingStage="2-4" alsoPlayingSaying="Anyone else hungry? I could go for a picnic right about now.">
                    <state img="0-DPNormal.png">...Perhaps I'm hungry...but remember the last time we tried to have a picnic?</state>
                </case>
                <case tag="hand" alsoPlaying="emi" alsoPlayingStage="2-4" alsoPlayingSaying="Could someone put some music on? Preferably not something weird like what Rin listens to...">
                    <state img="0-DPNormal.png">...What? There's nothing wrong with listening to the rain...</state>
                    <state img="0-confused.png">...What are you talking about Emi? What's wrong with listening to the sky?</state>
                    <state img="0-doubt.png">I could listen to the trees all day...what are you going on about?</state>
                </case>
                <case tag="hand" alsoPlaying="emi" alsoPlayingStage="5-8" notSaidMarker="pierre" alsoPlayingSaidMarker="rin_olympics">
                    <state img="0-confused.png" marker="pierre">Pierre de...what?</state>
                    <state img="0-confused.png" marker="pierre">Pierre? Who's Pierre?</state>
                </case>
                <case tag="hand" alsoPlaying="emi" alsoPlayingStage="8" alsoPlayingSaidMarker="pirate" alsoPlayingNotSaidMarker="captain" alsoPlayingSayingMarker="captain">
                    <state img="0-DPNormal.png">...You've gotta be kidding me.</state>
                    <state img="0-DPNormal.png">...That's a bit of a mouthful really...I'm still going to call you Emi, because that's who you are.</state>
                    <state img="0-DPNormal.png">...Seriously?</state>
                    <state img="0-lucid.png">...</state>
                    <state img="0-lucid.png">...I wouldn't work well as a pirate...I'd have two hooks if that were the case...maybe an eye-patch if I'm not careful.</state>
                </case>
                <case tag="hand" alsoPlaying="emi" notSaidMarker="emiest">
                    <state img="0-lucid.png" marker="emiest">...I'd be careful playing with Emi. When it comes to competitions, she always tries to perform at her &lt;i&gt;Emi&lt;/i&gt;est.</state>
                </case>
                <case tag="hand" alsoPlaying="hanako" totalRounds="0" notSaidMarker="hanakohungry" priority="20">
                    <state img="0-curious.png" marker="hanakohungry">Hanako...Looking at you just makes me hungry for some reason...</state>
                </case>
                <case tag="hand" alsoPlaying="meia" alsoPlayingStage="0" alsoPlayingSaying="What are &quot;Kings,&quot; &quot;Queens,&quot; and &quot;Jacks,&quot; anyway?" priority="5">
                    <state img="0-confused.png">...I know that Kings and Queens are like...royal people...but...Jacks?...Your guess is as good as mine.</state>
                </case>
                <case tag="hand" alsoPlaying="pit" alsoPlayingStage="0" totalRounds="0" alsoPlayingSaidMarker="pit_tellme">
                    <state img="0-lucid.png">Oh...I'm an artist. I mean, that's what Mr. Nomiya likes to say that I am.</state>
                </case>
                <case tag="hand" alsoPlaying="pit" alsoPlayingStage="3" alsoPlayingNotSaidMarker="pit_favfood" alsoPlayingSayingMarker="pit_favfood">
                    <state img="0-DPNormal.png">Favorite food? I'd definitely say oranges...but only when they're peeled off...I don't like the peels...</state>
                </case>
                <case tag="hand" alsoPlaying="pit" alsoPlayingStage="5" alsoPlayingTimeInStage="2" alsoPlayingSayingMarker="sacredbuns">
                    <state img="0-amused.png">...Oh we can see you just fine Pit...</state>
                </case>
                <case tag="hand" alsoPlaying="sakura" alsoPlayingStage="3" notSaidMarker="zombie_clarification">
                    <state img="0-doubt.png" marker="zombie_clarification">So...you're a zombie...I've heard about them eating brains and stuff, but...wait...what [i]do[/i] you even eat?</state>
                </case>
                <case tag="hand" alsoPlaying="sakura" alsoPlayingStage="4" notSaidMarker="zombie_clarification_2">
                    <state img="0-doubt.png" marker="zombie_clarification_2">So...if you can do that with your head, does that mean you don't have to breathe?...I tried doing that once...didn't really work out so well.</state>
                    <state img="0-lucid.png" marker="zombie_clarification_2">If your head detaches like that, does that mean you don't have to breathe? I passed out on the floor last time I tried to do that.</state>
                </case>
                <case tag="hand" totalMasturbating="0" totalFinished="0" notSaidMarker="1st-nude" priority="16">
                    <condition count="1" status="lost_all" />
                    <state img="0-confused.png" marker="1st-nude">...Oh? They're still in?...</state>
                    <state img="0-confused.png" marker="1st-nude">...It's not over for them yet?</state>
                </case>
                <case tag="hand" id="0-4" alsoPlaying="emi" alsoPlayingStage="1" alsoPlayingSaidMarker="lemon" alsoPlayingNotSaidMarker="lemon2" alsoPlayingSayingMarker="lemon2">
                    <condition count="1" filter="akko" />
                    <state img="0-confused.png">...Lemons?...</state>
                    <state img="0-doubt.png">...Now you're making me hungry Emi...</state>
                    <state img="0-lucid.png">...I don't even want to know...</state>
                    <state img="0-lucid.png">At this point, I'm too afraid to ask why...and I'm rarely afraid.</state>
                    <state img="0-confused.png">...Citrus?...</state>
                </case>
                <case tag="hand" priority="5">
                    <condition count="0" filter="emi" />
                    <state img="0-doubt.png">I'm actually a little glad Emi is not here to play this. She can make me feel a little weird sometimes.</state>
                    <state img="0-lucid.png">Sometimes, Emi just talks about nothing for hours, it's like her head is made of bubblegum foam bath jelly.</state>
                </case>
                <case tag="hand" alsoPlaying="emi">
                    <condition count="1" filter="futaba" />
                    <state img="0-doubt.png">...My taste in music isn't weird...what are you talking about Emi?</state>
                </case>
                <case tag="hand" priority="9">
                    <state img="0-absent.png">Clubs...Well, I am a part of the Art Club back in Yamaku.</state>
                    <state img="0-DPNormal.png">Diamonds...They say they're a girl's best friend...Not mine. I'm friends with pencils, paints, and paper.</state>
                    <state img="0-DPDelighted.png">Spades...Well, let's call a spade a spade, not a gardening tool.</state>
                    <state img="0-pondering.png">...You're wondering if my cards are any good? Yes...No...Maybe so...</state>
                    <state img="0-bored.png">...The inner machinations of my mind are an enigma...</state>
                </case>
                <case tag="hand" saidMarker="sleep==3" priority="999">
                    <state img="0-bored.png" marker="-sleep">...Sorry...I...drifted off...</state>
                    <state img="0-bored.png" marker="sleep=0">...Did...Did I just fall asleep?</state>
                    <state img="0-bored.png" marker="sleep=0">...I never thought someone taking off accessories would be that boring...</state>
                    <state img="0-bored.png" marker="sleep=0">...I really need to stay awake...</state>
                    <state img="0-bored.png" marker="sleep=0">...What did I miss?</state>
                    <state img="0-bored.png" marker="sleep=0">...Helloooo?....</state>
                    <state img="0-bored.png" marker="sleep=0">...You discovered my weak point...</state>
                    <state img="0-bored.png" marker="sleep=0">...Why does this keep happening to me...</state>
                    <state img="0-bored.png" marker="sleep=0">...Watching paint dry is more fun than this...</state>
                    <state img="0-bored.png" marker="sleep=0">...Huuuhhh...?</state>
                    <state img="0-bored.png" marker="sleep=0">...Hmmmm...?</state>
                </case>
                <case tag="hand" alsoPlaying="emi" alsoPlayingStage="2" alsoPlayingNotSaidMarker="hungry" alsoPlayingSayingMarker="hungry">
                    <test expr="~background~" value="roof" />
                    <state img="0-doubt.png">...Wait...you haven't brought anything for yourself? That's unusual of you Emi...</state>
                </case>
                <case tag="hand" priority="9">
                    <test expr="~name~" cmp="!=" value="Hisao" />
                    <state img="0-pondering.png">Hearts...reminds me of a guy I know that has some heart thingy.</state>
                    <state img="0-DPNormal.png">Hearts...it does remind me of a drunk percussion orchestra. Why? Well...You figure that one out.</state>
                </case>
                <case tag="hand" priority="9">
                    <test expr="~name~" value="Hisao" />
                    <state img="0-amused.png">Hearts...reminds me of you Hisao!</state>
                </case>
                <case tag="hand" totalRounds="0" priority="700">
                    <state img="0-lucid.png">Why do they even call it hands anyways? Not everyone has them.</state>
                </case>
                <case tag="hand" totalRounds="24-" priority="8">
                    <state img="0-doubt.png">...My legs hurt though. They feel like slugs. Slugs made of sea slugs.</state>
                    <state img="0-lucid.png">...I feel like I've been standing here for an eternity...as if time completely stopped for whatever reason.</state>
                </case>
                <case tag="hand" totalRounds="5-" priority="10">
                    <state img="0-bored.png" marker="fourthings">Did you know I can only think of four things at the same time?</state>
                    <state img="0-DPNormal.png">Despite me being an artist, I really don't like talking about art. It's already a way to talk without talking, so why bother talking about it?</state>
                    <state img="0-bored.png">What are clouds? I always thought they were thoughts of the sky or something like that. Because, you can't touch them.</state>
                    <state img="0-sleepy.png">Usually my thoughts feel like clouds. Fluffy...white...slow...</state>
                    <state img="0-DPNormal.png">I'm trying to experience. People probably don't do this enough.</state>
                    <state img="0-absent.png">You know, I ate an orange today for breakfast.</state>
                    <state img="0-pondering.png">I don't remember the last time I ate an orange. Because it's annoying to peel one. It's on the list of things I want to learn properly.</state>
                    <state img="0-amused.png" marker="raindrops">Have I told you all how much I like rain? It's like painting. It makes me feel connected.</state>
                    <state img="0-amused.png">Have I mentioned how much I love butterflies? They are the best animal.</state>
                    <state img="0-DPUpset.png">When I was little, I didn't really have friends. Maybe it's the same now. My pens and paints were the only things that understood me.</state>
                    <state img="0-lucid.png">I paint because I don't know what else I could do. It's like this feeling that there is no choice, that it's the only possibility.</state>
                    <state img="0-doubt.png">I think I want to be different, sometimes. I've thought about changing myself lately, but it's a bit scary...like walking backwards with your eyes closed.</state>
                    <state img="0-absent.png">I kind of "collect" people, because they are interesting. People here really are amazing. Most of them, but not all.</state>
                    <state img="0-lucid.png">You know, it wouldn't be so bad to be the sky...</state>
                    <state img="0-lucid.png" marker="worry_tree">...I kind of wish I was at the "Worry Tree" right now...</state>
                    <state img="0-pondering.png">...What's that one word...You know, the one about things and stuff...</state>
                </case>
                <case tag="must_strip">
                    <state img="0-doubt.png" marker="artistunlucky">Artists are usually unlucky. They have to constantly look at their unfinished paintings...</state>
                </case>
                <case tag="must_strip" alsoPlaying="emi" totalRounds="5-">
                    <state img="0-bored.png">...I'm just as surprised as you are.</state>
                    <state img="0-lucid.png">Wouldn't you have to be &lt;i&gt;me&lt;/i&gt; to be as good as me? I...don't think you'd want to be me.</state>
                </case>
                <case tag="must_strip" alsoPlaying="pit">
                    <state img="0-doubt.png">Well, there is &lt;i&gt;one&lt;/i&gt; thing I can take off without much problem.</state>
                </case>
                <case tag="must_strip" saidMarker="dirty_floor">
                    <state img="0-disgust.png">Wait, I'm next?...So that means...</state>
                </case>
                <case tag="must_strip_winning">
                    <state img="0-confused.png">Me?...Well if you say so.</state>
                    <state img="0-lucid.png">Oh, I'm next?...OK.</state>
                </case>
                <case tag="must_strip_winning" totalRounds="0">
                    <state img="0-confused.png">...I'm first...while I seem to be the most clothed person in the room. I guess that makes sense.</state>
                </case>
                <case tag="must_strip_winning" totalRounds="5-">
                    <state img="0-pondering.png">It had to be my turn eventually.</state>
                    <state img="0-DPAmused.png">That...took a while, didn't it?</state>
                    <state img="0-absent.png">While everyone else is getting naked, I'm just standing here with my sandals still on. That changes now it seems.</state>
                    <state img="0-DPAmused.png">...So it's finally my turn...</state>
                </case>
                <case tag="must_strip_normal">
                    <state img="0-pondering.png">I'm next? Alright then.</state>
                    <state img="0-lucid.png">...Guess I'm up.</state>
                    <state img="0-DPNormal.png">Oh...I guess I lost...</state>
                </case>
                <case tag="must_strip_normal" totalRounds="0">
                    <state img="0-absent.png">...I'm first? Well, alright then...</state>
                </case>
                <case tag="must_strip_losing">
                    <state img="0-DPNormal.png">I'm next?...This isn't going too well.</state>
                    <state img="0-DPNormal.png">...This is not going well for me.</state>
                </case>
                <case tag="must_strip_losing" totalRounds="0">
                    <state img="0-DPNormal.png">I'm first? ...Fine.</state>
                </case>
                <case tag="stripping">
                    <state img="0-strippingsandals.png">Don't worry, I'll be able to take these sandals off without any help.</state>
                    <state img="0-strippingsandals.png">At least I can take these off without much struggle.</state>
                    <state img="0-strippingsandals.png">It really doesn't take hands to take these off.</state>
                    <state img="0-strippingsandals.png">I pretty much take these off everyday, so it's no biggie.</state>
                    <state img="0-strippingsandals.png">I wonder why these are called sandals anyways?</state>
                </case>
                <case tag="stripping" alsoPlaying="emi" alsoPlayingSaidMarker="best_sandals">
                    <state img="0-strippingsandals.png">...Well, they are one of a kind...or is it two of a kind?...</state>
                </case>
                <case tag="stripping" alsoPlaying="emi" alsoPlayingSaidMarker="sandal_enigma">
                    <state img="0-strippingsandals.png">...Trust me Emi, once your start walking barefoot, you'll know.</state>
                    <state img="0-strippingsandals.png">...It's not obvious? Do you realize how dirty the ground is?</state>
                </case>
                <case tag="stripping" alsoPlaying="emi" alsoPlayingSaidMarker="sandal_sight">
                    <state img="0-strippingsandals.png">...Were you peaking, Emi?</state>
                    <state img="0-strippingsandals.png">...Don't cheat, Emi.</state>
                </case>
                <case tag="stripping" alsoPlaying="franziska" alsoPlayingSaying="Too slow! Take your ~clothing~ off faster!">
                    <state img="0-strippingsandals.png" marker="cropswing">Don't worry, I'll be able to take these sandals off without any help.</state>
                    <state img="0-strippingsandals.png" marker="cropswing">At least I can take these off without much struggle.</state>
                    <state img="0-strippingsandals.png" marker="cropswing">It really doesn't take hands to take these off.</state>
                    <state img="0-strippingsandals.png" marker="cropswing">I pretty much take these off everyday, so it's no biggie.</state>
                    <state img="0-strippingsandals.png" marker="cropswing">I wonder why these are called sandals anyways?</state>
                </case>
                <case tag="stripping" alsoPlaying="franziska" saidMarker="artistunlucky" alsoPlayingSaying="Too slow! Take your ~clothing~ off faster!" priority="999">
                    <state img="0-strippingsandals.png" marker="cropswing2">So artists can't find romance, their favorite TV shows are canceled, or they die young because of an unspecified disease.</state>
                </case>
                <case tag="stripping" alsoPlaying="pit">
                    <state img="0-strippingsandals.png">...</state>
                </case>
                <case tag="stripping" saidMarker="artistunlucky" priority="999">
                    <state img="0-strippingsandals.png" marker="artistunlucky2">So artists can't find romance, their favorite TV shows are canceled, or they die young because of an unspecified disease.</state>
                </case>
                <case tag="stripping" saidMarker="dirty_floor">
                    <state img="0-strippingsandals.png">...Well, isn't that just great?</state>
                </case>
                <case tag="male_must_strip">
                    <state img="0-DPAmused.png">Looks like it isn't me this time.</state>
                    <state img="0-DPAmused.png">...Nice.</state>
                    <state img="0-DPDelighted.png">Looks like the bad luck's getting to you, huh?</state>
                    <state img="0-DPDelighted.png">Ooh...bad luck.</state>
                    <state img="0-absent.png">So what's coming off this time?</state>
                    <state img="0-DPDelighted.png">Ooh...~name~ is up.</state>
                    <state img="0-absent.png">~name~ is up this time.</state>
                    <state img="0-DPDelighted.png">Oh cool, I survived.</state>
                    <state img="0-confused.png">I can list off a bunch of bad omens...Which one did you break this time?</state>
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's ~name~'s turn?</state>
                    <state img="0-bored.png">It's ~name~'s turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-curious.png">Well, looks like you lost ~name~.</state>
                    <state img="0-pondering.png">I wonder what's under those...</state>
                    <state img="0-curious.png">...Well ~name~?</state>
                </case>
                <case tag="male_must_strip" target="pit" targetStage="2" targetSaying="Aw... I lost again?">
                    <state img="0-absent.png" marker="pitsandals=1">Hey Pit...I...gotta ask...</state>
                </case>
                <case tag="male_must_strip" target="pit" targetStage="3">
                    <state img="0-confused.png">So what's next Pit? The wings?</state>
                </case>
                <case tag="male_must_strip" target="pit" targetStage="4">
                    <state img="0-amused.png">It's time.</state>
                </case>
                <case tag="female_human_must_strip">
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's ~player~'s turn?</state>
                    <state img="0-bored.png">It's ~player~'s turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-DPAmused.png">Well, looks like you lost, ~player~.</state>
                    <state img="0-pondering.png">I wonder what's under those...</state>
                    <state img="0-DPDelighted.png">...Well ~player~?</state>
                </case>
                <case tag="female_must_strip" target="zizou" targetStage="0">
                    <condition count="0" filter="large_breasts" />
                    <state img="0-doubt.png">...My boobs aren't &lt;i&gt;that&lt;/i&gt; large...</state>
                </case>
                <case tag="female_must_strip" priority="20">
                    <state img="0-DPAmused.png">Looks like it isn't me this time.</state>
                    <state img="0-DPAmused.png">...Nice.</state>
                    <state img="0-DPDelighted.png">Looks like the bad luck's getting to you, huh?</state>
                    <state img="0-DPDelighted.png">Ooh...bad luck.</state>
                    <state img="0-absent.png">So what's coming off this time?</state>
                    <state img="0-amused.png">Ooh...~name~ is up.</state>
                    <state img="0-absent.png">~name~ is up this time.</state>
                    <state img="0-DPDelighted.png">Oh cool, I survived.</state>
                    <state img="0-confused.png">I can list off a bunch of bad omens...Which one did you break this time?</state>
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's ~name~'s turn?</state>
                    <state img="0-bored.png">It's ~name~'s turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-DPAmused.png">Well, looks like you lost ~name~.</state>
                    <state img="0-pondering.png">I wonder what's under those...</state>
                    <state img="0-curious.png">...Well ~name~?</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="0">
                    <state img="0-DPNormal.png">Aimee's next...Wait, what's with the gun-</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="1">
                    <state img="0-absent.png">Wait...it's Aimee's turn again?</state>
                    <state img="0-absent.png">Wait...Aimee's going again?</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="2">
                    <state img="0-lucid.png">Aimee's tur-...Oh...here we go again.</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="3">
                    <state img="0-DPNormal.png">...I'm used to this at this point.</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="4">
                    <state img="0-confused.png">I'm not saying that I saw your panties Aimee...but...how are you going to make your last shot?</state>
                </case>
                <case tag="female_must_strip" target="aimee" targetStage="5">
                    <state img="0-confused.png">Aimee lost...so...is she going to shoot herself now...?</state>
                </case>
                <case tag="female_must_strip" target="emi" targetStage="0" priority="10">
                    <state img="0-confused.png">Emi?...are you sure you're at your &lt;i&gt;Emi&lt;/i&gt;est today?</state>
                </case>
                <case tag="female_must_strip" target="emi" targetStage="1-7" priority="100">
                    <state img="0-DPAmused.png">Looks like it isn't me this time.</state>
                    <state img="0-DPAmused.png">...Nice one, Emi.</state>
                    <state img="0-DPDelighted.png">Looks like the bad luck's getting to you, huh?</state>
                    <state img="0-DPDelighted.png">Ooh...bad luck.</state>
                    <state img="0-absent.png">So what's coming off this time?</state>
                    <state img="0-amused.png">Ooh...Emi is up.</state>
                    <state img="0-absent.png">Emi is up this time.</state>
                    <state img="0-DPDelighted.png">Oh cool, I survived.</state>
                    <state img="0-confused.png">I can list off a bunch of bad omens...Which one did you break this time, Emi?</state>
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's Emi's turn?</state>
                    <state img="0-bored.png">It's Emi's turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-DPAmused.png">Well, looks like you lost, Emi.</state>
                    <state img="0-curious.png">...Well Emi?</state>
                </case>
                <case tag="female_must_strip" target="felicia" targetStage="0">
                    <state img="0-confused.png">A cat girl?...wait...we weren't sucked into one of those "mangas"...were we?</state>
                </case>
                <case tag="female_must_strip" target="felicia" targetStage="1">
                    <state img="0-doubt.png">...What are you shaving this time...?</state>
                </case>
                <case tag="female_must_strip" target="hanako" targetStage="0" targetSaying="I guess I couldn't expect a p-perfect win...">
                    <state img="0-lucid.png">...Nobody's perfect.</state>
                    <state img="0-DPNormal.png">...Join the club.</state>
                    <state img="0-DPNormal.png">...Welcome to my world...</state>
                </case>
                <case tag="female_must_strip" target="hanako" targetStage="0-7" priority="100">
                    <state img="0-DPAmused.png">Looks like it isn't me this time.</state>
                    <state img="0-DPAmused.png">...Nice one, Hanako.</state>
                    <state img="0-bored.png">Looks like the bad luck's getting to you too, huh?</state>
                    <state img="0-DPDelighted.png">Ooh...bad luck.</state>
                    <state img="0-absent.png">So what's coming off this time?</state>
                    <state img="0-amused.png">Ooh...MTG is up.</state>
                    <state img="0-absent.png">Hanako is up this time.</state>
                    <state img="0-DPDelighted.png">Oh cool, I survived.</state>
                    <state img="0-confused.png">I can list off a bunch of bad omens...Which one did you break this time, TG?</state>
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's TG's  turn?</state>
                    <state img="0-bored.png">It's Hanako's turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-DPAmused.png">Well, looks like you lost, Hanako.</state>
                    <state img="0-curious.png">...Well MTG?</state>
                </case>
                <case tag="female_must_strip" target="hanako" targetStage="1">
                    <state img="0-annoyed.png">...Whoever invented shoes clearly didn't care for people living without arms.</state>
                    <state img="0-DPUpset.png">...I don't like the shoes in Yamaku...they are always so....uncomfortable...and sweaty...</state>
                    <state img="0-DPDelighted.png">Finally...bring those feet to freedom.</state>
                </case>
                <case tag="female_must_strip" target="hanako" targetStage="2">
                    <state img="0-confused.png">How can you really bring the mood down if it really can't go in any direction anyways?</state>
                    <state img="0-lucid.png">...Don't worry about it.</state>
                    <state img="0-lucid.png">...You need to learn to let go.</state>
                    <state img="0-confused.png">Stop worrying Hanako, it's not a problem...</state>
                </case>
                <case tag="female_must_strip" target="leggy" targetStage="0">
                    <state img="0-bored.png">...Did I take too much of those loopy pills again?</state>
                </case>
                <case tag="female_must_strip" target="leggy" targetStage="1">
                    <state img="0-confused.png">...What is that thing on your leg?</state>
                </case>
                <case tag="female_must_strip" target="leggy" targetStage="2">
                    <state img="0-curious.png">...Wait...what are you doing with that razor?</state>
                </case>
                <case tag="female_must_strip" target="leggy" targetStage="3">
                    <state img="0-curious.png">...Can I have your wool after this?</state>
                </case>
                <case tag="female_must_strip" target="sakura" targetStage="1" targetSaying="This floor's a little gross, huh? Well, I won't get my socks dirty. Consider it a two-fer!">
                    <state img="0-lucid.png" marker="dirty_floor">Thanks for the heads up...I'd rather not take off my sandals tonight.</state>
                </case>
                <case tag="female_must_strip" target="sakura" targetStage="2">
                    <state img="0-confused.png">Huh? What's going on exactly?</state>
                </case>
                <case tag="female_must_strip" target="sakura" targetStage="3">
                    <state img="0-lucid.png">Trust me, Sakura. I know your pain--</state>
                </case>
                <case tag="female_must_strip" target="sakura" targetStage="5">
                    <state img="0-amused.png">Guess I'm finding out today.</state>
                </case>
                <case tag="tie">
                    <state img="0-curious.png">A tie?...Yeah, this is a tie...What about it?</state>
                </case>
                <case tag="male_human_must_strip">
                    <state img="0-DPAmused.png">Let's see what'cha got.</state>
                    <state img="0-bored.png">Oh? It's ~player~'s turn?</state>
                    <state img="0-bored.png">It's ~player~'s turn.</state>
                    <state img="0-confused.png">Hmm...Now what?</state>
                    <state img="0-absent.png">This should be interesting...or not.</state>
                    <state img="0-DPAmused.png">Well, looks like you lost, ~player~.</state>
                    <state img="0-pondering.png">I wonder what's under those...</state>
                    <state img="0-DPDelighted.png">...Well ~player~?</state>
                </case>
                <case tag="male_removing_accessory" alsoPlaying="ini" alsoPlayingStage="0-4" alsoPlayingSaying="I'm gonna be honest, I have no idea what's going on right now.">
                    <state img="0-lucid.png">...Me neither Ini...me neither...</state>
                </case>
                <case tag="male_removing_accessory" priority="40">
                    <state img="0-DPNormal.png">...You're removing &lt;i&gt;that&lt;/i&gt;?</state>
                    <state img="0-lucid.png">...Yay.</state>
                    <state img="0-DPNormal.png">So, you're removing the ~clothing~ hm?</state>
                    <state img="0-lucid.png">...Joy.</state>
                    <state img="0-DPNormal.png">Just the ~clothing~ huh?</state>
                    <state img="0-DPNormal.png">...The ~clothing~ it is.</state>
                    <state img="0-DPNormal.png">You couldn't take off something better than &lt;i&gt;that&lt;/i&gt;?</state>
                    <state img="0-confused.png">...What are you up to ~name~?</state>
                    <state img="0-confused.png">Just another peel at the orange.</state>
                    <state img="0-bored.png">...Layers at a time...</state>
                    <state img="0-pondering.png">...Just another thin layer...like an onion.</state>
                    <state img="0-doubt.png" marker="forgetful=1">(...Wait...wasn't there something else I should be doing by now?)</state>
                    <state img="0-sleepy.png" marker="sleep=1">Hm...I'm just gonna...</state>
                    <state img="0-sleepy.png" marker="sleep=1">I...feel like I'm gonna...</state>
                    <state img="0-sleepy.png" marker="sleep=1">You're removing... the ~clothing~...?</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="0" targetSaying="I guess it's not so bad right now.">
                    <state img="0-lucid.png">I assume it will only spiral downwards from here.</state>
                    <state img="0-lucid.png">It's only gonna get worse from here.</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="0" targetSaying="It's always such a hassle to get these off.">
                    <state img="0-lucid.png">...Any clothes that isn't my sandals is a hassle for me really.</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="0" targetSaying="You'd be surprised how much these can irritate in the middle of a firefight.">
                    <state img="0-doubt.png">Fire fight?...You...don't look like a firefighter.</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="1" targetSaying="Give me a minute. It's a bit tricky to get undone.">
                    <state img="0-confused.png">What's the sash made of then? It looks too golden to be a kind of rubber...I think...</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="1" targetSaying="Hope my bottoms won't fall down...">
                    <state img="0-curious.png">Hmm? Is there something wrong with your tackle?</state>
                </case>
                <case tag="male_removing_accessory" target="pit" targetStage="1" targetSaying="This sash's been through so much with me...">
                    <state img="0-DPNormal.png">Wish I could say the same about my art stuff. I tend to lose my stuff kind of easily.</state>
                </case>
                <case tag="male_removed_accessory">
                    <state img="0-absent.png">...Moving on.</state>
                    <state img="0-DPNormal.png">...What's a good word that can measure disappointment in a wide sense?</state>
                    <state img="0-lucid.png">...</state>
                    <state img="0-lucid.png">...Can we move on now?</state>
                    <state img="0-lucid.png">Just as dull as my last painting...And now that I said that, I just added more bad luck to myself.</state>
                    <state img="0-doubt.png">...Why are you like this?</state>
                    <state img="0-lucid.png">That's another one down.</state>
                    <state img="0-DPNormal.png">I usually don't have much interest in people who are not interesting.</state>
                    <state img="0-DPNormal.png">...Such a cynic...</state>
                    <state img="0-DPNormal.png">Well, that was dull.</state>
                    <state img="0-confused.png">...Is that all you got?</state>
                    <state img="0-absent.png">...I can get really spacey when nothing happens at all...just a warning.</state>
                </case>
                <case tag="male_removed_accessory" notSaidMarker="paintanalysis">
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably the darkest shade of gray I can think of...</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably a very dark blue...not Prussian blue, mind you.</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably a dark shade of green...Like the stuff you find in sewers.</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably a very dirty orange...like the peels that I see when I'm at the atelier.</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably a dark brown...I rarely use brown in my paintings...it's always been a dirty color.</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably white. Just...really plain and boring when used incorrectly.</state>
                    <state img="0-lucid.png" marker="paintanalysis">If you were a color, I'd say you're probably a charcoal color...or is it just a really dark gray?</state>
                </case>
                <case tag="male_removed_accessory" saidMarker="forgetful">
                    <state img="0-lucid.png" marker="forgetful=0">(...And...I lost what I was thinking...)</state>
                    <state img="0-confused.png" marker="forgetful=0">(...Wait...what was I thinking about again?)</state>
                    <state img="0-pondering.png" marker="forgetful=0">(...Did I remember to finish that project back in Yamaku?...or...wait...I already did that.)</state>
                </case>
                <case tag="male_removed_accessory" saidMarker="sleep==1" priority="999">
                    <state img="0-asleep.png" marker="sleep=2">Zzz...</state>
                </case>
                <case tag="male_removed_accessory" target="pit" targetStage="1" targetSaying="Huh. A bit easier than I was expecting.">
                    <state img="0-lucid.png">...Let's hope it gets easier...for me at least.</state>
                </case>
                <case tag="male_removed_accessory" target="pit" targetStage="1" targetSaying="I'm just getting started, you know.">
                    <state img="0-pondering.png">Fair enough, I wonder what there is to offer in this game...</state>
                </case>
                <case tag="male_removed_accessory" target="pit" targetStage="2" targetSaying="Everything's fine. Just act like nothing even happened.">
                    <state img="0-DPNormal.png">I'll try...but I still know that your sash is gone.</state>
                </case>
                <case tag="male_removed_accessory" target="pit" targetStage="2" targetSaying="Its sacrifice will not be in vain!">
                    <state img="0-lucid.png">May the sash rest in peace then.</state>
                </case>
                <case tag="male_removed_accessory" target="pit" targetStage="2" targetSaying="Wait... did weapons count? Shoot, I could've brought my bow! Too late now...">
                    <state img="0-confused.png">Bow?...What kind of bow? Are we talking about a hair bow?...Then again, hair bows can't be weapons...</state>
                    <state img="0-confused.png">Bow?...What kind of bow? Are we talking about a bow tie?...Then again, bow ties can't be weapons...</state>
                    <state img="0-curious.png">Bow?...What kind of bow? Are we talking about a rainbow?...Then again, rainbows can't be weapons...</state>
                </case>
                <case tag="female_removing_accessory" alsoPlaying="ini" alsoPlayingStage="0-4" notSaidMarker="mindreader">
                    <state img="0-amused.png" marker="mindreader">Are you a mind reader? Is that your disability? How unique!</state>
                </case>
                <case tag="female_removing_accessory" alsoPlaying="ini" alsoPlayingStage="0-4" saidMarker="mindreader">
                    <state img="0-amused.png">It really must be nice being able to read minds...</state>
                </case>
                <case tag="female_removing_accessory" priority="40">
                    <state img="0-DPNormal.png">...You're removing &lt;i&gt;that&lt;/i&gt;?</state>
                    <state img="0-lucid.png">...Yay.</state>
                    <state img="0-DPNormal.png">So, you're removing the ~clothing~ hm?</state>
                    <state img="0-lucid.png">...Joy.</state>
                    <state img="0-DPNormal.png">Just the ~clothing~ huh?</state>
                    <state img="0-DPNormal.png">...The ~clothing~ it is.</state>
                    <state img="0-DPNormal.png">You couldn't take off something better than &lt;i&gt;that&lt;/i&gt;?</state>
                    <state img="0-confused.png">...What are you up to ~name~?</state>
                    <state img="0-confused.png">Just another peel at the orange.</state>
                    <state img="0-bored.png">...Layers at a time...</state>
                    <state img="0-pondering.png">...Just another thin layer...like an onion.</state>
                    <state img="0-doubt.png" marker="forgetful=1">(...Wait...wasn't there something else I should be doing by now?)</state>
                    <state img="0-sleepy.png" marker="sleep=1">Hm...I'm just gonna...</state>
                    <state img="0-sleepy.png" marker="sleep=1">I...feel like I'm gonna...</state>
                    <state img="0-sleepy.png" marker="sleep=1">You're removing... the ~clothing~...?</state>
                </case>
                <case tag="female_removing_accessory" target="akko" targetStage="0">
                    <state img="0-surprised.png">...Whoa. Is she &lt;i&gt;changing&lt;/i&gt; clothes? Or am I just drifting off?</state>
                    <state img="0-surprised.png">...Now this is something worth seeing...</state>
                </case>
                <case tag="female_removing_accessory" target="akko" targetStage="0" targetSaidMarker="necronomicon">
                    <state img="0-surprised.png">Whoa! What kind of black magic is this?</state>
                    <state img="0-doubt.png">...OK, what's the best word I can describe about how I feel in this kind of situation?...I feel more than just 'shocked' right now...</state>
                </case>
                <case tag="female_removing_accessory" target="akko" targetStage="1">
                    <state img="0-amused.png">...I think I know what I'm gonna paint next...</state>
                    <state img="0-amused.png">...Those clothes changes is getting me inspired to do even more with my paintings.</state>
                </case>
                <case tag="female_removing_accessory" target="akko" targetStage="3">
                    <state img="0-curious.png">Honestly, I don't think I'll get tired of this...</state>
                    <state img="0-amused.png">Even if you are just removing a tie...at least it's not making me fall asleep.</state>
                </case>
                <case tag="female_removing_accessory" target="emi" targetStage="0" targetSaying="I won't be using these, anyway. Unless any of you want to race soon. I'd be down.">
                    <state img="0-lucid.png">...No thanks...I'm more of a painter than a runner.</state>
                </case>
                <case tag="female_removing_accessory" target="emi" targetStage="0" targetSaying="I'll start with my shoes. Shocking, I know.">
                    <state img="0-DPNormal.png">Of course you start with the shoes...</state>
                </case>
                <case tag="female_removing_accessory" target="emi" targetStage="0" targetSaying="The moment you've all been waiting for...I'm taking off my shoes.">
                    <state img="0-lucid.png">...Seeing as you run every day, this isn't surprising.</state>
                </case>
                <case tag="female_removing_accessory" target="emi" targetStage="0" targetSaying="This is why everyone came to play this game, right? To watch me take my shoes off?">
                    <state img="0-DPNormal.png">Starting with the shoes I see...</state>
                </case>
                <case tag="female_removing_accessory" target="emi" targetStage="1" targetSayingMarker="wave">
                    <state img="0-DPNormal.png">...Please don't do that.</state>
                    <state img="0-DPNormal.png">...I won't be doing that with my tie.</state>
                </case>
                <case tag="female_removing_accessory" target="hanako" targetStage="1" targetSaying="B-back at school... I had a habit of only stepping on the d-darker tiles...">
                    <state img="0-curious.png">Huh...really? I...haven't really paid too much attention to that kind of detail.</state>
                </case>
                <case tag="female_removing_accessory" target="hanako" targetStage="1" targetSaying="B-back at Yamaku Academy... I p-played a game where I'd try to only walk on darker tiles...">
                    <state img="0-curious.png">Huh...really? I...haven't really paid too much attention to that kind of detail.</state>
                </case>
                <case tag="female_removing_accessory" target="leggy" targetStage="0">
                    <state img="0-pondering.png">...Then again...I'm not sick...at least, I don't think so.</state>
                </case>
                <case tag="female_removing_accessory" target="leggy" targetStage="1">
                    <state img="0-doubt.png">...Are you okay?</state>
                    <state img="0-doubt.png">...That looked like it hurt a little.</state>
                </case>
                <case tag="female_removing_accessory" target="velma" targetStage="0">
                    <state img="0-lucid.png">I wouldn't...you know it's bad luck to peek at a girl's panties.</state>
                </case>
                <case tag="female_removing_accessory" target="zizou" targetStage="0">
                    <state img="0-bored.png">Oh...well that's not very--</state>
                </case>
                <case tag="female_removing_accessory" target="zizou" targetStage="1">
                    <state img="0-curious.png">Don't tell me your scarf is also--</state>
                </case>
                <case tag="female_removed_accessory">
                    <state img="0-absent.png">...Moving on.</state>
                    <state img="0-DPNormal.png">...What's a good word that can measure disappointment in a wide sense?</state>
                    <state img="0-lucid.png">...</state>
                    <state img="0-lucid.png">...Can we move on now?</state>
                    <state img="0-lucid.png">Just as dull as my last painting...And now that I said that, I just added more bad luck to myself.</state>
                    <state img="0-doubt.png">...Why are you like this?</state>
                    <state img="0-lucid.png">That's another one down.</state>
                    <state img="0-DPNormal.png">I usually don't have much interest in people who are not interesting.</state>
                    <state img="0-DPNormal.png">...Such a cynic...</state>
                    <state img="0-DPNormal.png">Well, that was dull.</state>
                    <state img="0-confused.png">...Is that all you got?</state>
                    <state img="0-absent.png">...I can get really spacey when nothing happens at all...just a warning.</state>
                </case>
                <case tag="female_removed_accessory" saidMarker="forgetful">
                    <state img="0-lucid.png" marker="forgetful=0">(...And...I lost what I was thinking...)</state>
                    <state img="0-confused.png" marker="forgetful=0">(...Wait...what was I thinking about again?)</state>
                    <state img="0-pondering.png" marker="forgetful=0">(...Did I remember to finish that project back in Yamaku?...or...wait...I already did that.)</state>
                </case>
                <case tag="female_removed_accessory" saidMarker="sleep==1" priority="999">
                    <state img="0-asleep.png" marker="sleep=2">Zzz...</state>
                </case>
                <case tag="female_removed_accessory" target="akko" targetStage="1">
                    <state img="0-DPAmused.png">Well, this game just got a lot more interesting.</state>
                    <state img="0-lucid.png">I better not fall asleep for any of this...</state>
                </case>
                <case tag="female_removed_accessory" target="akko" targetStage="1" targetSaying="Awwh, but I really liked that hat! Well... hmm... Let me think of something to do this next hand... you guys are getting a special, impromptu performance tonight, for sure!">
                    <state img="0-amused.png">Looking forward to it Akko...</state>
                </case>
                <case tag="female_removed_accessory" target="akko" targetStage="1" targetSaying="Ha! Wasn’t that cool? Hold on, I think I brought my spellbook with me somewhere... any requests? I'll show you some of my best stuff tonight, I promise!">
                    <state img="0-curious.png">Well...I can't really think of anything at the moment...I can't really think too much anyways, but I do wanna see more.</state>
                </case>
                <case tag="female_removed_accessory" target="akko" targetStage="2">
                    <state img="0-curious.png">So...magical...</state>
                </case>
                <case tag="female_removed_accessory" target="akko" targetStage="4">
                    <state img="0-amused.png">Do you know any other witches? It wouldn't be so bad to be a witch myself.</state>
                </case>
                <case tag="female_removed_accessory" target="emi" targetStage="1" targetSaying="And don't look at my underwear. You're not supposed to see that yet. Earn it.">
                    <state img="0-lucid.png">...Wasn't planning on it...</state>
                    <state img="0-lucid.png">...I didn't even want to see your panties anyways.</state>
                </case>
                <case tag="female_removed_accessory" target="emi" targetStage="1" targetSaying="My feet are prosthetic so they aren't going to smell bad, I promise!">
                    <state img="0-lucid.png">...Like the time you tried to make stew last March? Never again...</state>
                </case>
                <case tag="female_removed_accessory" target="emi" targetStage="1" targetSaying="My legs are prosthetic so this is a little tricky. I was in a car accident and they had to be amputated below the knee.">
                    <state img="0-pondering.png">...I was born without arms...I think.</state>
                </case>
                <case tag="female_removed_accessory" id="0-7" target="emi" targetStage="2" targetTimeInStage="100" targetSaidMarker="wave">
                    <state img="0-lucid.png">(...If I were able to facepalm...I would.)</state>
                    <state img="0-lucid.png">...Wow...</state>
                    <state img="0-pondering.png">...Look at it go...</state>
                </case>
                <case tag="female_removed_accessory" target="hanako" targetStage="2" targetSaying="I think I d-did it b-because I was lonely...">
                    <state img="0-DPNormal.png">...I know a thing or two about loneliness... I've painted lots of depictions of that.</state>
                </case>
                <case tag="female_removed_accessory" target="hanako" targetStage="2" targetSaying="I've heard that's a symptom of l-loneliness...">
                    <state img="0-pondering.png">...I know a thing or two about loneliness... I've painted lots of depictions of that.</state>
                </case>
                <case tag="female_removed_accessory" target="leggy" targetStage="1">
                    <state img="0-curious.png">...So I'm not the only one seeing a talking sheep?</state>
                </case>
                <case tag="female_removed_accessory" target="leggy" targetStage="2">
                    <state img="0-lucid.png">...Splendid.</state>
                </case>
                <case tag="female_removed_accessory" target="velma" targetStage="1">
                    <state img="0-lucid.png">...Still not looking.</state>
                </case>
                <case tag="female_removed_accessory" target="zizou" targetStage="1">
                    <state img="0-surprised.png">Wait- Your hat is just a bunch of butterflies? That's so cool...</state>
                </case>
                <case tag="female_removed_accessory" target="zizou" targetStage="2">
                    <state img="0-surprised.png">They're butterflies too...Is everything you're wearing made of butterflies?</state>
                </case>
                <case tag="male_removing_minor">
                    <state img="0-lucid.png">...Goodbye ~clothing~.</state>
                    <state img="0-pondering.png">...Fair choice.</state>
                    <state img="0-DPAmused.png">...Hey, I'm not sleepy this time.</state>
                    <state img="0-bored.png">...I think you made a fair choice this time.</state>
                </case>
                <case tag="male_removing_minor" target="pit" targetStage="2" saidMarker="pitsandals==1">
                    <state img="0-curious.png" marker="pitsandals=2">Where did you get your sandals?...I mean, I do like my pair, but yours...I don't think I've seen anything like them.</state>
                </case>
                <case tag="male_removed_minor">
                    <state img="0-bored.png">...Well that works.</state>
                    <state img="0-DPAmused.png">...Not bad...</state>
                    <state img="0-DPDelighted.png">Not bad at all...</state>
                    <state img="0-lucid.png">...That'll do.</state>
                    <state img="0-absent.png">...Alright then.</state>
                    <state img="0-absent.png">...Oookay....</state>
                    <state img="0-DPNormal.png">I'm not disappointed...but I'm not satisfied either.</state>
                    <state img="0-DPNormal.png">At least it wasn't something else.</state>
                </case>
                <case tag="male_removed_minor" target="pit" targetStage="3" saidMarker="pitsandals==2">
                    <state img="0-amused.png" marker="pitsandals=3">I think they actually look really nice.</state>
                </case>
                <case tag="female_removing_minor">
                    <state img="0-absent.png">...Goodbye ~clothing~.</state>
                    <state img="0-pondering.png">...Fair choice.</state>
                    <state img="0-DPAmused.png">...Hey, I'm not sleepy this time.</state>
                    <state img="0-bored.png">...I think you made a fair choice this time.</state>
                </case>
                <case tag="female_removing_minor" target="aimee" targetStage="1">
                    <state img="0-surprised.png">Oh!</state>
                    <state img="0-surprised.png">It's raining! And not in the good way!</state>
                </case>
                <case tag="female_removing_minor" target="aimee" targetStage="2">
                    <state img="0-curious.png">There's just so many bullets...</state>
                </case>
                <case tag="female_removing_minor" target="emi" targetStage="6">
                    <state img="0-curious.png">Wait...why didn't you take those off first?</state>
                </case>
                <case tag="female_removing_minor" target="hanako" targetStage="2" targetSaying="I think I'm getting more comfortable with this...">
                    <state img="0-lucid.png">...That's good and all...but I wouldn't stand so close to people who can see your panties from below your skirt.</state>
                </case>
                <case tag="female_removing_minor" id="0-10" target="leggy" targetStage="2">
                    <state img="0-confused.png">...?</state>
                    <state img="0-confused.png">Are you actually shearing yourself?</state>
                </case>
                <case tag="female_removing_minor" target="sakura" targetStage="1">
                    <state img="0-confused.png">Why would I even peek into your panties? It's a bad omen.</state>
                </case>
                <case tag="female_removing_minor" id="0-11" target="sakura" targetStage="2">
                    <state img="0-curious.png">Hey...you have some waterfall-colored paint on you...</state>
                </case>
                <case tag="female_removing_minor" id="0-12" target="sakura" targetStage="3" targetSayingMarker="headless">
                    <state img="0-disgust.png">...</state>
                </case>
                <case tag="female_removing_minor" target="sayori" targetStage="1">
                    <state img="0-DPNormal.png">I usually just call it a big shirt...though, that's a piece of clothing I don't worry about, so I really don't care.</state>
                </case>
                <case tag="female_removing_minor" target="zizou" targetStage="2">
                    <state img="0-amused.png">Ooh! It's time for some more butterflies!</state>
                </case>
                <case tag="female_removing_minor" target="zizou" targetStage="3">
                    <state img="0-curious.png">Here we go again...</state>
                </case>
                <case tag="female_removing_minor" target="zizou" targetStage="4">
                    <state img="0-pondering.png">Hm...I wonder who has the best feet...</state>
                </case>
                <case tag="female_removed_minor">
                    <state img="0-bored.png">...Well that works.</state>
                    <state img="0-DPAmused.png">...Not bad...</state>
                    <state img="0-DPDelighted.png">Not bad at all...</state>
                    <state img="0-lucid.png">...That'll do.</state>
                    <state img="0-absent.png">...Alright then.</state>
                    <state img="0-absent.png">...Oookay....</state>
                    <state img="0-lucid.png">I'm not disappointed...but I'm not satisfied either.</state>
                    <state img="0-DPNormal.png">At least it wasn't something else.</state>
                </case>
                <case tag="female_removed_minor" target="aimee" targetStage="2">
                    <state img="0-doubt.png">...That's a waste of sandals...I could of probably used those.</state>
                    <state img="0-curious.png">I wonder how long it took you to master that... It took me a bit to master painting with my feet.</state>
                    <state img="0-DPUpset.png">OK...that looks very dangerous...</state>
                </case>
                <case tag="female_removed_minor" target="aimee" targetStage="3">
                    <state img="0-amused.png">It's actually really interesting how the bullets seem to just...bounce and fly around with no care.</state>
                    <state img="0-bored.png">It's really neat...how the bullets bounce and fly around...It's almost like...hypnosis...or something.</state>
                </case>
                <case tag="female_removed_minor" id="0-6" target="emi" targetStage="7">
                    <state img="0-confused.png">...Those aren't your usual pair of legs...</state>
                </case>
                <case tag="female_removed_minor" target="emi" targetStage="7" targetSaying="Pretty soon I'll have to take off real clothes if I don't get my act together.">
                    <state img="0-absent.png">...I can hardly contain myself.</state>
                    <state img="0-lucid.png">...Can't wait.</state>
                </case>
                <case tag="female_removed_minor" target="hanako" targetStage="3" targetSaying="So please don't treat me any differently than you would anyone else.">
                    <state img="0-DPAmused.png">...Just saying.</state>
                </case>
                <case tag="female_removed_minor" target="kyoko" targetStage="6">
                    <state img="0-DPUpset.png">Oh. Oh my...</state>
                    <state img="0-DPUpset.png">That looks painful...I bet Hanako would agree too.</state>
                    <state img="0-DPUpset.png">We all have something wrong with us, don't we?</state>
                    <state img="0-lucid.png">...I bet Hanako relates to you on a personal level huh...?</state>
                </case>
                <case tag="female_removed_minor" target="leggy" targetStage="3">
                    <state img="0-bored.png">Oh...I...could probably use some of that wool...</state>
                </case>
                <case tag="female_removed_minor" target="sakura" targetStage="2">
                    <state img="0-lucid.png">Either way, I'm not looking...don't worry about it.</state>
                </case>
                <case tag="female_removed_minor" target="sakura" targetStage="3">
                    <state img="0-surprised.png">Wait, so that [i]isn't[/i] waterfall-colored paint!?</state>
                </case>
                <case tag="female_removed_minor" target="sakura" targetStage="4">
                    <state img="0-doubt.png">...I have [i]several[/i] questions...and I'm afraid that I'm going to be left with even more of them.</state>
                </case>
                <case tag="female_removed_minor" target="sayori" targetStage="2">
                    <state img="0-pondering.png">I'm not very good with words, so I really don't use them. If I can not use them. I mean, sometimes I have to, but I think this is not a time like that at all.</state>
                </case>
                <case tag="female_removed_minor" target="zizou" targetStage="3">
                    <state img="0-curious.png">I honestly should make a painting of this...</state>
                </case>
                <case tag="female_removed_minor" target="zizou" targetStage="4">
                    <state img="0-amused.png">Honestly, I don't think I'll ever get tired of this.</state>
                </case>
                <case tag="female_removed_minor" target="zizou" targetStage="5">
                    <state img="0-DPAmused.png">Perhaps we should compare, ~player~?</state>
                </case>
                <case tag="male_removing_major">
                    <state img="0-curious.png">Oh?</state>
                    <state img="0-DPDelighted.png">...~name~ is taking off their ~clothing~? Nice!</state>
                    <state img="0-pondering.png">...We're seeing some skin now...</state>
                    <state img="0-DPDelighted.png">...Oh it's happening.</state>
                    <state img="0-curious.png">...Well now.</state>
                    <state img="0-amused.png">...and the ~clothing~ comes off.</state>
                </case>
                <case tag="male_removed_major">
                    <state img="0-lucid.png">...So that's what you look like without those layers.</state>
                    <state img="0-DPAmused.png">...I'm used to this.</state>
                    <state img="0-DPAmused.png">...Definitely not the first time I've seen someone half-naked.</state>
                    <state img="0-DPAmused.png">This is acceptable. Most definitely.</state>
                    <state img="0-confused.png">What's a good word for a feeling that you feel that something lewd is about to happen?</state>
                    <state img="0-DPDelighted.png">Nice...Really nice...</state>
                </case>
                <case tag="female_removing_major">
                    <state img="0-curious.png">Oh?</state>
                    <state img="0-DPAmused.png">...~name~ is taking off their ~clothing~? Nice!</state>
                    <state img="0-pondering.png">...We're seeing some skin now...</state>
                    <state img="0-DPDelighted.png">...Oh it's happening.</state>
                    <state img="0-absent.png">...Well now.</state>
                    <state img="0-DPDelighted.png">...and the ~clothing~ comes off.</state>
                </case>
                <case tag="female_removing_major" target="aimee" targetStage="0">
                    <state img="0-surprised.png">Whoa!</state>
                    <state img="0-surprised.png">...!</state>
                </case>
                <case tag="female_removing_major" target="akko" targetStage="2">
                    <state img="0-curious.png">Emi definitely has to see this...</state>