mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 15:07:26 +02:00
9bd39c69ca
sinon il y a pleins de truc comme les anti raid , des coorectif ect
24 lines
557 B
JavaScript
24 lines
557 B
JavaScript
const { Slots } = require('discord-gamecord');
|
|
|
|
module.exports = {
|
|
name: 'slot',
|
|
aliases: ['slotmachine'],
|
|
description: 'Jouer au jeu Slot',
|
|
emote: '🎰',
|
|
utilisation: 'slot',
|
|
category: 'game',
|
|
|
|
async execute(message, args) {
|
|
const Game = new Slots({
|
|
message: message,
|
|
isSlashGame: false,
|
|
embed: {
|
|
title: 'Slot Machine',
|
|
color: '#5865F2'
|
|
},
|
|
slots: ['🍇', '🍊', '🍋', '🍌']
|
|
});
|
|
|
|
Game.startGame();
|
|
},
|
|
}; |