feat: ✨ include pronouns in character gender data
This commit is contained in:
parent
b91e9f609a
commit
2321b0e85b
2 changed files with 2 additions and 2 deletions
|
@ -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() },
|
||||||
|
|
|
@ -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() }
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue