generated from nhcarrigan/template
feat: add race/class to character sheet, public /character/:id page
Players can now set their character's race and class in the Character tab. A new public page at /character/:id displays the full character sheet — name, pronouns, race, class, bio, and guild lore.
This commit is contained in:
@@ -92,6 +92,8 @@ export interface BuyPrestigeUpgradeResponse {
|
||||
export interface PublicProfileResponse {
|
||||
characterName: string;
|
||||
pronouns: string;
|
||||
characterRace: string;
|
||||
characterClass: string;
|
||||
username: string;
|
||||
avatar: string | null;
|
||||
bio: string;
|
||||
@@ -121,6 +123,8 @@ export interface PublicProfileResponse {
|
||||
export interface UpdateProfileRequest {
|
||||
characterName: string;
|
||||
pronouns: string;
|
||||
characterRace: string;
|
||||
characterClass: string;
|
||||
bio: string;
|
||||
guildName: string;
|
||||
guildDescription: string;
|
||||
@@ -130,6 +134,8 @@ export interface UpdateProfileRequest {
|
||||
export interface UpdateProfileResponse {
|
||||
characterName: string;
|
||||
pronouns: string;
|
||||
characterRace: string;
|
||||
characterClass: string;
|
||||
bio: string;
|
||||
guildName: string;
|
||||
guildDescription: string;
|
||||
|
||||
Reference in New Issue
Block a user