Add basic form of editable profile fields to profile tab

This commit is contained in:
Johannes Loher 2021-01-03 23:26:31 +01:00
parent 98ce35f831
commit 2cb0411288
2 changed files with 26 additions and 1 deletions

View file

@ -170,4 +170,19 @@ export const DS4 = {
eyeColor: "DS4.ProfileEyeColor",
specialCharacteristics: "DS4.ProfileSpecialCharacteristics",
},
/**
* Define the profile info types for hanndlebars of a character
*/
profileDTypes: {
gender: "String",
birthday: "String",
birthplace: "String",
age: "Number",
height: "Number",
hairColor: "String",
weight: "Number",
eyeColor: "String",
specialCharacteristics: "String",
},
};