- Create a `/multidrop` command - This will take the price of 10 drops from you and give you 11 cards to sort through - You then have a choice to keep the card or sacrifice it - Create the `multidrop keep` and `multidrop sacrifice` button events #262 Reviewed-on: #376 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
8 lines
No EOL
562 B
TypeScript
8 lines
No EOL
562 B
TypeScript
export default class ErrorMessages {
|
|
public static readonly BotSyncing = "Bot is currently syncing, please wait until its done.";
|
|
public static readonly SafeMode = "Safe Mode has been activated, please resync to continue.";
|
|
public static readonly UnableToFetchCard = "Unable to fetch card, please try again.";
|
|
public static readonly UnableToFetchUser = "Unable to fetch user, please try again.";
|
|
|
|
public static readonly NotEnoughCurrency = (need: number, have: number) => `Not enough currency! You need ${need} currency, you have ${have}!`;
|
|
} |