18 lines
937 B
Python
18 lines
937 B
Python
import discord
|
|
from discord import Embed
|
|
|
|
|
|
class MatrixRolesEmbed(Embed):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.title = "Matrix Roles"
|
|
self.description = "Please select your choice between these two roles."
|
|
self.add_field(name="Additional", value="Adding one of these, will remove the other", inline=False)
|
|
self.add_field(name="Instructions", value="Click to add. Click again to remove.", inline=False)
|
|
|
|
self.add_field(name="Matrix Penguins", value="By accepting this role, you will be alerted whenever someone tags the role in one of the Tech channels", inline=True)
|
|
self.add_field(name="Matrix-Refuser Penguins",
|
|
value="By accepting this role, all of the Techie/Geeky channels will be hidden, and you can just enjoy the basic channels, participating in polls, etc",
|
|
inline=True)
|
|
self.color = discord.Color.purple() |