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 = [];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue