Removed unused Assets
Cleaned up tasks Added back in font-picker-vue Set default font to Acme Added ability to hide high score on cover in code Changed high score & name font to 35px Changed reset/previous/next button alignment (fits better in OBS)
|
Before Width: | Height: | Size: 2.6 MiB |
|
Before Width: | Height: | Size: 340 KiB |
|
Before Width: | Height: | Size: 930 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
Before Width: | Height: | Size: 1009 KiB |
|
Before Width: | Height: | Size: 449 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 256 KiB |
|
Before Width: | Height: | Size: 560 KiB |
|
Before Width: | Height: | Size: 994 KiB |
|
Before Width: | Height: | Size: 528 KiB |
|
Before Width: | Height: | Size: 925 KiB |
|
Before Width: | Height: | Size: 7.3 MiB |
|
Before Width: | Height: | Size: 838 KiB |
|
Before Width: | Height: | Size: 6.1 MiB |
|
Before Width: | Height: | Size: 6.5 MiB |
|
Before Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 6.5 MiB |
|
Before Width: | Height: | Size: 5.7 MiB |
|
Before Width: | Height: | Size: 4.7 MiB |
|
Before Width: | Height: | Size: 554 KiB |
|
Before Width: | Height: | Size: 6.1 MiB |
|
Before Width: | Height: | Size: 4.6 MiB |
|
Before Width: | Height: | Size: 2.2 MiB |
|
Before Width: | Height: | Size: 926 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 830 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 668 KiB |
|
Before Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 610 KiB |
|
Before Width: | Height: | Size: 476 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 2.8 MiB |
|
Before Width: | Height: | Size: 225 KiB |
|
Before Width: | Height: | Size: 503 KiB |
|
Before Width: | Height: | Size: 382 KiB |
|
Before Width: | Height: | Size: 868 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 383 KiB |
|
Before Width: | Height: | Size: 638 KiB |
|
Before Width: | Height: | Size: 347 KiB |
|
Before Width: | Height: | Size: 449 KiB |
181
src/App.vue
@@ -31,16 +31,19 @@
|
|||||||
></base-timer>
|
></base-timer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-if="currentLevel == 0">
|
<template v-if="currentLevel == 0 && !hidehighscorecover">
|
||||||
<v-card-title
|
<v-card-title
|
||||||
|
style="justify-content: center;"
|
||||||
class="levelscore pa-6 font-weight-black apply-font"
|
class="levelscore pa-6 font-weight-black apply-font"
|
||||||
>
|
>
|
||||||
High Score: {{ highscore }} by {{ highscorer }}
|
High Score: {{ highscore }} by {{ highscorer }}
|
||||||
<br />
|
<br />
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-if="currentLevel != 0">
|
||||||
<v-card-title class="levelscore pa-6 font-weight-black">
|
<v-card-title
|
||||||
|
style="justify-content: center;"
|
||||||
|
class="levelscore pa-6 font-weight-black">
|
||||||
{{ name }}
|
{{ name }}
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
{{ score }}
|
{{ score }}
|
||||||
@@ -111,7 +114,7 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-row dense>
|
<v-row dense>
|
||||||
<v-col :cols="5">
|
<v-col :cols="12">
|
||||||
<v-btn x-small @click="jumptotits">Tits</v-btn>
|
<v-btn x-small @click="jumptotits">Tits</v-btn>
|
||||||
<v-btn x-small @click="jumptopanties">Panties</v-btn>
|
<v-btn x-small @click="jumptopanties">Panties</v-btn>
|
||||||
<v-btn x-small @click="jumptopussy">Pussy</v-btn>
|
<v-btn x-small @click="jumptopussy">Pussy</v-btn>
|
||||||
@@ -125,7 +128,7 @@
|
|||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-row dense>
|
<v-row dense>
|
||||||
<v-col :cols="6">
|
<v-col :cols="3">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
dense
|
dense
|
||||||
v-model="name"
|
v-model="name"
|
||||||
@@ -133,6 +136,16 @@
|
|||||||
placeholder="Player Name"
|
placeholder="Player Name"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
<v-col :cols="3">
|
||||||
|
<font-picker
|
||||||
|
v-if="true"
|
||||||
|
dense
|
||||||
|
:api-key="'AIzaSyCAW_4WvUsVuikytJw_yvJKxHKRHrCsBAs'"
|
||||||
|
:options="options"
|
||||||
|
:active-font="fontFamily"
|
||||||
|
@change="fontChanged"
|
||||||
|
></font-picker>
|
||||||
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-row dense>
|
<v-row dense>
|
||||||
<v-col :cols="3">
|
<v-col :cols="3">
|
||||||
@@ -164,19 +177,6 @@
|
|||||||
<v-btn v-else x-small @click="stoptimer">Stop</v-btn>
|
<v-btn v-else x-small @click="stoptimer">Stop</v-btn>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<!-- <v-row dense>
|
|
||||||
<v-col :cols="2">
|
|
||||||
<font-picker
|
|
||||||
v-if="false"
|
|
||||||
dense
|
|
||||||
:api-key="'AIzaSyCAW_4WvUsVuikytJw_yvJKxHKRHrCsBAs'"
|
|
||||||
:options="options"
|
|
||||||
:active-font="fontFamily"
|
|
||||||
@change="fontChanged"
|
|
||||||
></font-picker>
|
|
||||||
</v-col>
|
|
||||||
</v-row>-->
|
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-content>
|
</v-content>
|
||||||
</v-app>
|
</v-app>
|
||||||
@@ -184,13 +184,13 @@
|
|||||||
<script>
|
<script>
|
||||||
import Vuetify from "vuetify";
|
import Vuetify from "vuetify";
|
||||||
// api key AIzaSyCAW_4WvUsVuikytJw_yvJKxHKRHrCsBAs
|
// api key AIzaSyCAW_4WvUsVuikytJw_yvJKxHKRHrCsBAs
|
||||||
// import FontPicker from "font-picker-vue";
|
import FontPicker from "font-picker-vue";
|
||||||
import BaseTimer from "./components/BaseTimer.vue";
|
import BaseTimer from "./components/BaseTimer.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
vuetify: new Vuetify(),
|
vuetify: new Vuetify(),
|
||||||
components: {
|
components: {
|
||||||
// FontPicker,
|
FontPicker,
|
||||||
BaseTimer,
|
BaseTimer,
|
||||||
},
|
},
|
||||||
beforeMount: function() {},
|
beforeMount: function() {},
|
||||||
@@ -198,7 +198,7 @@ export default {
|
|||||||
this.reset();
|
this.reset();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
reset: function() {
|
reset: function () {
|
||||||
this.currentLevel = 0;
|
this.currentLevel = 0;
|
||||||
this.score = 0;
|
this.score = 0;
|
||||||
this.currenttask = 0;
|
this.currenttask = 0;
|
||||||
@@ -234,7 +234,7 @@ export default {
|
|||||||
if (this.currenttask > 0) this.currenttask--;
|
if (this.currenttask > 0) this.currenttask--;
|
||||||
},*/
|
},*/
|
||||||
|
|
||||||
nextlevel: function() {
|
nextlevel: function () {
|
||||||
if (this.currentLevel < this.levels.length) {
|
if (this.currentLevel < this.levels.length) {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currenttask = 0;
|
this.currenttask = 0;
|
||||||
@@ -242,7 +242,7 @@ export default {
|
|||||||
this.ready = true;
|
this.ready = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
previouslevel: function() {
|
previouslevel: function () {
|
||||||
if (this.currentLevel > 0) {
|
if (this.currentLevel > 0) {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel--;
|
this.currentLevel--;
|
||||||
@@ -252,7 +252,7 @@ export default {
|
|||||||
/*nextTask: function() {
|
/*nextTask: function() {
|
||||||
this.currenttask++;
|
this.currenttask++;
|
||||||
},*/
|
},*/
|
||||||
completetask: function() {
|
completetask: function () {
|
||||||
if (!this.levels[this.currentLevel].completed) {
|
if (!this.levels[this.currentLevel].completed) {
|
||||||
this.levels[this.currentLevel].completed = true;
|
this.levels[this.currentLevel].completed = true;
|
||||||
this.score += this.levels[this.currentLevel].points;
|
this.score += this.levels[this.currentLevel].points;
|
||||||
@@ -262,81 +262,80 @@ export default {
|
|||||||
}
|
}
|
||||||
console.log(this.currenttask);
|
console.log(this.currenttask);
|
||||||
},
|
},
|
||||||
givebonuspoints: function() {
|
givebonuspoints: function () {
|
||||||
this.score += parseInt(this.bonuspoints);
|
this.score += parseInt(this.bonuspoints);
|
||||||
this.overlayimg = "assets/bonuspoints.png";
|
this.overlayimg = "assets/bonuspoints.png";
|
||||||
this.showoverlay = true;
|
this.showoverlay = true;
|
||||||
setTimeout(this.stopoverlay, 2000);
|
setTimeout(this.stopoverlay, 2000);
|
||||||
},
|
},
|
||||||
leveljump: function(i) {
|
leveljump: function (i) {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = i;
|
this.currentLevel = i;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptotits: function() {
|
jumptotits: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 13;
|
this.currentLevel = 13;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptopanties: function() {
|
jumptopanties: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 30;
|
this.currentLevel = 30;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptopussy: function() {
|
jumptopussy: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 39;
|
this.currentLevel = 39;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptorubpussy: function() {
|
jumptorubpussy: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 49;
|
this.currentLevel = 49;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptosextoy: function() {
|
jumptosextoy: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 74;
|
this.currentLevel = 74;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptoclamps: function() {
|
jumptoclamps: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 84;
|
this.currentLevel = 84;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptocandle: function() {
|
jumptocandle: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 89;
|
this.currentLevel = 89;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptoassplay: function() {
|
jumptoassplay: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 98;
|
this.currentLevel = 98;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
jumptoasstoy: function() {
|
jumptoasstoy: function () {
|
||||||
this.ready = false;
|
this.ready = false;
|
||||||
this.currentLevel = 105;
|
this.currentLevel = 105;
|
||||||
this.ready = true;
|
this.ready = true;
|
||||||
},
|
},
|
||||||
startoverlay: function() {
|
/*startoverlay: function() {
|
||||||
this.overlayimg = this.overlayselect;
|
this.overlayimg = this.overlayselect;
|
||||||
this.showoverlay = true;
|
this.showoverlay = true;
|
||||||
setTimeout(this.stopoverlay, 5000);
|
setTimeout(this.stopoverlay, 5000);
|
||||||
},
|
},*/
|
||||||
stopoverlay: function() {
|
stopoverlay: function () {
|
||||||
this.showoverlay = false;
|
this.showoverlay = false;
|
||||||
},
|
},
|
||||||
starttimer: function() {
|
starttimer: function () {
|
||||||
this.showtimer = true;
|
this.showtimer = true;
|
||||||
},
|
},
|
||||||
stoptimer: function() {
|
stoptimer: function () {
|
||||||
this.showtimer = false;
|
this.showtimer = false;
|
||||||
},
|
},
|
||||||
|
fontChanged: function (e) {
|
||||||
/*fontChanged: function(e) {
|
|
||||||
console.log(e);
|
console.log(e);
|
||||||
this.fontFamily = e.family;
|
this.fontFamily = e.family;
|
||||||
},*/
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
webmsource: function() {
|
webmsource: function() {
|
||||||
@@ -349,8 +348,9 @@ export default {
|
|||||||
sort: "alphabetical",
|
sort: "alphabetical",
|
||||||
limit: 200,
|
limit: 200,
|
||||||
},
|
},
|
||||||
hidehighscore: false,
|
/*hidehighscore: false,*/
|
||||||
/*fontFamily: "Acme",*/
|
hidehightscorecover: false,
|
||||||
|
fontFamily: "Acme",
|
||||||
levels: [
|
levels: [
|
||||||
{
|
{
|
||||||
title: "Start - Cover",
|
title: "Start - Cover",
|
||||||
@@ -362,13 +362,13 @@ export default {
|
|||||||
title: "Start - Names & ages",
|
title: "Start - Names & ages",
|
||||||
foreground: "assets/white.png-trans.png",
|
foreground: "assets/white.png-trans.png",
|
||||||
background: "assets/webm1.webm",
|
background: "assets/webm1.webm",
|
||||||
task: "Type or Say Ages",
|
task: "Type or say ages",
|
||||||
points: 5,
|
points: 5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Start - Peace sign",
|
title: "Start - Peace sign",
|
||||||
foreground: "assets/bg/peacesign.png",
|
foreground: "assets/bg/peacesign.png",
|
||||||
task: "Make a Peace Sign",
|
task: "Make a peace sign",
|
||||||
points: 5,
|
points: 5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -380,7 +380,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "Start - High five",
|
title: "Start - High five",
|
||||||
foreground: "assets/bg/highfive.png",
|
foreground: "assets/bg/highfive.png",
|
||||||
task: "Give each other a High Five",
|
task: "Give each other a high five",
|
||||||
points: 10,
|
points: 10,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -404,7 +404,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "Start - Show cleavage",
|
title: "Start - Show cleavage",
|
||||||
foreground: "assets/bg/cleavage.png",
|
foreground: "assets/bg/cleavage.png",
|
||||||
task: "Show off your Cleavage",
|
task: "Show off your cleavage",
|
||||||
points: 25,
|
points: 25,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -416,7 +416,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "Start - Shake booty",
|
title: "Start - Shake booty",
|
||||||
foreground: "assets/bg/bootyshake.gif",
|
foreground: "assets/bg/bootyshake.gif",
|
||||||
task: "Shake your Booties",
|
task: "Shake your booties",
|
||||||
points: 25,
|
points: 25,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -428,21 +428,20 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "Start - Show bra",
|
title: "Start - Show bra",
|
||||||
foreground: "assets/bg/showoffbra.png",
|
foreground: "assets/bg/showoffbra.png",
|
||||||
task: "Show off your bras (skip if not wearing)",
|
task: "Show off your bras",
|
||||||
points: 30,
|
points: 30,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
stage: "TITS",
|
stage: "TITS",
|
||||||
title: "TITS - Boob drop",
|
title: "TITS - Boob drop",
|
||||||
foreground: "assets/bg/boobdrop.webp",
|
foreground: "assets/bg/boobdrop.webp",
|
||||||
task:
|
task: "Slowly do a boob drop together with your bra, shirt or hands",
|
||||||
"Slowly do a Boob Drop together at the exact same time using your bra, shirt or hands",
|
|
||||||
points: 30,
|
points: 30,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "TITS - Boob drop each other",
|
title: "TITS - Boob drop each other",
|
||||||
foreground: "assets/bg/boobdrophelp.webp",
|
foreground: "assets/bg/boobdrophelp.webp",
|
||||||
task: "Try to do a Boob Drop on each other",
|
task: "Try to do a boob drop on each other",
|
||||||
points: 30,
|
points: 30,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -460,26 +459,25 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "TITS - Heart boob",
|
title: "TITS - Heart boob",
|
||||||
foreground: "assets/bg/heartboob.png",
|
foreground: "assets/bg/heartboob.png",
|
||||||
task: "Both make a Heart Boob",
|
task: "Both make a heart boob",
|
||||||
points: 30,
|
points: 30,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "TITS - Hand bra",
|
title: "TITS - Hand bra",
|
||||||
foreground: "assets/bg/handbra.webp",
|
foreground: "assets/bg/handbra.webp",
|
||||||
task: "Both do a Hand Bra",
|
task: "Both do a hand bra",
|
||||||
points: 35,
|
points: 35,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "TITS - Hand bra each other",
|
title: "TITS - Hand bra each other",
|
||||||
foreground: "assets/bg/handbrahelp.gif",
|
foreground: "assets/bg/handbrahelp.gif",
|
||||||
task: "Do a Hand Bra on each other",
|
task: "Do a hand bra on each other",
|
||||||
points: 35,
|
points: 35,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "TITS - Push boobs together",
|
title: "TITS - Push boobs together",
|
||||||
foreground: "assets/bg/boobsqueeze.png",
|
foreground: "assets/bg/boobsqueeze.png",
|
||||||
task:
|
task: "Squeeze boobs together with hands",
|
||||||
"Both push Boobs together with hands (+35 BONUS - Squeeze together with Arms)",
|
|
||||||
points: 35,
|
points: 35,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -491,8 +489,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "TITS - Arms behind back",
|
title: "TITS - Arms behind back",
|
||||||
foreground: "assets/bg/handsbehindback.png",
|
foreground: "assets/bg/handsbehindback.png",
|
||||||
task:
|
task: "Both put arms behind your back (like wearing handcuffs)",
|
||||||
"Both put your arms behind your back (like your wearing handcuffs)",
|
|
||||||
points: 35,
|
points: 35,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -534,19 +531,19 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PANTIES - Remove bottoms",
|
title: "PANTIES - Remove bottoms",
|
||||||
foreground: "assets/bg/removepants.webp",
|
foreground: "assets/bg/removepants.webp",
|
||||||
task: "Both Slowly Remove your bottoms (Keep panties on)",
|
task: "Both slowly remove your bottoms (Keep panties on)",
|
||||||
points: 45,
|
points: 45,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "PANTIES - Show panties (front)",
|
title: "PANTIES - Show panties (front)",
|
||||||
foreground: "assets/bg/showoffpanties.png",
|
foreground: "assets/bg/showoffpanties.png",
|
||||||
task: "Both show Off Front of Panties",
|
task: "Both show off front of panties",
|
||||||
points: 45,
|
points: 45,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "PANTIES - Rub over panties",
|
title: "PANTIES - Rub over panties",
|
||||||
foreground: "assets/bg/rubbingpanties.webp",
|
foreground: "assets/bg/rubbingpanties.webp",
|
||||||
task: "Both Rub Pussy Over Panties (30 Sec)",
|
task: "Both rub pussy over panties (30 Sec)",
|
||||||
points: 45,
|
points: 45,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -564,14 +561,13 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PANTIES - Panties close to cam",
|
title: "PANTIES - Panties close to cam",
|
||||||
foreground: "assets/bg/wetpanties.png",
|
foreground: "assets/bg/wetpanties.png",
|
||||||
task:
|
task: "Both show Panties up close to cam",
|
||||||
"Both show Panties up close to cam (+50 BONUS if panties are wet)",
|
|
||||||
points: 50,
|
points: 50,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "PANTIES - Bend Over",
|
title: "PANTIES - Bend Over",
|
||||||
foreground: "assets/bg/pantiesbentover.png",
|
foreground: "assets/bg/pantiesbentover.png",
|
||||||
task: "Bend Over & Show off Panties",
|
task: "Bend over & show off panties",
|
||||||
points: 50,
|
points: 50,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -583,8 +579,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PANTIES - Pull down panties",
|
title: "PANTIES - Pull down panties",
|
||||||
foreground: "assets/bg/pulldownpanties.webp",
|
foreground: "assets/bg/pulldownpanties.webp",
|
||||||
task:
|
task: "Slowly pull down each others panties",
|
||||||
"Slowly pull down each others panties (+50 BONUS for bending over and taking them off slow and sexy)",
|
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -602,13 +597,13 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PUSSY - legs back",
|
title: "PUSSY - legs back",
|
||||||
foreground: "assets/bg/holdlegsupshowpussy.png",
|
foreground: "assets/bg/holdlegsupshowpussy.png",
|
||||||
task: "Pull & hold your legs back and show off pussies",
|
task: "Pull & hold legs back and show off pussies",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "PUSSY - legs back far",
|
title: "PUSSY - legs back far",
|
||||||
foreground: "assets/bg/legswayback.png",
|
foreground: "assets/bg/legswayback.png",
|
||||||
task: "Pull & hold your your legs back as far as you can",
|
task: "Pull & hold your legs back as far as you can",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -620,13 +615,13 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PUSSY - Ass to Ass",
|
title: "PUSSY - Ass to Ass",
|
||||||
foreground: "assets/bg/legssidewaysspread.png",
|
foreground: "assets/bg/legssidewaysspread.png",
|
||||||
task: "Spread your cheeks with 1 hand (+50 BONUS Slap your Ass)",
|
task: "Spread your cheeks with 1 hand & hold it",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "PUSSY - Ass to ass legs up",
|
title: "PUSSY - Ass to ass legs up",
|
||||||
foreground: "assets/bg/legssidewayslegup.png",
|
foreground: "assets/bg/legssidewayslegup.png",
|
||||||
task: "Both Lift 1 leg in the Air",
|
task: "Both lift 1 leg in the Air",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -668,19 +663,19 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "ASS - Show both asses",
|
title: "ASS - Show both asses",
|
||||||
foreground: "assets/bg/showass.png",
|
foreground: "assets/bg/showass.png",
|
||||||
task: "Turn & show off your Asses",
|
task: "Turn & show off your asses",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "ASS - Shake your asses",
|
title: "ASS - Shake your asses",
|
||||||
foreground: "assets/bg/shakeass.webp",
|
foreground: "assets/bg/shakeass.webp",
|
||||||
task: "Shake your Asses",
|
task: "Shake your asses",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "ASS - Twerk",
|
title: "ASS - Twerk",
|
||||||
foreground: "assets/bg/twerk.webp",
|
foreground: "assets/bg/twerk.webp",
|
||||||
task: "Try to Twerk or Clap your Asses",
|
task: "Try to twerk or clap your asses",
|
||||||
points: 55,
|
points: 55,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -752,7 +747,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "PUSSY - Finger 1 (Girl 2)",
|
title: "PUSSY - Finger 1 (Girl 2)",
|
||||||
foreground: "assets/bg/1fingerhelp2.webp",
|
foreground: "assets/bg/1fingerhelp2.webp",
|
||||||
task: "Now switch and let the other girl slowly slide a finger in",
|
task: "Switch and let her slowly slide a finger in",
|
||||||
points: 70,
|
points: 70,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -782,15 +777,13 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "DOGGY - 2 finger (Girl 1)",
|
title: "DOGGY - 2 finger (Girl 1)",
|
||||||
foreground: "assets/bg/doggyfingeringhelp1.webp",
|
foreground: "assets/bg/doggyfingeringhelp1.webp",
|
||||||
task:
|
task: "Bend her over & finger pussy from behind with 2 fingers (1min)",
|
||||||
"Bend her over and finger pussy from behind with 2 fingers (1min)",
|
|
||||||
points: 75,
|
points: 75,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "DOGGY - 2 finger (Girl 2)",
|
title: "DOGGY - 2 finger (Girl 2)",
|
||||||
foreground: "assets/bg/doggyfingeringhelp2.webp",
|
foreground: "assets/bg/doggyfingeringhelp2.webp",
|
||||||
task:
|
task: "Switch and let her finger you from behind with 2 fingers (1min)",
|
||||||
"Now switch and let her finger you from behind with 2 fingers (1min)",
|
|
||||||
points: 75,
|
points: 75,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -844,20 +837,19 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "TOY - Doggy fuck pussy (Girl 2)",
|
title: "TOY - Doggy fuck pussy (Girl 2)",
|
||||||
foreground: "assets/bg/toypussydoggyhelp1.webp",
|
foreground: "assets/bg/toypussydoggyhelp1.webp",
|
||||||
task: "Bend her over and Fuck her pussy with it (1 min)",
|
task: "Bend her over and fuck her pussy with it (1 min)",
|
||||||
points: 90,
|
points: 90,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "TOY - Doggy fuck pussy (Girl 1)",
|
title: "TOY - Doggy fuck pussy (Girl 1)",
|
||||||
foreground: "assets/bg/toypussydoggyhelp2.gif",
|
foreground: "assets/bg/toypussydoggyhelp2.gif",
|
||||||
task: "Switch and bend her over and Fuck her pussy with it (1 min)",
|
task: "Switch and bend her over and fuck her pussy with it (1 min)",
|
||||||
points: 90,
|
points: 90,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "ORGASM!",
|
title: "ORGASM!",
|
||||||
foreground: "assets/white.png-trans.png",
|
foreground: "assets/white.png-trans.png",
|
||||||
task:
|
task: "ORGASM! - (Make each other cum with your toy, fingers & tongues)",
|
||||||
"ORGASM! - (Make each other cum with your toy, fingers & tongues)",
|
|
||||||
points: 1000,
|
points: 1000,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -869,8 +861,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "CLAMP - Clamp nipples",
|
title: "CLAMP - Clamp nipples",
|
||||||
foreground: "assets/bg/nippleclamps.png",
|
foreground: "assets/bg/nippleclamps.png",
|
||||||
task:
|
task: "Clamp each others nipples (Binder Clips, Bobby Pins, Clothes Pins)",
|
||||||
"Clamp each others nipples (Binder Clips, Bobby Pins, Clothes Pins)",
|
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -912,25 +903,25 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "CANDLE - Tits",
|
title: "CANDLE - Tits",
|
||||||
foreground: "assets/bg/candletits.webp",
|
foreground: "assets/bg/candletits.webp",
|
||||||
task: "Drip the candle wax on each others tits (not your nipples)",
|
task: "Drip candle wax on each others tits (not your nipples)",
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "CANDLE - Nipples",
|
title: "CANDLE - Nipples",
|
||||||
foreground: "assets/bg/candlenipples.webp",
|
foreground: "assets/bg/candlenipples.webp",
|
||||||
task: "Drip the candle wax on each others nipples",
|
task: "Drip candle wax on each others nipples",
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "CANDLE - Ass",
|
title: "CANDLE - Ass",
|
||||||
foreground: "assets/bg/candleass.gif",
|
foreground: "assets/bg/candleass.gif",
|
||||||
task: "Drip the candle wax on each others ass",
|
task: "Drip candle wax on each others ass",
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "CANDLE - Above pussy",
|
title: "CANDLE - Above pussy",
|
||||||
foreground: "assets/bg/candleabovepussy.png",
|
foreground: "assets/bg/candleabovepussy.png",
|
||||||
task: "Drip the candle wax just above each others pussy",
|
task: "Drip candle wax just above each others pussy",
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -948,7 +939,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "CANDLE - In ass",
|
title: "CANDLE - In ass",
|
||||||
foreground: "assets/bg/candleinass.png",
|
foreground: "assets/bg/candleinass.png",
|
||||||
task: "Put the candle in each of your asses while in doggystyle",
|
task: "Put the candle in each of your asses in doggy style",
|
||||||
points: 300,
|
points: 300,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -972,7 +963,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "ASS PLAY - Finger ass (Girl 2)",
|
title: "ASS PLAY - Finger ass (Girl 2)",
|
||||||
foreground: "assets/bg/assfingerhelp2.webp",
|
foreground: "assets/bg/assfingerhelp2.webp",
|
||||||
task: "Switch & Finger her asshole with 1 finger (30 sec)",
|
task: "Switch & finger her asshole with 1 finger (30 sec)",
|
||||||
points: 750,
|
points: 750,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -984,7 +975,7 @@ export default {
|
|||||||
{
|
{
|
||||||
title: "ASS PLAY - 2 Finger ass (Girl 2)",
|
title: "ASS PLAY - 2 Finger ass (Girl 2)",
|
||||||
foreground: "assets/bg/ass2fingerhelp2.webp",
|
foreground: "assets/bg/ass2fingerhelp2.webp",
|
||||||
task: "Switch & Finger her asshole with 2 fingers (30 sec)",
|
task: "Switch & finger her asshole with 2 fingers (30 sec)",
|
||||||
points: 750,
|
points: 750,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -1083,7 +1074,7 @@ body {
|
|||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
.levelscore {
|
.levelscore {
|
||||||
font-size: 344px;
|
font-size: 35px !important;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-shadow: 2px 2px #000;
|
text-shadow: 2px 2px #000;
|
||||||
}
|
}
|
||||||
|
|||||||