IN3D / Pokemon

Recreation of pokemon, in C#.
0 stars 0 forks source link

Create users collection #45

Closed IN3D closed 9 years ago

IN3D commented 9 years ago

Create a collection in the Database for users. The end result of this collection should be a document for each player, and that a user can log into the game through their log-in info. This user document will be able to keep track of everything relating to our characters in the game.

This will eventually include things like, our items, pokemon (party and boxes), and location in the game world.

Suggested structure would be something like:

id : ObjectId,
name : string,
password : string,
developer : bool

More may be required of the structure later, but this should be all we need of the user data for a while.