Compare commits

...

3 Commits

Author SHA1 Message Date
tamservo@mx.sdf.org
fabecd836b Added encouragement, slight commands. 2024-09-27 16:22:31 -04:00
tamservo@mx.sdf.org
09bdd939f2 Added steer command. 2024-09-27 16:03:00 -04:00
tamservo@mx.sdf.org
c85d850218 Added new icons for Lawson, Antonelli, Bearman, and Colapinto. 2024-09-27 15:53:01 -04:00

View File

@@ -903,9 +903,10 @@ class Robottas(commands.Bot):
'3': '<:RIC:1067870312949108887>', '3': '<:RIC:1067870312949108887>',
'5': '<:VET:1067964065516884079>', '5': '<:VET:1067964065516884079>',
'11': '<:PER:1067822335123525732>', '11': '<:PER:1067822335123525732>',
'12': '<:ANT:1289237308805222491>',
'14': '<:ALO:1067876094033793054>', '14': '<:ALO:1067876094033793054>',
'40': ':kiwi:', '40': '<:LAW:1289237140051464204>',
'43': ':beans:', '43': '<:COL:1289237227049844849>',
'44': '<:HAM:1067828533746991165>', '44': '<:HAM:1067828533746991165>',
'55': '<:SAI:1067824776502067270>', '55': '<:SAI:1067824776502067270>',
'63': '<:RUS:1067831294748274728>', '63': '<:RUS:1067831294748274728>',
@@ -921,7 +922,7 @@ class Robottas(commands.Bot):
'22': '<:TSU:1067888851676315660>', '22': '<:TSU:1067888851676315660>',
'20': '<:MAG:1067883814992486510>', '20': '<:MAG:1067883814992486510>',
'23': '<:ALB:1067874026871074887>', '23': '<:ALB:1067874026871074887>',
'38': ':teddy_bear:', '38': '<:BEA:1289237392649224278>',
} }
# Holds dictionary for driver 3-letter code to icon # Holds dictionary for driver 3-letter code to icon
@@ -939,7 +940,7 @@ class Robottas(commands.Bot):
'NOR': '<:NOR:1067840487593082941>', 'NOR': '<:NOR:1067840487593082941>',
'GAS': '<:GAS:1067836596495327283>', 'GAS': '<:GAS:1067836596495327283>',
'HUL': '<:HUL:1067880110918742187>', 'HUL': '<:HUL:1067880110918742187>',
'LAW': ':kiwi:', 'LAW': '<:LAW:1289237140051464204>',
'OCO': '<:OCO:1067834157465612398>', 'OCO': '<:OCO:1067834157465612398>',
'BOT': '<:BOT:1067819716527276032>', 'BOT': '<:BOT:1067819716527276032>',
'PIA': '<:PIA:1067844998369914961>', 'PIA': '<:PIA:1067844998369914961>',
@@ -947,8 +948,9 @@ class Robottas(commands.Bot):
'TSU': '<:TSU:1067888851676315660>', 'TSU': '<:TSU:1067888851676315660>',
'MAG': '<:MAG:1067883814992486510>', 'MAG': '<:MAG:1067883814992486510>',
'ALB': '<:ALB:1067874026871074887>', 'ALB': '<:ALB:1067874026871074887>',
'BEA': ':teddy_bear:', 'BEA': '<:BEA:1289237392649224278>',
'COL': ':beans:' 'COL': '<:COL:1289237227049844849>',
'ANT': '<:ANT:1289237308805222491>'
} }
# Holds dictionary for race states to icons # Holds dictionary for race states to icons
@@ -1030,6 +1032,7 @@ class Robottas(commands.Bot):
" !calm - keep calm but come on.\n" + " !calm - keep calm but come on.\n" +
" !censored\n" + " !censored\n" +
" !ciao\n" + " !ciao\n" +
" !encouragement\n" +
" !forecast - what happened to that podium...\n" + " !forecast - what happened to that podium...\n" +
" !grandma\n" + " !grandma\n" +
" !grass\n" + " !grass\n" +
@@ -1043,7 +1046,9 @@ class Robottas(commands.Bot):
" !penalty\n" + " !penalty\n" +
" !ricky\n" + " !ricky\n" +
" !rude - Charles thinks it's rude.\n" + " !rude - Charles thinks it's rude.\n" +
" !slight - Charles did a slight touch.\n" +
" !stupid\n" + " !stupid\n" +
" !steer\n" +
" !undercut\n" + " !undercut\n" +
" !wall - Lance is in the wall") " !wall - Lance is in the wall")
@@ -1267,6 +1272,10 @@ class Robottas(commands.Bot):
async def ciao(ctx): async def ciao(ctx):
await self.send_image(ctx, "images/ciao.png") await self.send_image(ctx, "images/ciao.png")
@self.command()
async def encouragement(ctx):
await self.send_image(ctx, "images/encouragement.png")
@self.command() @self.command()
async def grandma(ctx): async def grandma(ctx):
await self.send_image(ctx, "images/grandma.png") await self.send_image(ctx, "images/grandma.png")
@@ -1320,10 +1329,18 @@ class Robottas(commands.Bot):
async def rude(ctx): async def rude(ctx):
await self.send_image(ctx, "images/rude.mp4") await self.send_image(ctx, "images/rude.mp4")
@self.command()
async def slight(ctx):
await self.send_image(ctx, "images/slight.png")
@self.command() @self.command()
async def stupid(ctx): async def stupid(ctx):
await self.send_image(ctx, "images/stupid.png") await self.send_image(ctx, "images/stupid.png")
@self.command()
async def steer(ctx):
await self.send_image(ctx, "images/steer.png")
@self.command() @self.command()
async def undercut(ctx): async def undercut(ctx):
await self.send_image(ctx, "images/undercut.png") await self.send_image(ctx, "images/undercut.png")