diff --git a/commands/jeux/roll.js b/commands/jeux/roll.js index 88635f5..839c146 100644 --- a/commands/jeux/roll.js +++ b/commands/jeux/roll.js @@ -104,8 +104,10 @@ module.exports = { } let gain = 0; - if (((args[1] === 'rouge' || args[1] === 'red') && colorR === 'rouge') || ((args[1] === 'noir' || args[1] === 'black') && colorR === 'noir') || ((args[1] === 'vert' || args[1] === 'green') && colorR === 'vert')) { + if (((args[1] === 'rouge' || args[1] === 'red') && colorR === 'rouge') || ((args[1] === 'noir' || args[1] === 'black') && colorR === 'noir')) { gain = args[0] * 2; + } else if ((args[1] === 'vert' || args[1] === 'green') && colorR === 'vert') { + gain = args[0] * 36; } else { gain = 0-args[0]; }