@@ -49,6 +49,66 @@ async def reddit(self, interaction: discord.Interaction, *, subreddit: str):
49
49
elif result [1 ] is False and interaction .channel .is_nsfw ():
50
50
await interaction .response .send_message (embed = embed )
51
51
52
+ # Cachorrinhos
53
+ @app_commands .command (name = 'dogs' , description = "Yume will give you a random image of a doggy!" )
54
+ async def dog (self , interaction : discord .Interaction ):
55
+
56
+ helpers .dogcat = "thedogapi"
57
+ GenericEmbed .embed .set_image (url = await helpers .catdog ())
58
+ GenericEmbed .embed .set_author (name = "Here's the doggy I've got for you!! Hope you like it~" )
59
+
60
+ await interaction .response .send_message (embed = GenericEmbed .embed )
61
+
62
+ # Gatinhos
63
+ @app_commands .command (name = 'cats' , description = "Yume will give you a random image of a kitty!" )
64
+ async def cat (self , interaction : discord .Interaction ):
65
+
66
+ helpers .dogcat = "thecatapi"
67
+ GenericEmbed .embed .set_image (url = await helpers .catdog ())
68
+ GenericEmbed .embed .set_author (name = "Here's the kitty I've got for you!! Hope you like it~" )
69
+
70
+ await interaction .response .send_message (embed = GenericEmbed .embed )
71
+
72
+ # Waifus
73
+ @app_commands .command (name = "waifu" , description = "I'll give you a random image of a waifu" )
74
+ async def waifu (self , interaction : discord .Interaction ):
75
+
76
+ helpers .nekos_gif = 'waifu'
77
+ GenericEmbed .embed .set_image (url = await helpers .nekos_best ())
78
+ GenericEmbed .embed .set_author (name = "Here's the waifu yume got for you!!" )
79
+
80
+ await interaction .response .send_message (embed = GenericEmbed .embed )
81
+
82
+ # Husbandos
83
+ @app_commands .command (name = "husbando" , description = "I'll give you a random image of a husbando" )
84
+ async def husbando (self , interaction : discord .Interaction ):
85
+
86
+ helpers .nekos_gif = 'husbando'
87
+ GenericEmbed .embed .set_image (url = await helpers .nekos_best ())
88
+ GenericEmbed .embed .set_author (name = "Here's the husbando yume got for you!!" )
89
+
90
+ await interaction .response .send_message (embed = GenericEmbed .embed )
91
+
92
+ # Nekos
93
+ @app_commands .command (name = "neko" , description = "I'll give you a cute random image of a catgirl!" )
94
+ async def neko (self , interaction : discord .Interaction ):
95
+
96
+ helpers .nekos_gif = 'neko'
97
+ GenericEmbed .embed .set_image (url = await helpers .nekos_best ())
98
+ GenericEmbed .embed .set_author (name = "Here's the neko yume got for you!!" )
99
+
100
+ await interaction .response .send_message (embed = GenericEmbed .embed )
101
+
102
+ # Kitsunes
103
+ @app_commands .command (name = "kitsune" , description = "I'll give you a cute random image of a kitsune!" )
104
+ async def kitsune (self , interaction : discord .Interaction ):
105
+
106
+ helpers .nekos_gif = 'kitsune'
107
+ GenericEmbed .embed .set_image (url = await helpers .nekos_best ())
108
+ GenericEmbed .embed .set_author (name = "Here's the kitsune yume got for you!!" )
109
+
110
+ await interaction .response .send_message (embed = GenericEmbed .embed )
111
+
52
112
53
113
# Realiza o registro da classe nos cogs
54
114
async def setup (yume : commands .AutoShardedBot ) -> None :
0 commit comments