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)
This commit is contained in:
2021-02-18 14:22:09 -07:00
parent 0fd7c1e752
commit 3fd540373b
91 changed files with 87 additions and 96 deletions

View File

@@ -31,16 +31,19 @@
></base-timer>
</div>
<template v-if="currentLevel == 0">
<template v-if="currentLevel == 0 && !hidehighscorecover">
<v-card-title
class="levelscore pa-6 font-weight-black apply-font"
style="justify-content: center;"
class="levelscore pa-6 font-weight-black apply-font"
>
High Score: {{ highscore }} by {{ highscorer }}
<br />
</v-card-title>
</template>
<template v-else>
<v-card-title class="levelscore pa-6 font-weight-black">
<template v-if="currentLevel != 0">
<v-card-title
style="justify-content: center;"
class="levelscore pa-6 font-weight-black">
{{ name }}
<v-spacer></v-spacer>
{{ score }}
@@ -111,7 +114,7 @@
</v-row>
<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="jumptopanties">Panties</v-btn>
<v-btn x-small @click="jumptopussy">Pussy</v-btn>
@@ -125,7 +128,7 @@
</v-row>
<v-row dense>
<v-col :cols="6">
<v-col :cols="3">
<v-text-field
dense
v-model="name"
@@ -133,6 +136,16 @@
placeholder="Player Name"
></v-text-field>
</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 dense>
<v-col :cols="3">
@@ -164,19 +177,6 @@
<v-btn v-else x-small @click="stoptimer">Stop</v-btn>
</v-col>
</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-content>
</v-app>
@@ -184,13 +184,13 @@
<script>
import Vuetify from "vuetify";
// api key AIzaSyCAW_4WvUsVuikytJw_yvJKxHKRHrCsBAs
// import FontPicker from "font-picker-vue";
import FontPicker from "font-picker-vue";
import BaseTimer from "./components/BaseTimer.vue";
export default {
vuetify: new Vuetify(),
components: {
// FontPicker,
FontPicker,
BaseTimer,
},
beforeMount: function() {},
@@ -198,7 +198,7 @@ export default {
this.reset();
},
methods: {
reset: function() {
reset: function () {
this.currentLevel = 0;
this.score = 0;
this.currenttask = 0;
@@ -234,7 +234,7 @@ export default {
if (this.currenttask > 0) this.currenttask--;
},*/
nextlevel: function() {
nextlevel: function () {
if (this.currentLevel < this.levels.length) {
this.ready = false;
this.currenttask = 0;
@@ -242,7 +242,7 @@ export default {
this.ready = true;
}
},
previouslevel: function() {
previouslevel: function () {
if (this.currentLevel > 0) {
this.ready = false;
this.currentLevel--;
@@ -252,7 +252,7 @@ export default {
/*nextTask: function() {
this.currenttask++;
},*/
completetask: function() {
completetask: function () {
if (!this.levels[this.currentLevel].completed) {
this.levels[this.currentLevel].completed = true;
this.score += this.levels[this.currentLevel].points;
@@ -262,81 +262,80 @@ export default {
}
console.log(this.currenttask);
},
givebonuspoints: function() {
givebonuspoints: function () {
this.score += parseInt(this.bonuspoints);
this.overlayimg = "assets/bonuspoints.png";
this.showoverlay = true;
setTimeout(this.stopoverlay, 2000);
},
leveljump: function(i) {
leveljump: function (i) {
this.ready = false;
this.currentLevel = i;
this.ready = true;
},
jumptotits: function() {
jumptotits: function () {
this.ready = false;
this.currentLevel = 13;
this.ready = true;
},
jumptopanties: function() {
jumptopanties: function () {
this.ready = false;
this.currentLevel = 30;
this.ready = true;
},
jumptopussy: function() {
jumptopussy: function () {
this.ready = false;
this.currentLevel = 39;
this.ready = true;
},
jumptorubpussy: function() {
jumptorubpussy: function () {
this.ready = false;
this.currentLevel = 49;
this.ready = true;
},
jumptosextoy: function() {
jumptosextoy: function () {
this.ready = false;
this.currentLevel = 74;
this.ready = true;
},
jumptoclamps: function() {
jumptoclamps: function () {
this.ready = false;
this.currentLevel = 84;
this.ready = true;
},
jumptocandle: function() {
jumptocandle: function () {
this.ready = false;
this.currentLevel = 89;
this.ready = true;
},
jumptoassplay: function() {
jumptoassplay: function () {
this.ready = false;
this.currentLevel = 98;
this.ready = true;
},
jumptoasstoy: function() {
jumptoasstoy: function () {
this.ready = false;
this.currentLevel = 105;
this.ready = true;
},
startoverlay: function() {
/*startoverlay: function() {
this.overlayimg = this.overlayselect;
this.showoverlay = true;
setTimeout(this.stopoverlay, 5000);
},
stopoverlay: function() {
},*/
stopoverlay: function () {
this.showoverlay = false;
},
starttimer: function() {
starttimer: function () {
this.showtimer = true;
},
stoptimer: function() {
stoptimer: function () {
this.showtimer = false;
},
/*fontChanged: function(e) {
fontChanged: function (e) {
console.log(e);
this.fontFamily = e.family;
},*/
},
},
computed: {
webmsource: function() {
@@ -349,8 +348,9 @@ export default {
sort: "alphabetical",
limit: 200,
},
hidehighscore: false,
/*fontFamily: "Acme",*/
/*hidehighscore: false,*/
hidehightscorecover: false,
fontFamily: "Acme",
levels: [
{
title: "Start - Cover",
@@ -362,13 +362,13 @@ export default {
title: "Start - Names & ages",
foreground: "assets/white.png-trans.png",
background: "assets/webm1.webm",
task: "Type or Say Ages",
task: "Type or say ages",
points: 5,
},
{
title: "Start - Peace sign",
foreground: "assets/bg/peacesign.png",
task: "Make a Peace Sign",
task: "Make a peace sign",
points: 5,
},
{
@@ -380,7 +380,7 @@ export default {
{
title: "Start - High five",
foreground: "assets/bg/highfive.png",
task: "Give each other a High Five",
task: "Give each other a high five",
points: 10,
},
{
@@ -404,7 +404,7 @@ export default {
{
title: "Start - Show cleavage",
foreground: "assets/bg/cleavage.png",
task: "Show off your Cleavage",
task: "Show off your cleavage",
points: 25,
},
{
@@ -416,7 +416,7 @@ export default {
{
title: "Start - Shake booty",
foreground: "assets/bg/bootyshake.gif",
task: "Shake your Booties",
task: "Shake your booties",
points: 25,
},
{
@@ -428,21 +428,20 @@ export default {
{
title: "Start - Show bra",
foreground: "assets/bg/showoffbra.png",
task: "Show off your bras (skip if not wearing)",
task: "Show off your bras",
points: 30,
},
{
stage: "TITS",
title: "TITS - Boob drop",
foreground: "assets/bg/boobdrop.webp",
task:
"Slowly do a Boob Drop together at the exact same time using your bra, shirt or hands",
task: "Slowly do a boob drop together with your bra, shirt or hands",
points: 30,
},
{
title: "TITS - Boob drop each other",
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,
},
{
@@ -460,26 +459,25 @@ export default {
{
title: "TITS - Heart boob",
foreground: "assets/bg/heartboob.png",
task: "Both make a Heart Boob",
task: "Both make a heart boob",
points: 30,
},
{
title: "TITS - Hand bra",
foreground: "assets/bg/handbra.webp",
task: "Both do a Hand Bra",
task: "Both do a hand bra",
points: 35,
},
{
title: "TITS - Hand bra each other",
foreground: "assets/bg/handbrahelp.gif",
task: "Do a Hand Bra on each other",
task: "Do a hand bra on each other",
points: 35,
},
{
title: "TITS - Push boobs together",
foreground: "assets/bg/boobsqueeze.png",
task:
"Both push Boobs together with hands (+35 BONUS - Squeeze together with Arms)",
task: "Squeeze boobs together with hands",
points: 35,
},
{
@@ -491,8 +489,7 @@ export default {
{
title: "TITS - Arms behind back",
foreground: "assets/bg/handsbehindback.png",
task:
"Both put your arms behind your back (like your wearing handcuffs)",
task: "Both put arms behind your back (like wearing handcuffs)",
points: 35,
},
{
@@ -534,19 +531,19 @@ export default {
{
title: "PANTIES - Remove bottoms",
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,
},
{
title: "PANTIES - Show panties (front)",
foreground: "assets/bg/showoffpanties.png",
task: "Both show Off Front of Panties",
task: "Both show off front of panties",
points: 45,
},
{
title: "PANTIES - Rub over panties",
foreground: "assets/bg/rubbingpanties.webp",
task: "Both Rub Pussy Over Panties (30 Sec)",
task: "Both rub pussy over panties (30 Sec)",
points: 45,
},
{
@@ -564,14 +561,13 @@ export default {
{
title: "PANTIES - Panties close to cam",
foreground: "assets/bg/wetpanties.png",
task:
"Both show Panties up close to cam (+50 BONUS if panties are wet)",
task: "Both show Panties up close to cam",
points: 50,
},
{
title: "PANTIES - Bend Over",
foreground: "assets/bg/pantiesbentover.png",
task: "Bend Over & Show off Panties",
task: "Bend over & show off panties",
points: 50,
},
{
@@ -583,8 +579,7 @@ export default {
{
title: "PANTIES - Pull down panties",
foreground: "assets/bg/pulldownpanties.webp",
task:
"Slowly pull down each others panties (+50 BONUS for bending over and taking them off slow and sexy)",
task: "Slowly pull down each others panties",
points: 55,
},
{
@@ -602,13 +597,13 @@ export default {
{
title: "PUSSY - legs back",
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,
},
{
title: "PUSSY - legs back far",
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,
},
{
@@ -620,13 +615,13 @@ export default {
{
title: "PUSSY - Ass to Ass",
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,
},
{
title: "PUSSY - Ass to ass legs up",
foreground: "assets/bg/legssidewayslegup.png",
task: "Both Lift 1 leg in the Air",
task: "Both lift 1 leg in the Air",
points: 55,
},
{
@@ -668,19 +663,19 @@ export default {
{
title: "ASS - Show both asses",
foreground: "assets/bg/showass.png",
task: "Turn & show off your Asses",
task: "Turn & show off your asses",
points: 55,
},
{
title: "ASS - Shake your asses",
foreground: "assets/bg/shakeass.webp",
task: "Shake your Asses",
task: "Shake your asses",
points: 55,
},
{
title: "ASS - Twerk",
foreground: "assets/bg/twerk.webp",
task: "Try to Twerk or Clap your Asses",
task: "Try to twerk or clap your asses",
points: 55,
},
{
@@ -752,7 +747,7 @@ export default {
{
title: "PUSSY - Finger 1 (Girl 2)",
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,
},
{
@@ -782,15 +777,13 @@ export default {
{
title: "DOGGY - 2 finger (Girl 1)",
foreground: "assets/bg/doggyfingeringhelp1.webp",
task:
"Bend her over and finger pussy from behind with 2 fingers (1min)",
task: "Bend her over & finger pussy from behind with 2 fingers (1min)",
points: 75,
},
{
title: "DOGGY - 2 finger (Girl 2)",
foreground: "assets/bg/doggyfingeringhelp2.webp",
task:
"Now switch and let her finger you from behind with 2 fingers (1min)",
task: "Switch and let her finger you from behind with 2 fingers (1min)",
points: 75,
},
{
@@ -844,20 +837,19 @@ export default {
{
title: "TOY - Doggy fuck pussy (Girl 2)",
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,
},
{
title: "TOY - Doggy fuck pussy (Girl 1)",
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,
},
{
title: "ORGASM!",
foreground: "assets/white.png-trans.png",
task:
"ORGASM! - (Make each other cum with your toy, fingers & tongues)",
task: "ORGASM! - (Make each other cum with your toy, fingers & tongues)",
points: 1000,
},
{
@@ -869,8 +861,7 @@ export default {
{
title: "CLAMP - Clamp nipples",
foreground: "assets/bg/nippleclamps.png",
task:
"Clamp each others nipples (Binder Clips, Bobby Pins, Clothes Pins)",
task: "Clamp each others nipples (Binder Clips, Bobby Pins, Clothes Pins)",
points: 300,
},
{
@@ -912,25 +903,25 @@ export default {
{
title: "CANDLE - Tits",
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,
},
{
title: "CANDLE - Nipples",
foreground: "assets/bg/candlenipples.webp",
task: "Drip the candle wax on each others nipples",
task: "Drip candle wax on each others nipples",
points: 300,
},
{
title: "CANDLE - Ass",
foreground: "assets/bg/candleass.gif",
task: "Drip the candle wax on each others ass",
task: "Drip candle wax on each others ass",
points: 300,
},
{
title: "CANDLE - Above pussy",
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,
},
{
@@ -948,7 +939,7 @@ export default {
{
title: "CANDLE - In ass",
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,
},
{
@@ -972,7 +963,7 @@ export default {
{
title: "ASS PLAY - Finger ass (Girl 2)",
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,
},
{
@@ -984,7 +975,7 @@ export default {
{
title: "ASS PLAY - 2 Finger ass (Girl 2)",
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,
},
{
@@ -1083,7 +1074,7 @@ body {
color: green;
}
.levelscore {
font-size: 344px;
font-size: 35px !important;
color: #fff;
text-shadow: 2px 2px #000;
}