Compare commits

...

5 commits

6 changed files with 12 additions and 10 deletions

View file

@ -50,6 +50,8 @@
border: 0.125em dashed var(--clr-box-border);
padding: 1em;
text-wrap: balance;
}
:host figcaption {

View file

@ -1,6 +1,6 @@
<nav :aria-label="label" webc:root="override">
<label for="nav-toggle">
<icon icon="bars"></icon>
<icon icon="fa6-solid:bars"></icon>
</label>
<input type="checkbox" id="nav-toggle" />
<template

View file

@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Character Ref</title>
<title webc:if="$data.fullName" @text="`${$data.fullName} — Character Reference`"></title>
<title webc:else>Choose Your Character!</title>
<template webc:is="page-head-base" webc:nokeep></template>
<template webc:is="page-head-fonts" webc:nokeep></template>

View file

@ -64,7 +64,7 @@ Sebin's wings have a span of about 4.17 meters (13'8"). They function very much
<traits :@traits="$data.getTraits('head')"></traits>
</quick-info>
Despite what one might expect with reptilians, Sebin's pupils are rounded instead of slit-shaped. Yellow spikes running above his eyelids serve as eyebrows. These spikes are also found along his jaw bone. Two pointed, slightly curved, black horns protrude from his head. He usually wears his medium-length, blue hair loose. His long, pointed ears are very flexible, allowing him to hear sounds around him without having to turn his head. They are also used for non-verbal communication, to express emotions through body language. His hearing perceives a wider range of frequencies, making it superior to that of a human. His jaws are equipped with razor-sharp teeth that effortlessly sink into anything he manages to bite, be it nourishment or adversaries. Embedded between them lies his tongue, which is typically pointed for reptilians. Glands in his throat produce a mixture which he uses to spit fire, which can reach up to around 100 °C (212 °F).
Despite what one might expect with reptilians, Sebin's pupils are rounded instead of slit-shaped. Yellow spikes running above his eyelids serve as eyebrows. These spikes are also found along his jaw bone. Two pointed, slightly curved, black horns protrude from his head. He usually wears his medium-length, blue hair loose. His long, pointed ears are very flexible, allowing him to hear sounds around him without having to turn his head. They are also used for non-verbal communication, to express emotions through body language. His hearing perceives a wider range of frequencies, making it superior to that of a human. His jaws are equipped with razor-sharp teeth that effortlessly sink into anything he manages to bite, be it nourishment or adversaries. Embedded between them lies his tongue, which is typically pointed for reptilians. Glands in his throat produce a mixture which he uses to spit fire, which can reach up to around 100 °C (<span @text="$data.toFahrenheit(100)" webc:nokeep></span> °F).
## Upper body
@ -107,7 +107,7 @@ An assortment of additional references how Sebin can be drawn.
## Danger Zone
Here be kinky dragons 👀💦
You haven't seen it *all*, yet! 👀💦
</div>
## Penis

View file

@ -35,10 +35,7 @@ Sebin rarely says no to a good beer with friends, just as he rarely says no to a
## But wait! There's more…
Discover Sebin's kinkier side 😏
Curious what he's into? 😏
</div>
## Kinks
<filter-list :@data="$data.kinks"></filter-list>
</nsfw-barrier>

View file

@ -5,7 +5,8 @@ import {
getTailLength,
getWeight,
getWingspan,
toInch
toInch,
toFahrenheit
} from '../includes/util.js';
const firstName = 'Sebin',
@ -166,5 +167,6 @@ export default {
colors,
kinks,
description,
getTraits
getTraits,
toFahrenheit
};