Added clothes
This commit is contained in:
parent
743826e56b
commit
1ac3b9af9a
17 changed files with 41 additions and 7 deletions
|
@ -11,6 +11,36 @@ export default {
|
|||
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) {
|
||||
let kittens = [];
|
||||
|
||||
|
|
|
@ -42,16 +42,17 @@ export default {
|
|||
{
|
||||
name: "Cold Weather",
|
||||
clothes: [
|
||||
"lorem ipsum dolor sit amet",
|
||||
"lorem ipsum dolor sit amet",
|
||||
"lorem ipsum dolor sit amet",
|
||||
"lorem ipsum dolor sit amet"
|
||||
"Coat",
|
||||
"Checkered scarf with short cords",
|
||||
"Hoodie",
|
||||
"Loose Jeans",
|
||||
"Boots"
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Workout",
|
||||
clothes: [
|
||||
"Tight Tank Top",
|
||||
"Sleeveless Hoodie (hood goes on)",
|
||||
"Fingerless Gloves",
|
||||
"Short Shorts",
|
||||
"(barefoot)"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue