comparison docs/specs/db/spell.md @ 182:3107ce017c3a

Misc: switch back to SDL Qt Quick and QML was an exciting experiment but it's definitely not enough flexible and easy to use for game development. Using SDL2 will let us focusing on our own drawing functions without any kind of overhead. While here, start massive cleanup.
author David Demelier <markand@malikania.fr>
date Fri, 19 Oct 2018 20:18:19 +0200
parents
children
comparison
equal deleted inserted replaced
181:fbfc2555bda5 182:3107ce017c3a
1 # Spell
2
3 Each `character` have a series of spell that is customized by the user.
4
5 ## Table recommandation
6
7 | field | type |
8 |---------------|---------------------------|
9 | id | big integer (primary key) |
10 | character_id | big integer |
11 | classname | string not null |
12 | level | short int |
13
14 ## Fields
15
16 - **id**: unique idenfitier,
17 - **character_id**: references character.id,
18 - **classname**: the class name to create,
19 - **level**: spell level,