Uploaded bots for the first time

This commit is contained in:
TheSomeoneXD
2018-10-12 01:36:53 -05:00
parent c3f241cfae
commit e09d528c81
70 changed files with 21621 additions and 2 deletions

11
TextAdv/dungeonClass.js Normal file
View File

@@ -0,0 +1,11 @@
// Dungeons
module.exports = class DungeonRaidInstance {
constructor(room, players) {
this.room = room;
this.players = players;
this.location;
this.state = DungeonState.WAITING_FOR_USERS;
this.dialogObj;
this.isTyping;
}
}