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. " "\nAlso, clicking on one of them will remove the other, if you have it. " "\n(Clicking Matrix Penguins, will remove Matrix-Refuser Penguins and add Matrix Penguins).") 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()