FunkyBot/embeds/LanguageRolesEmbed.py

15 lines
708 B
Python
Raw Permalink Normal View History

2025-06-23 14:02:53 +00:00
import discord
from discord import Embed
class LanguageRolesEmbed(Embed):
def __init__(self):
super().__init__()
self.title = "Language Roles"
self.description = ("Please select your choice of languages to be associated with."
"\nThese roles provide no functionality other than being alerted when it is tagged."
"\nThis is mainly for when someone shares information about the programming language"
" or is in need of help and asking a question")
self.add_field(name="Instructions", value="Click to add. Click again to remove.", inline=False)
self.color = discord.Color.purple()