mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 12:15:46 +01:00
37 lines
997 B
TypeScript
37 lines
997 B
TypeScript
import UserWarning from './models/UserWarning';
|
|
import UserBan from './models/UserBan';
|
|
import { IGameDBEntry, IResponses } from './models/interfaces';
|
|
import discord = require('discord.js');
|
|
|
|
/* Application State */
|
|
class State {
|
|
logChannel: discord.TextChannel | discord.DMChannel | null;
|
|
msglogChannel: discord.TextChannel | discord.DMChannel | null;
|
|
warnings: UserWarning[];
|
|
responses: IResponses;
|
|
bans: UserBan[];
|
|
stats: { joins: number; ruleAccepts: number; leaves: number; warnings: number; };
|
|
lastGameDBUpdate: number;
|
|
gameDB: IGameDBEntry[];
|
|
gameDBPromise: Promise<void> | null;
|
|
|
|
constructor () {
|
|
this.logChannel = null;
|
|
this.msglogChannel = null;
|
|
this.warnings = [];
|
|
this.responses = require('./responses.json');
|
|
this.bans = [];
|
|
this.stats = {
|
|
joins: 0,
|
|
ruleAccepts: 0,
|
|
leaves: 0,
|
|
warnings: 0
|
|
};
|
|
this.lastGameDBUpdate = 0;
|
|
this.gameDB = [];
|
|
this.gameDBPromise = null;
|
|
}
|
|
}
|
|
|
|
export default new State();
|