diff --git a/other/quiz/quiz_questions.js b/other/quiz/quiz_questions.js index 1ae12c72..fa3b68f3 100644 --- a/other/quiz/quiz_questions.js +++ b/other/quiz/quiz_questions.js @@ -197,7 +197,11 @@ const pokemonType = () => new Promise(resolve => { (async () => { const pokemon = getRandomPokemon(); const types = pokemon.type.map(t => PokemonType[t]); - const answer = new RegExp(`^\\W*(${types.join('\\W*')}|${types.reverse().join('\\W*')})\\b`, 'i'); + let memeAnswer = ''; + if (types.includes('Flying') && types.includes('Normal')) { + memeAnswer = 'bir[bd]'; + } + const answer = new RegExp(`^\\W*(${types.join('\\W*')}|${types.reverse().join('\\W*')}${memeAnswer && `|${memeAnswer}`})\\b`, 'i'); let amount = getAmount();