feat: add section, harmonize variable names

This commit is contained in:
Sebin Nyshkim 2025-07-23 20:30:07 +02:00
parent 417a863725
commit d3e85c2e91
Signed by: SebinNyshkim
SSH key fingerprint: SHA256:LG1WHMySL/4iW/Yci+0eHgbf0te5beRiLlmyoY8E5D0
3 changed files with 12 additions and 6 deletions

View file

@ -19,7 +19,7 @@ const firstName = 'Sebin',
gender = 'male',
pronouns = 'he/him',
orientation = 'gay',
position = 'vers, prefers top',
role = 'vers, prefers top',
height = 210, // cm
weight = 174, // kg
tailLength = 154, // cm
@ -87,6 +87,10 @@ const firstName = 'Sebin',
{ icon: 'fa6-solid:maximize', type: 'Type', text: penis.type },
{ icon: 'fa6-solid:star', type: 'Special Features', text: penis.special }
],
sexuality = [
{ icon: 'fa6-solid:heart', type: 'Orientation', text: orientation },
{ icon: 'fa6-solid:arrows-up-down', type: 'Role', text: role }
],
kinks = [
// 0 = No, 1 = Maybe, 2 = Yes, 3 = Love
{ name: 'Absorption', rating: 0 },
@ -152,6 +156,8 @@ const getTraits = (type) => {
return muscle;
case 'naughty':
return naughty;
case 'sexuality':
return sexuality;
default:
return profile;
}
@ -164,7 +170,7 @@ export default {
gender,
pronouns,
orientation,
position,
role,
tailLength,
wingspan,
colors,

View file

@ -23,7 +23,7 @@ He greatly dislikes the dependence on tech of the modern age, which is why he's
## Sexuality
<quick-info>
<traits :@traits="$data.getTraits('naughty')"></traits>
<traits :@traits="$data.getTraits('sexuality')"></traits>
</quick-info>
Viktor noticed early on that he felt a bit differently about other boys in school. He frequently sought out the camaraderie of his male peers, even when they were getting to the age where most of them started taking an increased interest in dating girls. Every time they asked Viktor when he's going to introduce them to "his girl" he avoided the question or made up reasons why he hadn't found the right one yet.

View file

@ -22,7 +22,7 @@ const firstName = 'Viktor',
{ name: 'Eyes secondary', value: '#6dabd1' }
],
description = 'Hardened-up, but far from fossilized!',
naughty = [
sexuality = [
{ icon: 'fa6-solid:heart', type: 'Orientation', text: orientation },
{ icon: 'fa6-solid:arrows-up-down', type: 'Role', text: role }
],
@ -35,8 +35,8 @@ const firstName = 'Viktor',
const getTraits = (type) => {
switch (type) {
case 'naughty':
return naughty;
case 'sexuality':
return sexuality;
default:
return anatomy;