Skip to content

Instantly share code, notes, and snippets.

@senorihl
Last active February 16, 2019 11:58
Show Gist options
  • Save senorihl/218335a2f7a9da7ab5e5ff4784985344 to your computer and use it in GitHub Desktop.
Save senorihl/218335a2f7a9da7ab5e5ff4784985344 to your computer and use it in GitHub Desktop.
Project Ideas

Role Playing Desktop Game

This project would consist on a desktop app built with electron which players wan join game room (with a code ?) and follow game activity such as life points 🖤, currency 💲 and object possessed 🎒.

Main functionalities

Any player lauching the app must declare (at least) a username, later he can either creates a room or join one with a code. The creator can declare a Game Master 👑 who can modify all users' caracteristics. Each game is saved asynchronously for each client, so any person can re-launch the game, with its own saving state. If another player join with db modification made later it will be sync with all client.

RPG related functionalities

GM can grant gold and object freely, he must create each object and can later re-use those already created.

Entities

  • Object
    • name
    • description
    • price (used to easily sold object)
  • Player
    • userName
    • characterName
    • lifePoint
    • currencyCount
    • characteristics
    • objects
  • Room
    • uniq
    • password (can be null)
    • name
    • players
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment