Added clothes

This commit is contained in:
Sebin Nyshkim 2019-11-06 23:40:47 +01:00
parent 743826e56b
commit 1ac3b9af9a
17 changed files with 41 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

View file

@ -118,6 +118,9 @@
<h2>Clothing Styles</h2> <h2>Clothing Styles</h2>
<template v-for="(style, index) in clothingStyles"> <template v-for="(style, index) in clothingStyles">
<h3 :key="style.name">{{ style.name }}</h3> <h3 :key="style.name">{{ style.name }}</h3>
<gallery :key="style.name + index" :images="clothes[index]"></gallery>
<ul :key="index"> <ul :key="index">
<li v-for="(part, index) in style.clothes" :key="index"> <li v-for="(part, index) in style.clothes" :key="index">
{{ part }} {{ part }}
@ -155,7 +158,6 @@
and abilities but comes at a cost. and abilities but comes at a cost.
</p> </p>
<rich-figure></rich-figure>
<p> <p>
He enters Overdrive by engulfing himself in a pillar of flames which He enters Overdrive by engulfing himself in a pillar of flames which
@ -240,7 +242,8 @@ export default {
return { return {
appName: "Sebin Nyshkim Character Reference Page", appName: "Sebin Nyshkim Character Reference Page",
muscleRefs: this.getMuscleRefPics(17), muscleRefs: this.getMuscleRefPics(17),
kittens: this.getKittens(17) kittens: this.getKittens(17),
clothes: this.getClothesPics()
}; };
}, },
mixins: [Sebin, Helper] mixins: [Sebin, Helper]

View file

@ -11,6 +11,36 @@ export default {
return muscles; return muscles;
}, },
getClothesPics() {
const warm = [
"/img/clothes-ref/warm/tank-top.jpg",
"/img/clothes-ref/warm/shorts.jpg",
"/img/clothes-ref/warm/hoodie.jpg",
"/img/clothes-ref/warm/sneakers.jpg"
];
const cold = [
"/img/clothes-ref/cold/coat.jpg",
"/img/clothes-ref/cold/scarf.jpg",
"/img/clothes-ref/cold/hoodie.jpg",
"/img/clothes-ref/cold/jeans.jpg",
"/img/clothes-ref/cold/boots.jpg"
];
const workout = [
"/img/clothes-ref/workout/hoodie.jpg",
"/img/clothes-ref/workout/gloves.jpg",
"/img/clothes-ref/workout/shorts.jpg"
];
const lazy = [
"/img/clothes-ref/lazy/pants.jpg",
"/img/clothes-ref/lazy/undies.jpg"
];
return [warm, cold, workout, lazy];
},
getKittens(count) { getKittens(count) {
let kittens = []; let kittens = [];

View file

@ -42,16 +42,17 @@ export default {
{ {
name: "Cold Weather", name: "Cold Weather",
clothes: [ clothes: [
"lorem ipsum dolor sit amet", "Coat",
"lorem ipsum dolor sit amet", "Checkered scarf with short cords",
"lorem ipsum dolor sit amet", "Hoodie",
"lorem ipsum dolor sit amet" "Loose Jeans",
"Boots"
] ]
}, },
{ {
name: "Workout", name: "Workout",
clothes: [ clothes: [
"Tight Tank Top", "Sleeveless Hoodie (hood goes on)",
"Fingerless Gloves", "Fingerless Gloves",
"Short Shorts", "Short Shorts",
"(barefoot)" "(barefoot)"