update game urls and embed info

This commit is contained in:
VinceC
2024-11-24 01:35:04 -06:00
parent 82354dcfea
commit 12722b6fd4
2 changed files with 16 additions and 8 deletions

View File

@@ -1,4 +1,3 @@
// src/utils/embedBuilders.js
const { EmbedBuilder } = require('discord.js');
function createMatchRequestEmbed(matchData) {
@@ -6,16 +5,16 @@ function createMatchRequestEmbed(matchData) {
const formattedDateTime = matchDateTime.toLocaleString();
return new EmbedBuilder()
.setColor('#00ff00')
.setColor('#00ff00') // Green for new match requests
.setTitle('🎮 New Match Request')
.setDescription(`A new match has been requested for ${matchData.game_name}`)
.addFields(
{
name: 'Game Details',
value: [
`🎮 **Game:** ${matchData.game_name}`,
`📋 **Match Type:** ${matchData.match_type}`,
`👥 **Team Size:** ${matchData.team_size}v${matchData.team_size}`,
`🎯 **Class:** ${matchData.match_class}`
].join('\n'),
inline: false
},
@@ -23,7 +22,6 @@ function createMatchRequestEmbed(matchData) {
name: 'Match Settings',
value: [
`🌍 **Region:** ${matchData.region}`,
`🎯 **Class:** ${matchData.match_class}`,
`📅 **Date & Time:** ${formattedDateTime}`,
].join('\n'),
inline: false
@@ -35,7 +33,7 @@ function createMatchRequestEmbed(matchData) {
}
)
.setTimestamp()
.setFooter({ text: `Match Request ID: ${matchData.game_id}` });
.setFooter({ text: 'VRBattles Match System' });
}
module.exports = {