forked from theammir/dionysos-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarcog.py
154 lines (126 loc) · 4.76 KB
/
barcog.py
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
import discord
import menu
import random
from discord.ext import commands
class BarCog(commands.Cog, name = '{barcog}'):
def __init__(self, bot):
self.bot = bot
@commands.command(name = 'вода', aliases = ['water'])
async def order_water(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.WATER_PICS))
embed.set_footer(text = random.choice(menu.WATER_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'кефир', aliases = ['kefir'])
async def order_kefir(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.KEFIR_PICS))
embed.set_footer(text = random.choice(menu.KEFIR_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'кола', aliases = ['кока-кола', 'cola', 'coca', 'coca-cola', 'кока'])
async def order_cola(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.COLA_PICS))
embed.set_footer(text = random.choice(menu.COLA_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'квас', aliases = ['kvas'])
async def order_kvas(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.KVAS_PICS))
embed.set_footer(text = random.choice(menu.KVAS_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'молоко', aliases = ['milk'])
async def order_milk(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.MILK_PICS))
embed.set_footer(text = random.choice(menu.MILK_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'чай', aliases = ['tea'])
async def order_tea(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.TEA_PICS))
embed.set_footer(text = random.choice(menu.TEA_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'коктейль', aliases = ['coctail', 'cocktail'])
async def order_cocktail(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.COCKTAIL_PICS))
embed.set_footer(text = random.choice(menu.COCKTAIL_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'кофе', aliases = ['cofee', 'coffee'])
async def order_coffee(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.COFFEE_PICS))
embed.set_footer(text = random.choice(menu.COFFEE_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'милкшейк', aliases = ['shake', 'шейк', 'milkshake'])
async def order_milkshake(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.MILKSHAKE_PICS))
embed.set_footer(text = random.choice(menu.MILKSHAKE_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'сок', aliases = ['juice'])
async def order_juice(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.JUICE_PICS))
embed.set_footer(text = random.choice(menu.JUICE_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'кисель', aliases = ['jelly'])
async def order_jelly(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.JELLY_PICS))
embed.set_footer(text = random.choice(menu.JELLY_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'какао', aliases = ['cocoa'])
async def order_cocoa(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.COCOA_PICS))
embed.set_footer(text = random.choice(menu.COCOA_FACTS))
await ctx.send(embed = embed)
@commands.command(name = 'компот', aliases = ['compot'])
async def order_compot(self, ctx):
embed = discord.Embed(
colour = 0x289566,
description = random.choice(menu.ORDER_PHRASES)
)
embed.set_image(url = random.choice(menu.COMPOT_PICS))
embed.set_footer(text = random.choice(menu.COMPOT_FACTS))
await ctx.send(embed = embed)
def setup(bot):
bot.add_cog(BarCog(bot))