Lorelei is what I would call a "MUD++".

This is a game client which connects to an authoratative game server to provide a visual representation of an entirely
text based world. You control a hero with stats, and equipment in a big constantly updated world.

This project was made using pygame as a user interface, and twisted as the networking library. Essentially this gave me
the power to easily build a project structure from scratch that allows for easily serializing and deserializing objects
over the network between the server and the client.

The Server is closed source to prevent malicious attacks on the game. However the client and library source may be
released at some point.






Current Progress
1) Login / Account creation (DONE)
2) Character Creation (When a new account is made)
    a) Players can select race/class (DONE)
    b) Saves the created character and can load it back (DONE)
3) Making a Basic World space
    a) Players can see/talk to each other
    b) Players can move between rooms
4) Adding more interaction
    a) Players can pickup/drop items
    b) Players can do basic combat (No skills included yet)
5) Create more monsters / items
6) Create more detailed classes / skills