- update: proto files to move common stuff into common proto files
- update: made changes for new proto paths - add: skills to character table - add: load and send skills to client from db - add: chat proto
This commit is contained in:
@@ -73,10 +73,11 @@ message Character {
|
||||
}
|
||||
|
||||
message CharacterFull {
|
||||
string character_id = 1; // Unique ID for the character
|
||||
string name = 2; // Name of the character
|
||||
Location position = 3; // Character's position
|
||||
Looks looks = 4; // Character's Looks
|
||||
Stats stats = 5; // Character's stats
|
||||
repeated Item items = 6; // Character inventory
|
||||
string character_id = 1; // Unique ID for the character
|
||||
string name = 2; // Name of the character
|
||||
Location position = 3; // Character's position
|
||||
Looks looks = 4; // Character's Looks
|
||||
Stats stats = 5; // Character's stats
|
||||
repeated int32 skills = 6; // Character's skills
|
||||
repeated Item items = 7; // Character inventory
|
||||
}
|
||||
Reference in New Issue
Block a user