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

@ -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 = [];