GoldyBot.utility.msgs.reload

 1import GoldyBot.utility.goldy.colours as colours
 2
 3help_des = 'An admin command for reloading the modules in GoldyBot.'
 4
 5module = "๐Ÿ’œ Module"
 6module_red = "โค๏ธ Module"
 7module_blue = "๐Ÿ’™ Module"
 8module_orange = "๐Ÿงก Module"
 9
10class ReloadedEmbed:
11    title = f'{module} Reloaded!'
12    des = '''**``{}`` has been reloaded! ๐Ÿ‘**'''
13    colour = colours.PURPLE
14
15    thumbnail = "https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png"
16
17class FailedToLoadEmbed:
18    title = f"{module_red} Failed to Load!"
19    des = "**The Module ``{}`` failed to load!**"
20    colour = colours.RED
21
22class ModuleNotFoundEmbed:
23    title = f"{module_blue} Not Found!"
24    des = "**The Module ``{}`` was not Found!**"
25    colour = colours.AKI_BLUE
26
27class AdminCanNotBeReloadedEmbed:
28    title = f"{module_orange} Not Allowed!"
29    des = "**The admin module can not be reloaded!**"
30    colour = colours.AKI_ORANGE
class ReloadedEmbed:
11class ReloadedEmbed:
12    title = f'{module} Reloaded!'
13    des = '''**``{}`` has been reloaded! ๐Ÿ‘**'''
14    colour = colours.PURPLE
15
16    thumbnail = "https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png"
ReloadedEmbed()
title = '๐Ÿ’œ Module Reloaded!'
des = '**``{}`` has been reloaded! ๐Ÿ‘**'
colour = 16711935
thumbnail = 'https://www.pngitem.com/pimgs/m/684-6848954_anime-thumbs-up-png-png-download-transparent-png.png'
class FailedToLoadEmbed:
18class FailedToLoadEmbed:
19    title = f"{module_red} Failed to Load!"
20    des = "**The Module ``{}`` failed to load!**"
21    colour = colours.RED
FailedToLoadEmbed()
title = 'โค๏ธ Module Failed to Load!'
des = '**The Module ``{}`` failed to load!**'
colour = 16711680
class ModuleNotFoundEmbed:
23class ModuleNotFoundEmbed:
24    title = f"{module_blue} Not Found!"
25    des = "**The Module ``{}`` was not Found!**"
26    colour = colours.AKI_BLUE
ModuleNotFoundEmbed()
title = '๐Ÿ’™ Module Not Found!'
des = '**The Module ``{}`` was not Found!**'
colour = 7726810
class AdminCanNotBeReloadedEmbed:
28class AdminCanNotBeReloadedEmbed:
29    title = f"{module_orange} Not Allowed!"
30    des = "**The admin module can not be reloaded!**"
31    colour = colours.AKI_ORANGE
AdminCanNotBeReloadedEmbed()
title = '๐Ÿงก Module Not Allowed!'
des = '**The admin module can not be reloaded!**'
colour = 16027660