mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
Add vs at start
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 46 KiB |
@@ -39,6 +39,12 @@ module.exports = class CarRaceCommand extends Command {
|
|||||||
reason: 'Fireworks Image',
|
reason: 'Fireworks Image',
|
||||||
reasonURL: 'https://co.currituck.nc.us/fireworks/'
|
reasonURL: 'https://co.currituck.nc.us/fireworks/'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Max Pixel',
|
||||||
|
url: 'https://www.maxpixel.net/',
|
||||||
|
reason: 'Stars Image',
|
||||||
|
reasonURL: 'https://www.maxpixel.net/Stars-Confetti-Curly-String-Balloons-Watercolor-5403247'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'PNGkit',
|
name: 'PNGkit',
|
||||||
url: 'https://www.pngkit.com/',
|
url: 'https://www.pngkit.com/',
|
||||||
@@ -402,10 +408,8 @@ module.exports = class CarRaceCommand extends Command {
|
|||||||
const x = (bg.width / 2) - 50;
|
const x = (bg.width / 2) - 50;
|
||||||
ctx.fillRect(x - 5, 85, 110, 110);
|
ctx.fillRect(x - 5, 85, 110, 110);
|
||||||
ctx.drawImage(win.id === userData.user.id ? userData.avatar : oppoData.avatar, x, 90, 100, 100);
|
ctx.drawImage(win.id === userData.user.id ? userData.avatar : oppoData.avatar, x, 90, 100, 100);
|
||||||
} else {
|
} else if (turnWin) {
|
||||||
const stars = await loadImage(
|
const stars = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'car-race', 'stars.png'));
|
||||||
path.join(__dirname, '..', '..', 'assets', 'images', 'car-race', 'stars.png')
|
|
||||||
);
|
|
||||||
ctx.fillStyle = 'black';
|
ctx.fillStyle = 'black';
|
||||||
ctx.fillRect(105, 45, 135, 135);
|
ctx.fillRect(105, 45, 135, 135);
|
||||||
ctx.drawImage(userData.avatar, 110, 50, 125, 125);
|
ctx.drawImage(userData.avatar, 110, 50, 125, 125);
|
||||||
@@ -421,6 +425,14 @@ module.exports = class CarRaceCommand extends Command {
|
|||||||
} else if (turnWin) {
|
} else if (turnWin) {
|
||||||
greyscale(ctx, bg.width - 110 - 125, 50, 125, 125);
|
greyscale(ctx, bg.width - 110 - 125, 50, 125, 125);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
const vs = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'car-race', 'vs.png'));
|
||||||
|
ctx.drawImage(vs, (bg.width / 2) - (vs.width / 2), 80, 75, 75);
|
||||||
|
ctx.fillStyle = 'black';
|
||||||
|
ctx.fillRect(105, 45, 135, 135);
|
||||||
|
ctx.drawImage(userData.avatar, 110, 50, 125, 125);
|
||||||
|
ctx.fillRect(bg.width - 115 - 125, 45, 135, 135);
|
||||||
|
ctx.drawImage(oppoData.avatar, bg.width - 110 - 125, 50, 125, 125);
|
||||||
}
|
}
|
||||||
return canvas.toBuffer();
|
return canvas.toBuffer();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user