-
Notifications
You must be signed in to change notification settings - Fork 0
/
embeds.py
33 lines (19 loc) · 1.11 KB
/
embeds.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
import discord
# at this file embeds generated
multiplication_table_img = discord.Embed(color=discord.Colour.gold())
multiplication_table_img.set_image(url="https://jdwalzarb.ir/wp-content/uploads/2023/06/%D8%B9%DA%A9%D8%B3-%D8%AC%D8%AF%D9%88%D9%84-%D8%B6%D8%B1%D8%A8-%DA%A9%D8%A7%D9%85%D9%84.png")
computing_embed = discord.Embed(
title= "✅ Done" , description="The calculations were done successfully." , color=discord.Colour.random()
)
circle_embed = discord.Embed(
title="⭕ Done" , description="The circumference and area of the circle were calculated successfully." , color=discord.Colour.red()
)
square_embed = discord.Embed(
title="🔳 Done" , description="The perimeter and area of the square were calculated successfully.",color=discord.Colour.green()
)
triangle_embed = discord.Embed(
title="🔺 Done", description="The perimeter and area of the triangle were calculated successfully.",color=discord.Colour.yellow()
)
rectangle_embed = discord.Embed(
title="🔲 Done" , description="The perimeter and area of the rectangle were calculated successfully.",color=discord.Colour.blue()
)