15 lines
708 B
Python
15 lines
708 B
Python
|
|
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()
|