BudWorks / Akaei

A fun, cute, and modern Discord bot featuring pets, economy, leveling, and more. Built with Discord.js and written in Typescript.
Mozilla Public License 2.0
1 stars 0 forks source link

Create `character` subdocument and add it to `User` schema #55

Open JustYourBud opened 2 years ago

JustYourBud commented 2 years ago

The character subdocument contains info about all of the characters a user has made, like their names, description, etc.

Interface

{
  _id: number;
  name: string;
  bio: string;
  nickname: string;
  age: number;
  birthday: string(?);
  likes: [ ];
  dislikes: [ ];
  color: string;
  image: string;
  avatar: string;
}