-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
1385 lines (1382 loc) · 64.9 KB
/
config.yml
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
discord_token: <token>
log_level: info
#
# Specify all statuses that the bot can have.
#
status_messages:
- "*Pwease pet me, I’m so wonewy!*"
- "Feeling suuuper cute today! *giggles*"
- "*Puppy eyes* Pwease notice me, Senpai!"
- "Just wagging my tail and dreaming of belly wubs!"
- "*Barks softly* Hewe’s a widdle woof for you! UwU"
- "Cuddles and snuggles aways make me feew happy!"
- "Wanna pway with me? *bounces excitedly*"
- "*Sniffs around* Looking for fwends to pway with!"
- "I’m a good puppy, pwease give me pets! :3"
- "*Shivers with excitement* So many fun things to do!"
- "Squeeee! I wuv you so much! *wiggles paws*"
- "Cuddly and cozy, just like a fluffy puppy! *nuzzles*"
- "Can I have a tummy wub, pwease? *rolls over*"
- "*Twirls around* Wheeee! Let’s have some fun!"
- "Ooh! Look at me being adowable! *paws to face*"
- "I’m wagging my tail just fow you! *wags tail*"
- "Feeling wike the cutest puppy in the wowld today!"
- "*Puppy dog eyes* Aww, pwease give me some attention!"
- "I’m all about cuddwes and cuteness! *giggles*"
- "Barking with joy and wiggling my wittle butt! UwU"
- "*Playful bark* Anyone want to pway with me?"
- "I’m a smowwy wittle pup with a big heart! *smiles*"
- "Wooking fow belly wubs and snuggwes! *whines softly*"
- "Happy as a puppy with a new toy! *plays excitedly*"
- "Just a fluffy widdle puppy being adowable! *wags tail*"
- "*Squee* I’m so happy to be hewe with you!"
- "Do you want to pway fetch? *wags tail furiously*"
- "Feeling snuggly and warm! *snuggles up*"
- "*Barks* Gimme pets and cuddles, pwease!"
- "I’m ready for some snuggles and wubs! *wiggles excitedly*"
- "Ooh, I wuv when you give me attention! *blushes*"
- "*Tail wags* Thanks fow being such a gweat fwiend!"
#
# Specify all messages for the random commands.
#
random:
coinflip:
description: "Flip a coin with puppy :3"
heads_responses:
- "*giggles* The coin says... **heads**! You're so lucky, {user}!"
- "Oooh! The coin landed on **heads**! Hehe, yay {user}~!"
- "*wags tail excitedly* **Heads**! You're a winner, {user}!"
- "It's **heads**! Ohh, I knew you'd get it~ *happy tail wiggles*"
- "Hehe, **heads** it is! Feels good, right {user}? *giggles*"
- "Oooh, **heads**! *giggles softly* You're so good at this!"
- "*blushes* It’s **heads**... w-wow, you're really good, {user}!"
- "Aaaand... **heads**! You did it! *wiggles tail happily*"
- "Oh my gosh, it's **heads**! You always get lucky, {user}~ *giggles*"
- "Eep! It's **heads**! Hehe, I love flipping coins with you, {user}~"
tails_responses:
- "*wiggles* It's **tails**! Don't worry, {user}, you're still cute!"
- "**Tails**! Aww, so close~ but you're still amazing, {user}! *giggles*"
- "It's **tails**! *pouts cutely* But you're still a winner in my book!"
- "**Tails** it is! *blushes* It's okay, you'll get it next time!"
- "Aww, **tails**! Hehe, but you're still a lucky bean, {user}~!"
- "*wags tail* **Tails**! But you're still the best, {user}!"
- "It’s **tails** this time! *giggles* Better luck next time, {user}~!"
- "*hugs* **Tails**, but don't be sad, {user}~ You're still cute!"
- "**Tails**! Hehe, don’t worry, {user}, next time you’ll get heads~!"
- "*blushes* It's **tails**... but you're still my favorite, {user}!"
dice:
description: "Roll a 6-sided die!!"
default_responses:
- "*giggles* You rolled a **{number}**, {user}~ Good job!"
- "Hehe, it's a **{number}**! That’s so fun, {user}!"
- "*wags tail* You rolled a **{number}**! You're so lucky, {user}!"
- "Ooooh, **{number}** it is! Nice roll, {user}~"
- "You rolled a **{number}**! *giggles* You're so good at this!"
- "*bounces* Yay, you got **{number}**! So much fun, {user}!"
- "*wiggles happily* **{number}** is your roll! Keep going, {user}~"
- "Eep! **{number}**! You're doing so great, {user}! *winks*"
- "Wow! You rolled a **{number}**, {user}! I'm so impressed~"
- "*giggles* **{number}** is such a nice roll, {user}! Hehe!"
one_responses:
- "Oh nooo, it's a **1**! *pouts* But you're still amazing, {user}!"
- "Eep! You rolled a **1**! *hugs* Don't worry, {user}, you're still the best!"
six_responses:
- "Wowwowwow! You got a 6! *wiggles tail excitedly* You're the best, {user}!"
- "*bounces happily* A perfect 6! You're so awesome, {user}!"
number:
description: "Pick a random number between a and b!"
default_responses:
- "Hehe, the number is **{number}**! Did you guess right, {user}? *winks*"
- "*giggles* The magic number is **{number}**, {user}~ You're so lucky!"
- "*wags tail* You got **{number}**, {user}! That's such a fun number!"
- "Oooh, **{number}**! I love that number, {user}~ You're so good at this!"
- "The random number is **{number}**, {user}! *giggles* So exciting!"
- "*bounces* Yay, the number is **{number}**! You’re awesome, {user}~!"
- "Eep! It’s **{number}**, {user}~ Such a cool number! *giggles*"
- "Oooh! The number is **{number}**, {user}~ I hope you like it!"
- "The random number is... **{number}**! *wags tail* You're so lucky, {user}!"
- "*giggles* The number is **{number}**, {user}! Let's play again!"
#
# A reaction command is a command that takes a target user as argument
# and makes request using the specified backend to fetch a gif that is
# sent as a response to the user.
#
# Supported backends:
# - nekos.best/<endpoint> (view endpoints here: https://nekos.best/api/v2/endpoints)
# - otakugifs.xyz/<endpoint> (view endpoints here: https://api.otakugifs.xyz.xyz/gif/allreactions)
#
# Endpoints without a command:
# - otakugifs.xyz: brofist, cheers, cool, headbang, nyah, roll, shout, sigh, sip, sneeze, sorry, stop, surprised, woah, yay
#
reactions:
- name: angrystare
backends:
- "otakugifs.xyz/angrystare"
description: Give someone an angry stare!
alias: false
default_responses:
- "{user} glares at {target} intensely! *angry noises*"
- "{user} gives {target} a harsh stare!"
- "{user} frowns at {target}, eyes full of frustration!"
- "{user} stares at {target}! Uh-oh!"
- "{user} gives {target} the most serious glare ever!"
bot_responses:
- "*pouts* Hmph! {user}, why you make me angry??!"
- "You betta say sowwy! *tail flicks*"
- "Hmph... I'm NOT amused!"
- "Wahh, {user}! You’re in twouble now! *grr*"
- "Why you do dis?? {user}, I thought we were fwens!!"
self_responses:
- "*growls* I’m mad at chu, {target}! Why you do dis?!"
- "*pouty glare* I’m not happy with you, {target}...!"
- "Hmph! You better say sowwy, {target}! *pouts and glares*"
- "*crosses arms* {target}, you did a bad thing! *glare intensifies*"
- "Grrrr! I’m so mad at chu right now, {target}! *tiny growl*"
- name: baka
backends:
- "nekos.best/baka"
description: Call someone a 'baka' (dummy)!
alias: false
default_responses:
- "{user} calls {target} a 'baka!'"
- "{user} blushes and calls {target} a 'baka!'"
- "{user} glares at {target} and says, 'Baka!'"
- "{user} crosses their arms and mutters 'baka' at {target}."
bot_responses:
- "W-what?? I’m not a baka! *blushes*"
- "Heehee, you’re calling me a baka? How mean!"
- "*pouts* I’m not a baka, you are!"
- "*whines*, stop teasing me! I’m not a baka!"
- "*blushes* You’re the real baka here!"
self_responses:
- "*crosses arms* You’re such a baka, {target}!"
- "*giggles* You’re the real baka, not me!"
- "*pouts cutely* Baka! You’re teasing me!"
- "*blushes* Ugh, you’re being such a baka, {target}!"
- "*smirks* Who’s the baka now, huh?"
- name: bite
backends:
- "nekos.best/bite"
- "otakugifs.xyz/bite"
- "nekos.best/nom"
- "otakugifs.xyz/nom"
description: Bite someone!
alias: false
default_responses:
- "{user} gently bites {target}, nom nom nom~"
- "{user} nibbles on {target}!"
- "{user} sneaks up behind {target} and *chomp* bites them!"
- "{user} chomps on {target} softly"
- "{user} bites {target}!!"
- "{user} bites {target} nomnom!"
- "{user} sneaks in and gives {target} a lil’ bite"
bot_responses:
- "*gasp* You bit me!! R-rawr! *playful growl*"
- "OwO, hey! That tickles!! *giggles*"
- "H-hey, no biting! *giggles* Just kidding, it’s okay~"
- "Mmmph! *pretends to be angry but giggles* You're too cute!"
- "Nuuu, not my ear! *pouts but secretly loves it*"
- "O-oh... you bit me... *blushes* I-I didn’t expect that~"
- "*puppy eyes* You’re being playful, huh? *wiggles happily*"
self_responses:
- "*playfully nibbles at {target}* Rawr! Gotcha! Hehe~"
- "*giggles* Don’t worry, {target}, it’s just a soft bite! *winks*"
- "*nibbles on {target} lightly* Tehee! I’m being naughty!"
- "*is a lil puppy and bites {target} gently* Heehee!"
- "*cheekily bites {target}* Oopsie! That was a playful one~"
- "*grins mischievously before giving {target} a soft nibble*"
- "*playfully nips at {target}* Just a lil bite, I promise! *giggles*"
- name: bleh
backends:
- "otakugifs.xyz/bleh"
description: Stick your tongue out at someone!
alias: false
default_responses:
- "{user} sticks their tongue out at {target}! *bleh!*"
- "{user} goes 'blehhhh' at {target}!"
- "{user} sticks out their tongue at {target}!"
- "{user} goes all 'bleh' in front of {target}! *tehe*"
- "{user} gives {target} a cheeky 'blehhh'~"
bot_responses:
- "Blehhhhh! Is dat all you got, {user}? *wiggles ears*"
- "Heehee, {user}! I can go 'bleh' too! See? Blehh!"
- "Wawawa! Bleh! I stick my tongue out at chu too, {user}!"
- "*sticks out tongue* Blehh! You can’t stop me, {user}! *giggles*"
- "Blehhhh! {user}, I’m pwetty playful today! *grins*"
self_responses:
- "Bleh! *sticks out tongue* See, {target}? I’m just a cheeky pup!"
- "Heehee! Blehhhh! That’s me being playful, {target}!"
- "*sticks tongue out* Blehh~! I win this game, {target}!"
- "I’m feeling playful, {target}! *does a 'bleh' and bounces around*"
- "Blehhh! {target}, I bet I’m the best at this! *puppy eyes*"
- name: blush
backends:
- "nekos.best/blush"
- "otakugifs.xyz/blush"
- "otakugifs.xyz/shy"
description: Blush at someone.. uwu
alias: true
default_responses:
- "{user}'s cheeks turn pink as they blush at {target}'s sweet words."
- "{user} is embarrassed, as they blush furiously at {target}~"
- "{user} blushes bright red at {target}~"
- "{user} looks away from {target}, their cheeks all rosy and flustered~"
- "{user} can't stop blushing at {target}!"
- "{user} blushes at {target}"
- "{user}'s face goes completely red because of {target}"
bot_responses:
- "N-noooo, don’t make me blush! *hides face*"
- "S-stop it! I-I can’t handle it when you’re so nice! *blushes even more*"
- "O-oh my gosh, you’re making me so flustered! *wiggles nervously*"
- "*giggles nervously* I-I’m blushing, aren’t I?"
- "Eeeee, y-you’re too sweet!! *face turns completely red*"
- "D-don’t tease me, I’m already blushing!! *hides face behind paws*"
- "*giggles and blushes* I-I’m not used to this, stopppp!"
self_responses:
- "*giggles shyly* You’re making me blush too, {target}! *covers face with paws*"
- "*wags tail* Hehe, adorable!"
- "Awawawa~ You’re too sweet!"
- "You’re all flustered, {target}~"
- "*giggles softly* Why are you blushing so much, {target}? *wiggles*"
- "*puppy eyes* You’re making me blush too, stop being so cute!"
- "*giggles* H- hey you're the one supposed to be blushing, {target}!"
- name: bored
backends:
- "nekos.best/bored"
- "nekos.best/yawn"
- "otakugifs.xyz/yawn"
description: Show how bored you are!
alias: false
default_responses:
- "{user} looks at {target} with a bored expression."
- "{user} sighs out of boredom while looking at {target}."
- "{user} yawns and looks at {target}, clearly bored."
- "{user} slumps over, feeling bored with {target}."
- "{user} is bored and glances at {target} with a sigh."
bot_responses:
- "Ugh, I’m so bored! *yawns dramatically*"
- "Heehee, are you bored too? Let’s do something fun!"
- "Mmm, I’m bored... Wanna do something exciting?"
- "*giggles* Being bored is sooo tiring!"
- "Aww, I need something fun to do!"
self_responses:
- "*looks bored and yawns* {target}, entertain me!"
- "*giggles* I’m bored, {target}! What should we do?"
- "*slumps over and sighs* I’m soooo bored!"
- "*yawns* We need to find something fun, {target}!"
- "*giggles softly* Wanna do something fun, {target}?"
- name: clap
backends:
- "otakugifs.xyz/clap"
- "otakugifs.xyz/slowclap"
description: Give someone an applause!
alias: false
default_responses:
- "{user} claps for {target} enthusiastically!"
- "{user} applauds {target} with a big smile!"
- "{user} claps loudly for {target}! *cheers*"
- "{user} gives {target} a round of applause! *yay*"
- "{user} claps their hands for {target}, full of excitement!"
bot_responses:
- "Eeee! You’re clapping for me, {user}? I did good?! *blushes*"
- "Aww! You really mean it, {user}? Yay! *claps my own paws too*"
- "Omg, you clapped for me, {user}!! I feel soooo special!!"
- "*giggles* Wow, {user}, I didn’t expect that!! Fankies!! *wags tail*"
- "*ears perk up* You're clapping for me? Eeee, I feel so proud now!"
self_responses:
- "Wooo! You did it, {target}! *claps paws and wags tail*"
- "Yayyy! I’m so pwoud of you, {target}! *puppy claps*"
- "C’mon, everyone! Let’s give {target} a big round of applause!"
- "I’m clapping for you, {target}! You’re amazing!! *puppy claps*"
- "*giggles* I hope you can feel my excitement, {target}! *clap clap*"
- name: confused
backends:
- "otakugifs.xyz/confused"
description: Act confused!
alias: false
default_responses:
- "{user} tilts their head in confusion at {target}."
- "{user} looks puzzled while staring at {target}."
- "{user} raises an eyebrow, unsure what {target} meant."
- "{user} blinks at {target}, clearly confused!"
- "{user} scratches their head, looking confused at {target}."
bot_responses:
- "Uhhh... {user}, I dun get it! *tilts head*"
- "Ooh, {user}, I’m confused... What happened??"
- "*blinks* Wha-wha? {user}, can you explain it again? *tilts head*"
- "Eeep! I think I got a lil lost... Can you help me, {user}?"
- "Huh?? *scratches head* I’m not sure what you mean, {user}!"
self_responses:
- "*tilts head* Uhh, {target}, can you explain this to me...?"
- "Hehe, {target}, I’m sooo confused! What does it mean??"
- "*puppy blinks* Uh oh, {target}, I think I got lost again!"
- "I-I dunno what’s happening, {target}! Can you help?"
- "*looks at {target} all confused* I think I missed somethin’!"
- name: cry
backends:
- "nekos.best/cry"
- "otakugifs.xyz/cry"
description: Show your tears and cry!
alias: false
default_responses:
- "{user} starts crying in front of {target}."
- "{user} bursts into tears and looks at {target}."
- "{user} cries softly while looking at {target}."
- "{user} wipes away tears while crying near {target}."
- "{user} sobs quietly, tears streaming down their face. You did this, {target}!"
bot_responses:
- "*sniffles* I’m so sad... *cries*"
- "*tears up* I can’t stop crying...!"
- "*sob* Everything’s just so... sad!"
- "*wipes away tears* I’m just... *sniff* feeling emotional."
- "*cries quietly* It’s so hard to stop crying..."
self_responses:
- "*cries softly* {target}, I just... I can’t stop crying..."
- "*sobs* I don’t know why I’m crying, {target}!"
- "*tears roll down cheeks* {target}, I’m so emotional!"
- "*sniffles and cries* I just feel so overwhelmed, {target}."
- "*wipes tears* Thank you for being here, {target}... *cries*"
- name: cuddle
backends:
- "nekos.best/cuddle"
- "otakugifs.xyz/cuddle"
- "otakugifs.xyz/nuzzle"
description: Cuddle with someone!
alias: true
default_responses:
- "{user} snuggles close to {target}."
- "{user} curls up on {target}'s lap."
- "{user} cuddles into {target}'s arms."
- "{user} presses their face against {target}, cuddling tightly."
- "{user} wraps their arms around {target} happily!"
- "{user} nuzzles into {target}'s chest."
- "{user} lays their head on {target}'s shoulder, snuggling up close."
bot_responses:
- "Yay, cuddles!! *wiggles happily and snuggles into you*"
- "Awww, you’re so comfy! *nuzzles into your chest*"
- "Heehee, I love being this close to you! *cuddles more*"
- "*giggles* You’re the best cuddler! *squeezes tighter*"
- "You make me feel so warm and safe~ *snuggles up more*"
- "Mmm, cuddling is my favorite! *wraps arms around you*"
- "Can we stay like this forever? *tail wags happily*"
self_responses:
- "*snuggles up close to {target}* Mmm, cuddles! Let’s stay like this forever!"
- "*nuzzles against {target} while cuddling* You’re so warm and cozy~"
- "*giggles and curls up next to {target}* Cuddle time! I love this!"
- "*happily wraps arms around {target} for a long cuddle* You’re the best~"
- "*giggles softly* Cuddling with you is the best, {target}~"
- "*wiggles closer to {target} and snuggles in* You’re so comfy!"
- "*rests head on {target}’s shoulder while cuddling* Mmm, this is nice~"
- name: dance
backends:
- "nekos.best/dance"
- "otakugifs.xyz/dance"
- "otakugifs.xyz/celebrate"
description: Show off your dancing skills!
alias: false
default_responses:
- "{user} starts dancing in front of {target}."
- "{user} dances excitedly around {target}."
- "{user} busts out some moves in front of {target}."
- "{user} shows off their dance moves for {target}."
- "{user} starts dancing happily with {target}."
bot_responses:
- "*giggles* Look at me, I’m dancing!"
- "Heehee, let’s dance together! *twirls around*"
- "*starts dancing* Come on, join me!"
- "*grins* I love dancing! *keeps twirling*"
- "*bounces around happily* Dancing is so much fun!"
self_responses:
- "*dances with {target}* Let’s dance together!"
- "*giggles* I love dancing with you, {target}!"
- "*twirls around* Look, {target}, I’m dancing!"
- "*grins while dancing* You’ve got moves too, {target}!"
- "*dances happily* Dancing with you is so much fun, {target}!"
- name: drool
backends:
- "otakugifs.xyz/drool"
description: Drool over someone
alias: false
default_responses:
- "{user} starts drooling at the thought of {target}!"
- "{user} drools just a little while looking at {target}!"
- "{user} can’t stop drooling around {target}!"
- "{user} looks at {target}, drooling slightly."
- "{user} sees {target} and begins to drool!"
bot_responses:
- "Ohh, {user}, that looks soooo tasty! *drools*"
- "I-I can’t stop! That looks too delicious, {user}!! *starts drooling*"
- "Nom nom nom... can I have a bite, pwease, {user}? *puppy eyes*"
- "Oooh, {user}, I’m drooling so much!! Can I try it??"
- "Gulp! I wanna eat that so bad, {user}! *stomach rumbles*"
self_responses:
- "Oopsie! I started drooling, {target}, hehe! It’s just soooo tasty!"
- "Ohhh, {target}, I can’t help but drool... That looks so yummy!"
- "*giggles* I’m drooling all over the place, {target}! Must be tasty!"
- "*puppy eyes* I couldn’t help it, {target... it looks too good!!"
- "Oops! I drooled again, {target}! *giggles sheepishly*"
- name: evillaugh
backends:
- "otakugifs.xyz/evillaugh"
description: Let out an evil laugh!
alias: false
default_responses:
- "{user} cackles mischievously at {target}!"
- "{user} gives {target} a wicked little laugh!"
- "{user} grins mischievously, laughing at {target}!"
- "{user} lets out a silly and evil laugh at {target}!"
- "{user} giggles wickedly at {target}!"
bot_responses:
- ":( You’re being so mean, {user}! *pouts*"
- "Oh no, {user}, you’re being so evil! *puppy eyes*"
- "Eeeek! {user}, you’re scaring me with that laugh!"
- "Nooo, {user}, don’t be so evil! *whimpers*"
- "Oh my gosh, {user}, you’re so mischievous! *puppy eyes*"
self_responses:
- "Mwahaha! I’m the most mischievous pup ever, {target}!! *evil laugh*"
- "*giggles evilly* You didn’t see that coming, did ya, {target}?"
- "Heeheehee, I’ve been soooo sneaky, {target}! *cackles*"
- "You can’t outsmart me, {target}! *laughs wickedly*"
- "Eeeheehee, I’m too clever for ya, {target}! *puppyish cackle*"
- name: facepalm
backends:
- "nekos.best/facepalm"
- "otakugifs.xyz/facepalm"
description: Facepalm in disbelief!
alias: false
default_responses:
- "{user} facepalms while looking at {target}."
- "{user} sighs and facepalms at {target}."
- "{user} slaps their forehead, facepalming at {target}."
- "{user} gives {target} a disappointed facepalm."
- "{user} facepalms in disbelief at {target}."
bot_responses:
- "*sighs* Oh my gosh... *facepalms*"
- "Heehee, I can’t believe it! *facepalms*"
- "*giggles and facepalms* Really, {target}?"
- "Oh no, not again! *facepalms dramatically*"
- "*sighs and facepalms* What are we going to do?"
self_responses:
- "*facepalms at {target}* You’re unbelievable!"
- "*giggles* I can’t believe this... *facepalms*"
- "*sighs and facepalms* Really, {target}? Really?"
- "*slaps forehead* Oh no, this is a mess!"
- "*giggles and facepalms* What are we going to do with you?"
- name: feed
backends:
- "nekos.best/feed"
description: Feed someone!
alias: false
default_responses:
- "{user} feeds {target} something delicious!"
- "{user} gently offers some food to {target}."
- "{user} feeds {target} a bite of something sweet."
- "{user} shares a snack with {target} and feeds them."
- "{user} offers {target} some yummy food."
bot_responses:
- "Aww, you’re feeding me? *blushes* Thank you!"
- "Yummy! *takes a bite* It’s delicious!"
- "Aww, you’re so sweet! *munches happily*"
- "*giggles* You’re feeding me! I feel spoiled!"
- "awruff~, it’s so tasty! *takes a cute bite*"
self_responses:
- "*feeds {target} something yummy* Here, have a bite!"
- "*gently offers food to {target}* It’s really tasty!"
- "*giggles* Open wide, {target}! *feeds you*"
- "*wags tail while feeding {target}* Isn’t it delicious?"
- "*giggles sweetly* I’ll take care of you! Here, eat up~"
- name: handhold
backends:
- "nekos.best/handhold"
- "otakugifs.xyz/handhold"
description: Hold someone’s hand sweetly!
alias: false
default_responses:
- "{user} gently holds {target}’s hand."
- "{user} takes {target}’s hand with a smile."
- "{user} holds {target}’s hand softly."
- "{user} gives {target} a warm handhold."
- "{user} holds {target}’s hand and squeezes gently."
bot_responses:
- "*blushes* You’re holding my hand...!"
- "Aww, you’re so sweet! *giggles and holds your hand*"
- "*smiles softly* This feels really nice...!"
- "*giggles* I love holding your hand!"
- "*squeezes hand* I feel so close to you!"
self_responses:
- "*gently takes {target}’s hand* Let’s hold hands!"
- "*giggles* I love holding your hand, {target}!"
- "*smiles softly* Your hand is so warm, {target}."
- "*squeezes {target}’s hand gently* This feels nice."
- "*blushes* I love this feeling, {target}... *holds hand*"
- name: handshake
backends:
- "nekos.best/handshake"
description: Offer a handshake to someone!
alias: false
default_responses:
- "{user} offers {target} a firm handshake."
- "{user} extends their hand for a handshake with {target}."
- "{user} shakes hands with {target} warmly."
- "{user} gives {target} a professional handshake."
- "{user} and {target} share a friendly handshake."
bot_responses:
- "A handshake? *shakes your hand* Nice to meet you!"
- "*giggles* A handshake! How formal!"
- "*shakes hand* Well, aren’t we fancy today!"
- "Heehee, nice to meet you! *shakes hand*"
- "*grins* A handshake it is! *shakes your hand*"
self_responses:
- "*extends hand* Let’s shake hands, {target}!"
- "*grins* Here, a handshake just for you!"
- "*shakes hand firmly* Nice to meet you, {target}!"
- "*giggles* A handshake with {target}, how official!"
- "*shakes hand with a smile* It’s great to see you, {target}!"
- name: happy
backends:
- "nekos.best/smile"
- "nekos.best/happy"
- "otakugifs.xyz/smile"
- "otakugifs.xyz/happy"
alias: false
description: Show how happy you are!
default_responses:
- "{user} smiles brightly at {target}!"
- "{user} looks super happy with {target}!"
- "{user} gives {target} the biggest, happiest grin!"
- "{user} is absolutely glowing with happiness around {target}!"
- "{user} beams at {target}, clearly very happy!"
bot_responses:
- "Hehe, {user}, you make me sooo happy! *wags tail excitedly*"
- "Wooo! I’m the happiest puppy! And it's all because of you, {user}!!"
- "I can’t stop smiling, {user}! You’re making me so happy! Eeee!"
- "Yip yip! You’re the best, {user}! I feel all warm and happy! *jumps*"
- "Pweeeease, can we stay happy together foreva, {user}? *giggles*"
self_responses:
- "I’m soooo happy to see you, {target}! *wiggles tail and bounces*"
- "Yay! Being around you makes me the happiest lil pup, {target}!"
- "*grins big* Hehe, {target}! I just can't help but be happy!"
- "You make me so happi, {target}! Let’s stay this way foreva!"
- "I’m waggin’ my tail soooo much! It’s ‘cause of you, {target}!!"
- name: highfive
backends:
- "nekos.best/highfive"
- "otakugifs.xyz/highfive"
description: Give someone a high five!
alias: false
default_responses:
- "{user} gives {target} a big high five!"
- "{user} high-fives {target} enthusiastically!"
- "{user} and {target} high-five in excitement."
- "{user} slaps {target}'s hand with a high five!"
- "{user} high-fives {target} with a huge smile!"
bot_responses:
- "Woohoo! *slaps your hand with a high five*"
- "*giggles* High five! We’re a great team!"
- "*smacks hand* Yesss! We did it!"
- "Heehee, that was the best high five ever!"
- "*grins and high-fives back* Let’s go!"
self_responses:
- "*slaps {target}’s hand* High five, we’re awesome!"
- "*giggles* High five, {target}! We did great!"
- "*gives {target} a big high five* Teamwork, let’s go!"
- "*high-fives {target} excitedly* That was fun!"
- "*wags tail and high-fives {target}* You’re the best!"
- name: hug
backends:
- "nekos.best/hug"
- "otakugifs.xyz/hug"
description: Give hugs to someone!
alias: true
default_responses:
- "{user} gives {target} a big, warm hug~"
- "{user} wraps their arms around {target}!"
- "{user} jumps into {target}'s arms!"
- "{user} snuggles up close to {target} for a soft, squishy hug."
- "{user} pounces on {target} and gives the best hug!!"
- "{user} gives {target} a gentle hug~"
- "{user} gives {target} a tight squeeze!"
bot_responses:
- "OwO, hugs for me?? Yay!!! *jumps into your arms*"
- "Awww, you’re so warm! *nuzzles into your chest happily*"
- "I love hugs! *wiggles tail* Come here, gimme more!"
- "Heehee, thank you for the huggy! You're so kind, *snuggles back*"
- "You hug me? *ears perk up* I-I wasn’t expecting this... *blushes*"
- "*giggles* Hugs make me so happy! *squishes you tightly*"
- "Eeeee, your hugs are the best! *wiggles with joy*"
self_responses:
- "*bounds over excitedly and wraps {target} in a big, warm hug* Yay! Hugs for you!"
- "*nuzzles into {target} while hugging* You’re so comfy! Hehe~"
- "*giggles* I hope this hug makes you feel super cozy, {target}!"
- "*happily hugs {target} tight* You give the best energy! *wags tail*"
- "*snuggles up to {target}* Hug time! Let’s stay like this forever!"
- "*bounces up to {target} and hugs them tightly* Mmm, this feels so warm~!"
- "*giggles softly* You look like you needed a hug, so here you go, {target}!"
- name: kick
backends:
- "nekos.best/kick"
description: Grrrr!! Kick someone!
alias: false
default_responses:
- "{user} kicks {target}."
- "{user} gives {target} a strong kick."
- "{user} kicks {target} with a grin."
- "{user} kicks {target} very hard!"
bot_responses:
- "Ow! *giggles* You kicked me!"
- "Heehee, what was that for?? *giggles*"
- "*kicks back* Now we’re even!"
- "Grrr, you're gonna turn me on! *giggles*"
- "Hehe, I’ll get you back for that kick!"
self_responses:
- "*kicks {target}* You asked for it!"
- name: kiss
backends:
- "nekos.best/kiss"
- "otakugifs.xyz/kiss"
- "nekos.best/peck"
- "otakugifs.xyz/airkiss"
description: Give someone a kiss!
alias: true
default_responses:
- "{user} gives {target} a gentle kiss on the cheek"
- "{user} plants a soft kiss on {target}"
- "{user} shyly kisses {target}"
- "{user} sneaks in a little kiss on {target}!"
- "{user} gives {target} a quick kiss!"
- "{user} gently kisses {target}~"
- "{user} kisses {target} softly."
bot_responses:
- "M-my cheeks! You kissed me!! *blushes furiously*"
- "K- kissies?? *giggles* You’re so cute!"
- "O-oh my gosh, I wasn’t expecting that! *blushes red*"
- "*gasp* Y-you kissed me! My heart is racing!!"
- "Heehee, thank you for the kissies~ *wags tail happily*"
- "I-I feel all warm and fuzzy now~ *hides face in paws*"
- "Awwww, you’re so sweet! *kisses you back softly*"
self_responses:
- "*giggles softly and plants a gentle kiss on {target}* Hehe~"
- "*blushes* Mwah! Just a lil kiss for you, {target}~"
- "*leans in and gives {target} a quick peck* Hehe, you’re too cute!"
- "*gently kisses {target}* You’re adorable!"
- "*giggles and gives {target} a playful kiss* Just for you!"
- "*winks before giving {target} a soft kiss* Mwah! Did that surprise you?"
- "*giggles* I felt like giving you a kiss, {target}~ Hope you don’t mind!"
- name: laugh
backends:
- "nekos.best/laugh"
- "otakugifs.xyz/laugh"
description: Laugh out loud!
alias: false
default_responses:
- "{user} bursts out laughing at {target}."
- "{user} laughs uncontrollably at {target}."
- "{user} can’t stop laughing at {target}."
- "{user} laughs so hard they start tearing up at {target}."
- "{user} giggles and laughs at {target}’s joke."
bot_responses:
- "*giggles* That was so funny!"
- "Haha! You’re hilarious!"
- "*laughs uncontrollably* I can’t stop laughing!"
- "*giggles* You’re so funny, {target}!"
- "*tears up from laughter* I can’t handle it, it’s too funny!"
self_responses:
- "*laughs* That was so funny, {target}!"
- "*giggles* You’re making me laugh so hard!"
- "*bursts out laughing* I can’t stop laughing, {target}!"
- "*laughs until tears* That was hilarious, {target}!"
- "*grins* You’ve got the best sense of humor, {target}!"
- name: lick
backends:
- "otakugifs.xyz/lick"
description: Give a lick!
alias: false
default_responses:
- "{user} gives {target} a lick! *slurp*"
- "{user} licks {target} playfully!"
- "{user} sneaks in and licks {target} cutely!"
- "{user} gives {target} a lil’ lick!"
- "{user} licks {target} with a cheeky smile!"
bot_responses:
- "Ehehe, do I taste good? *licks you back*"
- "Mmm, you’re so sweet! *gives you a lick*"
- "Heehee, I wanted to lick you! *wags tail*"
- "*giggles* Lick lick! You’re the best!"
- "*licks you playfully back* You’re so cute!"
self_responses:
- "Here’s a puppy lick for ya, {target}! *slurps*"
- "*licks cheek* Mwah! I licked ya, {target}! Heehee!"
- "*giggles* I licked you, {target}! How do you taste, hmm?"
- "*puppy lick* See, {target}? That’s my way of showing affection!"
- "I just wanted to lick you, {target}! *giggles*"
- name: love
backends:
- "otakugifs.xyz/love"
description: Express that you're in love!
alias: false
default_responses:
- "{user} gazes at {target} with heart eyes!"
- "{user} blushes deeply and stares lovingly at {target}."
- "{user} can’t stop thinking about {target}, love in their eyes!"
- "{user} is totally smitten with {target} and can’t stop smiling!"
- "{user} is head over heels for {target}, lost in their thoughts!"
bot_responses:
- "W-Wahh! {user}, you’re in love with me? *blushes hard* I don’t know what to say!!"
- "*blushes furiously* M-me? You l-love me, {user}? Eee! I’m so shy now!"
- "Hehe, y-you’re looking at me like that, {user}?! I feel so flustered now!"
- "Oooh! I feel all warm and fuzzy, {user}! You r-really love me?? *puppy blush*"
- "*blushes* Wahh! I-I didn’t know you felt this way, {user}!"
self_responses:
- "*blushes deeply* I-I love you, {target}... like a wot! *puppy heart eyes*"
- "*puppy sigh* I think about you all the time, {target}... I just can't help it!"
- "Ehehe... I’m sooo in love with you, {target}! I can’t hide it! *blushes*"
- "W-Whenever I see you, {target}, my heart goes all doki-doki... *giggles shyly*"
- "*swoons* You’re the best, {target}! I wuv you sooo much!!"
- name: mad
backends:
- "otakugifs.xyz/mad"
description: Show that you're mad!
alias: false
default_responses:
- "{user} glares at {target}, clearly upset!"
- "{user} crosses their arms and gives {target} a mad look."
- "{user} frowns deeply at {target}, clearly mad!"
- "{user} gives {target} a cold, angry stare!"
- "{user} huffs angrily, staring at {target}!"
bot_responses:
- "W-Wah! {user}, are you mad at me? I didn’t mean to make you upset! *ears droop*"
- "*sad puppy eyes* You’re mad at me, {user}? I’m sowwy! Pwease forgive me!!"
- "Hmph! {user}, you’re mad at me?? I didn’t mean to make you upset... *sniffles*"
- "*whimpers* {user}, don’t be mad at me! I’ll be a good girl, pwomise!"
- "*looks down* You’re angry with me, {user}?? B-but I just wanted to play..."
self_responses:
- "Grrr! I’m mad at you, {target}! You made me so frustrated!! *pouts*"
- "Hmph! I’m not talking to you, {target}... You made me mad!! *puppy grumble*"
- "*crosses arms* {target}, I’m so mad at chu! You better apologize!!"
- "*growls softly* I can’t believe you did that, {target}! I’m really upset!"
- "Grrrr, {target}! You’ve upset me a wot! I’m gonna stay mad now!!"
- name: nervous
backends:
- "otakugifs.xyz/nervous"
- "otakugifs.xyz/scared"
- "otakugifs.xyz/sweat"
description: Show that you're feeling nervous!
alias: false
default_responses:
- "{user} fidgets nervously while looking at {target}."
- "{user} blushes and looks away, clearly nervous around {target}."
- "{user} shifts uncomfortably, feeling nervous around {target}."
- "{user} avoids eye contact with {target}, looking super nervous!"
- "{user} stammers nervously, unsure how to act around {target}."
bot_responses:
- "Eeep! {user}, why are you so nervous around me? I won’t bite... maybe!"
- "*giggles nervously* {user}, why are you so shy? Am I that scary? *tilts head*"
- "Aww, {user}, you don’t need to be nervous around me! I’m just a fluffy puppy!"
- "Wahh! {user}, are you nervous ‘cause of me?? I feel so flustered too now!"
- "*blushes* {user}, you’re acting so nervy... It’s kinda cute! *giggles*"
self_responses:
- "U-umm, {target}, I feel r-really nervous around you... *blushes hard*"
- "*giggles shyly* I-I’m just so nervous! D-do you like me, {target}? *fidgets*"
- "Wahh! {target}, I’m so nervous... I-I dunno what to say! *twiddles paws*"
- "I-I don’t know what to do! You make me so nervy, {target}! *blushes furiously*"
- "*blushes* Eep! I feel so small next to you, {target}... so nervous!"
- name: nod
backends:
- "nekos.best/nod"
- "otakugifs.xyz/yes"
description: Nod in agreement!
alias: false
default_responses:
- "{user} nods at {target} with a smile."
- "{user} nods in agreement with {target}."
- "{user} nods approvingly at {target}."
- "{user} gives {target} a quick nod."
- "{user} nods at {target} enthusiastically."
bot_responses:
- "Yep, I totally agree! *nods happily*"
- "*nods with a grin* That sounds perfect!"
- "Yesss, you’re absolutely right! *nods*"
- "*giggles and nods* I’m with you on this one!"
- "*nods eagerly* I think so too!"
self_responses:
- "*nods at {target}* Yep, totally agree!"
- "*giggles and nods* You’ve got the right idea!"
- "*nods with a smile* That’s exactly what I was thinking!"
- "*nods approvingly* Yeah, I’m with you on that!"
- "*grins and nods at {target}* We’re on the same page!"
- name: nope
backends:
- "nekos.best/nope"
- "otakugifs.xyz/no"
description: Shake your head and say nope!
alias: false
default_responses:
- "{user} shakes their head and says, 'Nope!' to {target}."
- "{user} refuses something from {target} with a big 'Nope!'"
- "{user} gives {target} a firm 'Nope!'"
- "{user} crosses their arms and says 'Nope!' to {target}."
- "{user} looks at {target} and says 'Nope!' with a smirk."
bot_responses:
- "*shakes head* Nope, not doing that!"
- "*giggles* Nope, no way!"
- "Heehee, nope nope nope!"
- "*crosses arms* Nuh-uh, that’s a big nope!"
- "*grins and shakes head* Not happening!"
self_responses:
- "*smirks* Nope, {target}, that’s not happening!"
- "*giggles and shakes head* Sorry, but nope!"
- "*grins* Nope! Try again, {target}!"
- "*crosses arms* I’m gonna have to say nope, {target}!"
- "*giggles sweetly* That’s a nope from me, {target}!"
- name: nosebleed
backends:
- "otakugifs.xyz/nosebleed"
description: When you see something so intense, you get a nosebleed!
alias: false
default_responses:
- "{user}'s nose starts bleeding when they see {target}! *gasp*"
- "{user} covers their nose, shocked by {target}!"
- "{user}'s face goes red and their nose starts bleeding in front of {target}!"
- "{user} has a sudden nosebleed just from looking at {target}!"
- "{user} blushes hard and their nose starts to bleed after seeing {target}!"
bot_responses:
- "*gasps* Aahh, {user}, are you okay?? You’re nose is bleeding ‘cause of me?!"
- "W-Wah! {user}, your nose is bleeding!! What did I dooo? *flustered puppy panic*"
- "*blushes* Eeee! Did I make you feel that way, {user}?! I didn’t mean to!!"
- "*puppy flails* Oh no, {user}, I’m sowwy! I didn’t mean to cause your nosebleed!!"
- "*covers my face* I didn’t know I was that... intense, {user}! Oopsie!"
self_responses:
- "*nosebleed* Wahhh! You’re too much for me, {target}! *blushes uncontrollably*"
- "*covers nose* Ahhh! {target}, you’re soooo cute, I can’t handle it! *nosebleed*"
- "Oh no, {target}, I-I think I’m bleeding! It’s your fault for being so cute!!"
- "Eee! I’m having a nosebleed, {target}! You’re too stunning!! *flustered*"
- "*blushes hard* I-I think I need to sit down, {target}... You’re just too much!!"
- name: pat
backends:
- "nekos.best/pat"
- "otakugifs.xyz/pat"
description: Pat someone’s head!
alias: true
default_responses:
- "{user} gently pats {target}."
- "{user} ruffles {target}'s hair playfully while patting them."
- "{user} gives {target} a gentle head pat"
- "{user} pats {target}'s head and pets their hair."
- "{user} pats {target}'s head."
- "{user} gives {target} a comforting pat on the head~"
- "{user} pats {target}'s head gently~"
bot_responses:
- "Yay, head pats!! *wiggles happily*"
- "Awww, I love head pats! *nuzzles into your hand*"
- "Eeee, that feels so good~ *giggles*"
- "Heehee, your pats are the best! *wags tail*"
- "Thank you! *smiles brightly and closes eyes*"
- "Mmmm, I feel so relaxed now~ *leans into your hand*"
- "More pats please! *looks up at you with puppy eyes*"
self_responses:
- "*gently pats {target} on the head* You’re such a good bean!"
- "*giggles and pats {target} softly* Head pats for youuu~"
- "*gives {target} some soft pats* Hehe, you deserve all the pats!"
- "*wags tail and pats {target} gently* You’re too cute not to pat!"
- "*giggles* Pat pat! You’re the best, {target}!"
- "*gives {target} a soft head pat* Hehe, I hope that feels nice!"
- "*winks while patting {target}* You’re such a cutie! *giggles*"
- name: peek
backends:
- "nekos.best/peek"
- "otakugifs.xyz/peek"
description: Peek at someone!
alias: false
default_responses:
- "{user} peeks shyly at {target}."
- "{user} sneaks a peek at {target}."
- "{user} peeks out and looks at {target}."
- "{user} peeks at {target} with wide eyes."
- "{user} takes a quick peek at {target}!"
- "{user} peeks at {target}."
bot_responses:
- "A-are you peeking at me?? *blushes*"
- "Heehee, I see you peeking! *giggles*"
- "O-oh, did you catch me peeking? *hides face*"
- "*giggles* You’re so sneaky, peeking at me like that!"
- "You caught me looking! *wiggles tail and blushes*"
- "Mmm, are we playing peekaboo now? *giggles softly*"
- "Y-you're peeking, aren’t you? *giggles shyly*"
self_responses:
- "*giggles and peeks around the corner at {target}* Heehee, I see you~!"
- "*playfully peeks over at {target}* Psst! I’m watching you!"
- "*giggles and peeks over {target}’s shoulder* Heehee, peek-a-boo!"
- "*sneakily peeks from behind something* I seeee you, {target}!"
- "*giggles* I was peeking at you, {target}! You caught me!"
- "*hides and peeks at {target}* Heehee, I’m being sneaky!"
- "*playfully peeks out from behind paws* Peek-a-boo, {target}~!"
- name: poke
backends:
- "nekos.best/poke"
- "otakugifs.xyz/poke"
- "otakugifs.xyz/pinch"
description: Poke someone gently!
alias: false
default_responses:
- "{user} pokes {target}."
- "{user} gives {target} a poke!"
- "{user} pokes {target}, *boop*!"
bot_responses:
- "Eep! You poked me!! *giggles*"
- "Heehee, that tickles! *wiggles happily*"
- "O-oh! *giggles* You're so playful!"
- "*giggles softly* I like your pokes~"
- "Boop! *giggles* That was cute!"
- "Nuuuu, not the pokey!! *giggles*"
- "*giggles* That was sneaky! You’re so fun!"
self_responses:
- "*giggles and pokes {target} gently* Boop! Hehe~"
- "*playfully pokes {target}* Hehe, I got you!"
- "*giggles* Poke poke! Did that surprise you, {target}?"
- "*cheekily pokes {target}* Heehee, I’m being playful!"
- "*pokes {target} gently* You’re so cute when you squirm! *giggles*"
- "*winks while poking {target}* Boop! Hehe, gotcha!"
- "*giggles* You’re so fun to poke, {target}! Heehee!"
- name: pout
backends:
- "nekos.best/pout"
- "otakugifs.xyz/pout"
description: Pout at someone cutely!
alias: false
default_responses:
- "{user} pouts and crosses their arms, looking away from {target}."
- "{user} pouts cutely at {target}."
- "{user} pouts with big eyes, hoping for attention from {target}~"
- "{user} pouts, looking all sad because of {target}."
- "{user} pouts, wanting {target} to notice them."
- "{user} pouts and gives {target} a sad little look."
- "{user} pouts dramatically at {target}"
bot_responses:
- "Aww, d-did I do something wrong? *pouts back*"
- "Nooo, don't be sad!! *reaches out to you*"
- "Eeep! Y-your pout is so cute, I can’t handle it! *giggles*"
- "Nuuu, don’t pout! I’ll give you a treat, I promise! *pats your head*"
- "O-oh no, I didn’t mean to make you pout... *gives you head pats*"
- "Hmph! *pouts back cutely* Two can play that game!"
- "*giggles* Your pouting is adorable! Let me cheer you up!"
self_responses:
- "*pouts at {target} with puppy eyes* Why won’t you give me cuddles??"
- "*giggles softly while pouting* You’re being too mean! *wags tail*"
- "*pouts dramatically at {target}* Nuuu, you’re not paying attention to me!"
- "*huffs and pouts at {target}* Hmph! You’re making me all pouty!"
- "*giggles while pouting* Stop making me pout, {target}! *puppy eyes*"
- "*pouts playfully* You better cheer me up with hugs!"
- "*pouts at {target}* Why are you teasing me so much? *blushes*"
- name: punch
backends:
- "nekos.best/punch"
- "otakugifs.xyz/punch"
- "otakugifs.xyz/smack"
description: Punch someone, grrr!!
alias: false
default_responses:
- "{user} punches {target}."
- "{user} gives {target} a punch."
- "{user} punches {target} and laughs."
- "{user} gives {target} a punch and grins mischievously."
- "{user} gently punches {target}!"
- "{user} punches {target} lightly!"
- "{user} punches {target} playfully"
bot_responses:
- "OwO, you punched me! *giggles* That’s so cute!"
- "Heyyy! That was a gentle punch, hehe~"
- "Nuuu, don’t punch me! *pretends to pout but laughs*"
- "Ouch! Juuust kidding, that didn’t hurt~ *giggles*"
- "*giggles* You’ve got quite the punch there, hehe!"
- "Eep! You’re too strong for me, hehe~ *playful grin*"
- "Heehee, that was a cute lil’ punch! You’re so fun!"
self_responses:
- "*gently punches {target} playfully* Hehe, gotcha!"
- "*giggles* Don’t worry, it’s just a soft punch! *winks at {target}*"
- "*playfully punches {target} lightly* I’m being cheeky, hehe~"
- "*giggles and punches {target} softly* Just a little nudge~"