diff --git a/src/sebin/sebin.11tydata.js b/src/sebin/sebin.11tydata.js
index 46f381a..b163889 100644
--- a/src/sebin/sebin.11tydata.js
+++ b/src/sebin/sebin.11tydata.js
@@ -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,
diff --git a/src/viktor/index.md b/src/viktor/index.md
index 797328d..9d8e04e 100644
--- a/src/viktor/index.md
+++ b/src/viktor/index.md
@@ -23,7 +23,7 @@ He greatly dislikes the dependence on tech of the modern age, which is why he's
## Sexuality
-
+
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.
diff --git a/src/viktor/viktor.11tydata.js b/src/viktor/viktor.11tydata.js
index 28fa432..b85a44f 100644
--- a/src/viktor/viktor.11tydata.js
+++ b/src/viktor/viktor.11tydata.js
@@ -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;