feat: include pronouns in character gender data

This commit is contained in:
Sebin Nyshkim 2025-04-09 19:13:55 +02:00
parent b91e9f609a
commit 2321b0e85b
2 changed files with 2 additions and 2 deletions

View file

@ -219,7 +219,7 @@ const getWingspan = () => `${wingspan / 100} m (${toImperial(wingspan)})`;
const getTraits = () => [ const getTraits = () => [
{ icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() }, { icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() },
{ icon: 'mars', type: 'Sex/Gender', text: gender }, { icon: 'mars', type: 'Sex/Gender', text: `${gender} (${pronouns})` },
{ icon: 'ruler', type: 'Height', text: getHeight() }, { icon: 'ruler', type: 'Height', text: getHeight() },
{ icon: 'weight-hanging', type: 'Weight', text: getWeight() }, { icon: 'weight-hanging', type: 'Weight', text: getWeight() },
{ icon: 'ruler', type: 'Tail Length', text: getTailLength() }, { icon: 'ruler', type: 'Tail Length', text: getTailLength() },

View file

@ -116,7 +116,7 @@ const getWeight = () => `${weight} kg (${toLbs(weight)} lbs)`;
const getTraits = () => [ const getTraits = () => [
{ icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() }, { icon: 'cake-candles', type: 'Date of Birth', text: getDateOfBirth() },
{ icon: 'mars', type: 'Sex/Gender', text: gender }, { icon: 'mars', type: 'Sex/Gender', text: `${gender} (${pronouns})` },
{ icon: 'ruler', type: 'Height', text: getHeight() }, { icon: 'ruler', type: 'Height', text: getHeight() },
{ icon: 'weight-hanging', type: 'Weight', text: getWeight() } { icon: 'weight-hanging', type: 'Weight', text: getWeight() }
]; ];