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

View file

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