feat: add details to Sebin's data

This commit is contained in:
Sebin Nyshkim 2022-01-11 14:25:22 +01:00
parent 35c694af79
commit 0db25371c7

View file

@ -6,9 +6,11 @@ export default {
lastName: "Nyshkim",
dateOfBirth: new Date("1993-10-17"),
gender: "male ♂️",
orientation: "gay",
height: 210, // cm
weight: 124, // kg
wingspan: 350, // cm
tailLength: 104, // cm
wingspan: 417, // cm
colors: {
hairPrimary: "#4b608f",
hairSecondary: "#6684c0",
@ -22,13 +24,35 @@ export default {
nipples: "#413a3a",
penis: "#413a3a",
},
hobbies: ["working out", "travels", "camping", "video games", "tech"],
penis: {
shape: "humanoid",
type: "grower",
special: "ridged",
special: "ridged, no foreskin",
size: 20, // cm
girth: 5, // cm
},
prefs: {
position: "vers, prefers top",
kinks: [
"oral (give/receive)",
"anal (give/receive)",
"facial (give/receive/self)",
"underwear",
"frotting",
"creampie",
"bukkake",
"biting",
"nipple play",
"roughness",
"toys",
"chubbies",
"muscle worship (give/receive)",
"filling condoms",
"growth/macro (not rampage-y)",
"size difference",
],
},
};
},
@ -69,7 +93,7 @@ export default {
["Scale Color", this.colors.scalesPrimary],
["Chestplate Color", this.colors.scalesSecondary],
["Hair Color", this.colors.hairPrimary],
["Hair Streaks", this.colors.hairSecondary],
["Hair Streaks (optional)", this.colors.hairSecondary],
["Eyes", this.colors.eyes],
["Facial Spikes", this.colors.eyebrows],
["Horns/Claws/Nipples", this.colors.horns],
@ -92,7 +116,16 @@ export default {
],
};
return { generic, colors, penis };
const preferences = {
headers: ["Key", "Value"],
data: [
["Orientation", this.orientation],
["Position", this.prefs.position],
["Kinks", this.prefs.kinks],
],
};
return { generic, colors, penis, preferences };
},
},
};