Skip to content

Commit

Permalink
feat(kazu): Add more number reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
jurienhamaker committed Jul 15, 2024
1 parent 7b8d90b commit 5413113
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions apps/kazu/src/modules/game/services/game.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,45 @@ Used **1 server** save, There are **${saves}/${maxSaves}** server saves left.`);
}

private async _setNumber(message: Message, count: number) {
if (count === 4) {
await message.react('🍀').catch(() => null);
}

if (count === 69) {
await message.react('1260697303224815696').catch(() => null);
}

if (count === 100) {
await message.react('💯').catch(() => null);
}

if (count === 360) {
await message.react('⚪').catch(() => null);
}

if (count === 420) {
await message.react('🍃').catch(() => null);
}

if (count === 666) {
await message.react('🤘').catch(() => null);
}

if (count === 777) {
await message.react('🎰').catch(() => null);
}

if (count === 1000) {
await message.react('1262411624019525684').catch(() => null);
}

if (count === 10000) {
await message.react('1262411765996851200').catch(() => null);
}

if (count === 100000) {
await message.react('1262411649407647904').catch(() => null);
}
}

private async _checkCooldown(
Expand Down

0 comments on commit 5413113

Please sign in to comment.