worked on README.md
This commit is contained in:
77
README.md
77
README.md
@@ -3,3 +3,80 @@
|
||||
This app allows users to create and manage tabletop campaigns, enabling them to
|
||||
build their own worlds and manage game sessions.
|
||||
|
||||
## Items that I want to add to my webapp
|
||||
- Campain Manager: This will alow you to manage you games on the table top or
|
||||
online using the webapp./
|
||||
- Campain Builder: This will alow the player to build a compain that your players
|
||||
can go on. The premess of this would be a way to create towns, cityes and
|
||||
NPCs that are in those cityes. Manage kindomes, empires. Another thing that
|
||||
would belong is a history builder. this would alow the player to build out
|
||||
the history of the world by adding events, key figures, battles, so on and
|
||||
so forth.
|
||||
- Character Creator: So every world is different in setting, rules and meny more
|
||||
things that I can list but would be a too long of a list. There needs to be
|
||||
a way for the GM to create a character desinge rules. for example would be a
|
||||
GM creates a new Magic system and your players stats are effected by that.
|
||||
So you would need to add another stat to that player
|
||||
- AI assistent???: this could be fun for adding new worlds and places. This AI
|
||||
wont drive the naritive but if your players draile this can help you get
|
||||
back on your feet. This would give you ideas on where to go form here or
|
||||
create new places on the fly. So that you can keep telling the story that
|
||||
you want to tell.
|
||||
|
||||
This is to be a rough outline on what the application is tobe. Each item is subject
|
||||
to change but must be a core element. Like the terms and how it taks is perform
|
||||
might change. But, the theme and the place that it wants to fill must be fofiled.
|
||||
|
||||
# TODO List
|
||||
This is the to do list for Desinged Worlds.
|
||||
## Character Creator
|
||||
This is all the notes that belong to the Character Creator.
|
||||
|
||||
- [x] [File Format]: There need to be a commen file format that alows for custome
|
||||
character sheets. This must alow the GM to create custome stats and aturbutes
|
||||
for his games.
|
||||
- [ ] [Character Creation Page]: This is the page where the players can create
|
||||
there character.
|
||||
- [ ] [GM Character Creation Manager]: This would allow the GM to create custom
|
||||
character sheets.
|
||||
|
||||
### File Formant
|
||||
There Must be a good file format that would alow the GM to create a custome character
|
||||
sheet.
|
||||
|
||||
So I was chating with llama and we can to the conclusion of using json. Here is
|
||||
the example that it gave me.
|
||||
|
||||
```json
|
||||
{
|
||||
"characterName": "John Doe",
|
||||
"attributes": {
|
||||
"strength": 10,
|
||||
"intelligence": 12,
|
||||
"agility": 11
|
||||
},
|
||||
"skills": [
|
||||
{"name": "lockpicking", "level": 3},
|
||||
{"name": "hacking", "level": 2}
|
||||
],
|
||||
"equipment": {
|
||||
"primary weapon": "rifle",
|
||||
"secondary weapon": "pistol"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Character Creation page
|
||||
This is the page that alows the character to create there character.
|
||||
|
||||
Features that I want to include into this page.
|
||||
- [ ] Random Character
|
||||
- [ ] Auto Roll
|
||||
- [ ] Printable Charactor Sheets
|
||||
- [ ] Auto Health Manager
|
||||
- [ ] Auto Ammo Manager
|
||||
- [ ] Item Giving and Sharing.
|
||||
- [ ] Save to json file
|
||||
|
||||
For PDF iner workings use this as a resorce
|
||||
- https://medium.com/@jberkenbilt/text-in-pdf-introduction-df3dd3dfa9ea
|
||||
|
||||
Reference in New Issue
Block a user