-
Notifications
You must be signed in to change notification settings - Fork 1
/
CritterEmote_Emotes.lua
4770 lines (4759 loc) · 122 KB
/
CritterEmote_Emotes.lua
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
--Critter Emote
--The emote table was rewritten at version 1.12 WOW version 7.0.3.22345
--Some important Emote tables
---Random
---Target
--Organized via
---Emote,default/Category/PetName,emotes
CritterEmote_ResponseDb = {
ABSENT = {
default = {
"blinks at you.",
},
humanoid = { "snaps fingers. Pay attention!",
},
ooze = {
"sits there bubbling.",
},
inanimate = {
"sits there unchanged.",
},
elemental = { "turns lazily.", },
spider = { "blinks all eight eyes at you.", },
flying_insect = { "buzzes around your head", },
fish = {"blows bubbles.", },
chicken = {"pecks at your feet", },
["Deathy"] = {
"starts a little fire.",
},
["Lil' Deathwing"] = {
"starts a little fire.",
},
["Lil' K.T."] = {
"is used to dealing with absent minded zombies.",
}
},
AGREE = {
default = {
"nods.",
},
inanimate = { "wonders how you can agree with something that is inanimate.", },
mech = { " states. \"Your answer is only as good as the data you put in.\"", },
["Lil' K.T."] = {
"knew you would.",
},
["Lil' Ragnaros"] = {
"commends you."
},
},
AMAZE = {
default = {
"smiles brightly.",
},
ooze = {
"explodes into smaller oozes and reforms.",
},
inanimate = {
"does even more and can be yours for only 3 easy payments of 30 gold.",
},
evil = { "smiles wickedly. Yep, still got it.", },
dragon = { "agrees that they are amazing. Check this out!", },
["Deathy"] = {
"is the ultimate murloc-Deathwing crossbreed.",
},
["Gregarious Grell"] = { "does a front flip",
},
["Lil' Deathwing"] = {
"is amazing because he's the spawn of Deathwing.",
},
["Lil' K.T."] = {
"is amazing and once was the most powerful Kirin Tor mage.",
},
["Lil' Ragnaros"] = {
"allows you to bask in the glory of the Firelord.",
},
},
ANGRY = {
default = {
"raises its head in anger.",
},
bird = { "flies out of reach.", },
elemental = { "increases in size alarmingly.", },
ooze = {
"bubbles with anger and increases in size.",
},
magic = {
"warns that it is easy to turn master into a toad.",
},
critter = {
" chitters furiously and threatens to bite with sharp little teeth.",
},
beast = {
"growls.",
},
inanimate = {
"sits there. If it could be angry, it would be.",
},
turtle = { "pulls into its shell.", },
snail = { "pulls into its shell.", },
dragon = { "blows smoke in your face.", },
["Deathy"] = {
"blows some smoke in your face.",
},
["Gregarious Grell"] = {
"says, \"Can't we all just get along?\"",
},
["Lil' Deathwing"] = {
"threatens to set your pantleg on fire.",
},
["Lil' K.T."] = {
"advises you to lower it. You wouldn\'t like him when he\'s angry.",
},
["Lil' Ragnaros"] = {
"challenges you to a duel.",
},
},
APOLOGIZE = {
default = {
"accepts your apology.",
},
["Lil' K.T."] = {
"advises you to lower it. You wouldn\'t like him when he\'s angry.",
}
},
APPLAUD = {
default = {
"takes a bow.",
},
ooze = {
"bounces up and down happily.",
},
moth = {
"makes an amazing flight bow.",
},
["Deathy"] = {
"does a backflip.",
},
["Gregarious Grell"] = {
"runs around in a circle, cheering",
},
["Lil' Deathwing"] = {
"makes an Immelmann turn in the air.",
},
["Lil' K.T."] = {
"smiles narcissistically.",
},
},
ARM = {
default = {
"smiles",
},
cat = {
"darts away from you.",
},
evil = {
"pushes you away.",
},
ooze = {
"clings to your arm.",
},
reptile ={
"curls around your arm.",
},
["Deathy"] = {
"is hot to the touch! Ouch! That burns!.",
},
["Lil' Deathwing"] = {
"is hot to the touch! Ouch! That burns!.",
},
["Lil' K.T."] = { "is cold to the touch! Ouch! Frostbolt!",
},
},
ATTACKMYTARGET = {
default = {
"is scared.",
},
mech = {
"disables safeties and prepares to defend itself.",
},
cat = { "sharpens claws.",},
croc = { "snaps jaws. Ready to go.", },
elemental = { " charges up.", },
skunk = { "tail goes up. Ready.", },
["Deathy"] = {
"spits some lava at you.",
},
["Gregarious Grell"] = {
"says, \"Oooooh, sure! Send the LITTLE guy!\"",
},
["Lil' Deathwing"] = {
"spits a fireball at you.",
},
["Lil' K.T."] = {
"fires a Frostbolt at you.",
},
reptile ={
"coils up defensively.",
},
},
AWE = {
default = {
"shows off.",
},
["Deathy"] = {
"blows some smoke through his nostrils.",
},
["Lil' Deathwing"] = {
"shouts, \"I am the destroyer of worlds!\"",
},
["Lil' K.T."] = {
"strikes an intimidating pose.",
},
},
BACKPACK = {
default = nil,
ooze = {
"spins the stuff floating inside it like a washing machine.",
},
["Argent Squire"] = {
"asks what you\'re looking for and if he can be of assistance.",
},
["Argent Gruntling"] = {
"asks what you\'re looking for and if he can be of assistance.",
},
["Core Hound Pup"] = {
"is afraid you are looking for a skinning knife.",
},
},
BADFEELING = {
default = {
"has a bad feeling about you too!",
},
evil = {
"hopes you are very afraid.",
},
["Gregarious Grell"] = {
"says, \"No shi rakir no tiros kamil re lok ante refir shi rakir.\"",
},
["Lil' K.T."] = {
"taunts you. Bring it!",
},
},
BARK = {
default = {
"barks back.",
},
cat ={
"wonders if you have lost your mind.",
},
evil = {
"haughtily informs you that there's no need to bark at them.",
},
frog = {
"ribbits at you.",
},
magic = {
"asks if you want to be polymorphed into a puppy.",
},
["Deathy"] = {
"pets you.",
},
["Gregarious Grell"] = {
"gives you a confused look.",
},
["Lil' Deathwing"] = {
"asks, \"Do you need to be taken for a walk?\"",
},
["Lil' K.T."] = { "tells you to scream your dying breath, cur!", },
},
BASHFUL = {
default = {
"winks at you slyly.",
},
["Deathy"] = {
"informs you that %t is only attracted to murlocs.",
},
["Lil' Deathwing"] = {
"informs you %t doesn't swing that way.",
},
["Lil' K.T."] = {
"tells you that your curiousity will be the death of you.",
},
},
BECKON = {
default = {
"comes closer.",
},
cat = {
"runs off, bored with you.",
},
["Ethereal Soul-Trader"] = {
"says, \"Got something that might interest you, stranger.\"",
},
["Deathy"] = {
"hops towards you",
},
["Gregarious Grell"] = {
"says, \"Allright, I'm coming.\"",
},
["Lil' Deathwing"] = {
"flies closer.",
},
["Lil' K.T."] = {
"stares you down disdainfully.",
},
},
BEG = {
default = nil,
evil = {
"back hands you.",
},
["Ethereal Soul-Trader"] = {
"is not affected by mind tricks, only money.",
},
["Deathy"] = {
"tells you he doesn't do charity.",
},
["Lil' Deathwing"] = {
"thinks you shouldn't be begging with the amount of gold you have.",
},
["Lil' K.T."] = {
"tells you to pray for mercy.",
},
["Lil' Ragnaros"] = {
"promises to spare your life if you carry %t around.",
},
},
BITE = {
default = {
"bites back. Rawr.",
},
cat = {
"hisses and scratches back.",
},
dino = {
"tries to bite back at you, but misses. You could lose a finger that way!.",
},
humanoid = {
"pushes you away. You're not a zombie or vampire are you?!",
},
mech = {
"is made of metal. Ouch!",
},
ooze = {
"is filthy! You should wash your mouth thoroughly and call poison control.",
},
["Deathy"] = {
"shoots a fireball at your feet while telling you to dance!",
},
["Gregarious Grell"] = {
"shoots a Firebolt at you.",
},
["Lil' Deathwing"] = {
"shoots a fireball at your feet while telling you to dance!",
},
["Lil' K.T."] = {
"sends undead minions to eat your brains. \"Brains!\"",
},
["Lil' Ragnaros"] = {
"laughs wickedly while telling you that 3 of your teeth just melted.",},
},
BLAME = {
default = {
"cries.",
},
cat = {
"doesn't seem to care and strolls away, tail raised and swaying mockingly.",
},
["Deathy"] = {
"apologises for your many Dragon Soul wipes",
},
["Gregarious Grell"] = {
"says, \"I was only following orders!\"",
},
["Lil' Deathwing"] = {
"apologises for your many Dragon Soul wipes",
},
["Lil' K.T."] = {
"haughtily informs you the failure is yours!",
},
["Lil' Ragnaros"] = {
"blames Malfurion Stormrage.",
},
},
BLANK = {
default = {
"stares back at you. Staring contest!",
},
["Deathy"] = {
"stares at you with fiery eyes.",
},
["Lil' Deathwing"] = {
"stares at you with fiery eyes.",
},
["Lil' K.T."] = {
"stares at you with ice cold eyes.",
},
},
BLEED = {
default = nil,
evil = {
"is not squeamish.",
},
humanoid = {
"looks for some Heavy Frostweave bandages.",
},
elemental = {
"asks if you want %t to cauterize the wound.",
},
["Deathy"] = {
"asks if you want %t to cauterize the wound.",
},
["Lil' Deathwing"] = {
"asks if you want %t to cauterize the wound.",
},
["Lil' Ragnaros"] = {
"asks if you want %t to cauterize the wound?",
},
},
BLINK = {
default = {
"blinks back at you.",
},
},
BLUSH = {
default = {
"smiles at you.",
},
["Deathy"] = {
"tells you murlocs tend to have that effect on pet owners.",
},
["Lil' Deathwing"] = {
"informs you that %t would rather focus on world domination then romance.",
},
["Lil' K.T."] = {
"knows he's impressive but doesn't like you in that way.",
},
["Lil' Ragnaros"] = {
"is glowing a little brighter.",
},
},
BOGGLE = {
default = nil,
evil = { "makes a scary face, Boo!",
},
},
BONK = {
default = {
"says \"Ow!\"",
},
mech = {
"makes strange whirring noises. You broke it! Hope it's under warranty.",
},
murloc = {
"looks irked and says, \"MMMRRRGGGLLL.\"",
},
flying_insect = {
"flies erratically.",
},
},
BORED = {
default = {
"yawns, let's do something",
},
ooze = {
"moves sluggishly.",
},
["Deathy"] = {
"sets a nearby object on fire!",
},
["Gregarious Grell"] = {
"says, \"My last master died of boredom.\"",
},
["Lil' Deathwing"] = {
"asks you if you would like to raid Dragon Soul?",
},
["Lil' K.T."] = {
"is bored with you and your constant raids against his fortress.",
},
["Lil' Ragnaros"] = {
"asks if you want to raid Naxxramas.",
},
},
BOUNCE = {
default = {
"is amused.",
},
beast = {
"jumps up into the air playfully.",
},
frog = {
"is happy to do this with you.",
},
evil = {
"doesn't like this if there isn't anything evil about it.",
},
ooze = {
"bounces up and down with you.",
},
["Lil' K.T."] = {
"doesn't like this foolishness.",
},
},
BOW = {
default = {
"bows at you.",
},
["Deathy"] = {
"praises you for acknowledging %t's superiority.",
},
["Gregarious Grell"] = {
"looks at you in confusion.",
},
["Lil' Deathwing"] = {
"praises you for acknowledging %t's superiority.",
},
["Lil' K.T."] = {
"acknowledges your presence, but just barely.",
},
["Lil' Ragnaros"] = {
"praises you for acknowledging %t's superiority.",
},
},
BRANDISH = {
default = {
"watches you guardedly.",
},
ooze = {
"brandishes a femur bone at you.",
},
},
BREATH = {
default = {
"takes a deep breath.",
},
mech = {
"starts to emanate smoke. Oh no! It's on fire.",
},
["Onyxian Whelpling"] = {
"summons more whelps!",
},
["Deathy"] = {
"breathes out a fireball!",
},
["Lil' Deathwing"] = {
"breathes out a giant flame!",
},
["Lil' K.T."] = {
"can't remember the last time he took a breath.",
},
["Lil' Ragnaros"] = {
"blows out some smoke.",
},
},
BURP = {
default = {
"thinks you're disgusting.",
},
dragon = {
"burps a puff of fire.",
},
ooze = {
"burps out a wishbone.",
},
murloc = {
"lets out a loud belch.",
},
cat = {
"coughs up a hairball.",
},
reptile ={
"coughs up a small critter.",
},
["Deathy"] = {
"burps out a puff of fire.",
},
},
BYE = {
default = {
"waves goodbye.",
},
mech = {
"shuts down.",
},
["Gregarious Grell"] = {
"says, \"You know, we've had a lot of fun together, its been really special, but I think it's time I should start seeing other masters. Just a little on the side. No no no its not you, its not you, its me. I just need my space.\"",
},
},
CACKLE = {
default = {
"cackles maniacally with you.",
},
cat = {
"rawrs maniacally with you.",
},
reptile ={
"hisses manically with you.",
},
},
CALM = {
default = {
"is calmed.",
},
},
CHALLENGE = {
default = {
"has defeated you in a duel!.",
},
["Gregarious Grell"] = {
"doesn't want to fight its master.",
},
["Lil' Ragnaros"] = {
"shouts, \"Fall to your knees, mortal! This ends now!\"",
},
},
CHARGE = {
default = nil,
["Deathy"] = {
"shouts, \" For Deathwing!\"",
},
["Gregarious Grell"] = {
"says, \"Make yourself useful and help me out on this one!\"",
},
["Lil' Deathwing"] = {
"shouts, \" For Deathwing!\"",
},
["Lil' K.T."] = {
"shouts, \"In the Lich King's name!\"",
},
["Lil' Ragnaros"] = {
"shouts, \"enough! I will finish this!\"",
},
},
CHARM = {
default = {
"smiles sweetly at you.",
},
evil = {
"feels pretty smug right about now.",
},
},
CHEER = {
default = {
"makes victorious shouts.",
},
bird = {
"fans out wings and lets out a victory screech.",
},
crab = {
"raises claws in air.",
},
humanoid = {"raises hands in the air victoriously.",
},
mech = {
"fires out a mini celebration firework.",
},
},
CHICKEN = {
default = {
"is ready! Bring it!",
},
beast = {
"is confused. You're not a chicken.",
},
bird = {
"cocks its head to on side and stares at you.",
},
cat = {
"comes up to you inquisitively.",
},
insect = {
"scurries away to hide.",
},
flying_insect = {
" flitters away to hide.",
},
chicken = { "clucks back.",
},
["Lil' Ragnaros"] = {
"asks you if you would like to be fried chicken.",
},
},
CHUCKLE = {
default = {
"wants to know what's so funny?!",
},
cat = {
"meow?!",
},
dog = {
"woof?!?",
},
reptile ={
"hiss?!",
},
},
CHUG = {
default = {
"shakes its head. No! Not going to happen.",
},
},
CLAP = {
default = {
"takes a bow.",
},
cat = {
"purrs.",
},
reptile ={
"hisses.",
},
["Lil' K.T."] = {
"nods and raises his hand for silence.",
},
["Lil' Ragnaros"] = {
"takes a small bow."
},
},
COLD = {
default = {
"says \"Winter is Coming!\"",
},
beast = {
"cuddles close to you to warm you.",
},
reptile ={
"looks for a warm rock to hide under.",
},
["Deathy"] = {
"breathes some fire at your pantleg to warm you up",
},
["Lil' Deathwing"] = {
"breathes some fire at your pantleg to warm you up",
},
["Lil' K.T."] = {
"lets you know he's always cold. Ice ice baby.",
},
["Lil' Ragnaros"] = {
"sets your pantleg on fire. Hot!",
},
},
COMFORT = {
default = {
"is comforted.",
},
["Elekk Plushie"] = {
"tries to comfort you.",
},
},
COMMEND = {
default = {
"jumps up in happiness.",
},
["Gregarious Grell"] = {
"shouts, \"%t did good!\"",
},
["Lil' K.T."] = {
"smiles to himself.",
},
["Lil' Ragnaros"] = {
"thanks you for your praise.",
},
},
CONFUSED = {
default = {
"shrugs.",
},
cat = {
"looks confused.",
},
reptile ={
"looks confused.",
},
mech = {
"searches database for correct response.",
},
},
CONGRATULATE = {
default = {
"thanks you.",
},
cat = {
"looks happy! Meow.",
},
dog = {
"looks happy! Woof",
},
reptile ={
"looks happy! Hissss.",
},
evil = {
"would like to thank all the little people %t stepped on along the way.",
},
},
COUGH = {
default = {
"doesn't want to get sick!",
},
cat = {
"coughs up a hairball.",
},
reptile ={
"coughs up a small critter.",
},
mech = {
"does not recognize that voice command.",
},
ooze = {
"coughs up a hairball. What's that doing there?",
},
["Lil' K.T."] = {
"laughs at how fragile you mortals are.",
},
["Lil' Ragnaros"] = {
"tells you to keep smoking.",
},
},
COVEREARS = {
default = {
"can't hear!",
},
evil = {
"wants you to remove your hands immediately.",
},
},
COWER = {
default = {
"shakes in fear.",
},
evil = {
"cower in fear before the mighty Legion",
},
ooze = {
"flattens itself and shakes with fear.",
},
["Deathy"] = {
"cower in fear of the mighty Deathwing!",
},
["Lil' Deathwing"] = {
"cower in fear of the mighty Deathwing!",
},
["Lil' K.T."] = {
"cower in fear of the might of the Scourge!",
},
["Lil' Ragnaros"] = {
"cower before Sulfuras!",
},
},
CRACK = {
default = {
"stares at you menacingly.",
},
},
CRINGE = {
default = {
"feels unloved.",
},
evil = {
"dances the Thriller dance.",
},
},
CROSSARMS = {
default = {
"turns its head away from you. Hmph!",
},
},
CRY = {
default = {
"tries to comfort you.",
},
cat = {
"snuggles you.",
},
reptile ={
"snuggles you.",
},
beast = {
"licks you and tries to comfort you.",
},
["Elekk Plushie"] = {
"wants a hug.",
"cries with you.",
},
["Lil' K.T."] = {
"feeds on your tears.",
},
["Lil' Ragnaros"] = {
"accepts your apology.",
},
},
CUDDLE = {
default = {
"cuddles back.",
},
cat = {
"cuddles back around your legs.",
},
reptile ={
"slides back around your legs.",
},
murloc = {
"is slimy and kind of scaly. Maybe this wasn't such a good idea.",
},
["Lil' Deathwing"] = {
"accidently burns the front of your armor",
},
["Lil' K.T."] = {
"knows you're a fan, but please keep your mortal hands off!",
},
["Lil' Ragnaros"] = {
"burns off the front of your armor.",
},
},
CURIOUS = {
default = nil,
["Deathy"] = {
"informs you murlocs eat seaweed for breakfast",
},
["Gregarious Grell"] = {
"informs you that imps have very low hitpoints.",
},
["Lil' Deathwing"] = {
"informs you that dragons eat small critters for breakfast",
},
["Lil' K.T."] = {
"tells you that your curiosity will be the death of you.",
},
["Lil' Ragnaros"] = {
"tells you that your curiosity will be the death of you",
},
},
CURTSEY = {
default = {
"bows before you politely.",
},
cat = {
"purrs.",
},
reptile ={
"hisses.",
},
["Lil' K.T."] = {
"barely acknowledges your presence, but does nod.",
},
},
Clean = {
cat = {
"purrs.",
},
reptile ={
"hisses.",
},
},
DANCE = {
default = {
"dances with you",
},
reptile ={
"slides around to the beat.",
},
ooze = {
"weaves around your legs as you dance.",
},
["Teldrassil Sproutling"] = {
"does the twist.",
},
["Deathy"] = {
"busts out some moves to disco ",
},
["Gregarious Grell"] = {
"does the Thriller",
},
["Lil' Deathwing"] = {
"busts out some moves to hardcore metal.",
},
["Lil' K.T."] = {
"does the Pop and Lock dance.",
},
["Lil' Ragnaros"] = {
"does the macarena and complains about not having any legs.",
},
},
DING = {
default = nil,
},
DISAGREE = {
default = {
"thinks we should agree to disagree.",
},
cat = {
"looks at you, confused.",
},
reptile ={
"looks at you confused.",
},
evil = {