adding latest
This commit is contained in:
@@ -5,22 +5,22 @@
|
|||||||
{
|
{
|
||||||
"name": "Shiki_0",
|
"name": "Shiki_0",
|
||||||
"cards": [
|
"cards": [
|
||||||
{ "id": "23c8ab29", "name": "shiki_0_card_0", "url": "https://shiki_0_card_0.png" },
|
{ "id": "23c8ab29", "name": "shiki_0_card_0", "url": "AS.png" },
|
||||||
{ "id": "58472d92", "name": "shiki_0_card_0", "url": "https://shiki_0_card_0.png" },
|
{ "id": "58472d92", "name": "shiki_0_card_0", "url": "AS.png" },
|
||||||
{ "id": "4210b5bb", "name": "shiki_0_card_1", "url": "https://shiki_0_card_1.png" },
|
{ "id": "4210b5bb", "name": "shiki_0_card_1", "url": "KS.png" },
|
||||||
{ "id": "1d512961", "name": "shiki_0_card_1", "url": "https://shiki_0_card_1.png" },
|
{ "id": "1d512961", "name": "shiki_0_card_1", "url": "KS.png" },
|
||||||
{ "id": "345fcb75", "name": "shiki_0_card_2", "url": "https://shiki_0_card_2.png" },
|
{ "id": "345fcb75", "name": "shiki_0_card_2", "url": "2S.png" },
|
||||||
{ "id": "1d6b91ab", "name": "shiki_0_card_2", "url": "https://shiki_0_card_2.png" },
|
{ "id": "1d6b91ab", "name": "shiki_0_card_2", "url": "2S.png" },
|
||||||
{ "id": "5aa61d05", "name": "shiki_0_card_3", "url": "https://shiki_0_card_3.png" },
|
{ "id": "5aa61d05", "name": "shiki_0_card_3", "url": "3S.png" },
|
||||||
{ "id": "006ebea2", "name": "shiki_0_card_3", "url": "https://shiki_0_card_3.png" },
|
{ "id": "006ebea2", "name": "shiki_0_card_3", "url": "3S.png" },
|
||||||
{ "id": "cc861795", "name": "shiki_0_card_4", "url": "https://shiki_0_card_4.png" },
|
{ "id": "cc861795", "name": "shiki_0_card_4", "url": "4S.png" },
|
||||||
{ "id": "c34695f0", "name": "shiki_0_card_4", "url": "https://shiki_0_card_4.png" },
|
{ "id": "c34695f0", "name": "shiki_0_card_4", "url": "4S.png" },
|
||||||
{ "id": "8086ded8", "name": "shiki_0_card_5", "url": "https://shiki_0_card_5.png" },
|
{ "id": "8086ded8", "name": "shiki_0_card_5", "url": "5S.png" },
|
||||||
{ "id": "d0df74c2", "name": "shiki_0_card_5", "url": "https://shiki_0_card_5.png" },
|
{ "id": "d0df74c2", "name": "shiki_0_card_5", "url": "5S.png" },
|
||||||
{ "id": "b8dfe5be", "name": "shiki_0_card_6", "url": "https://shiki_0_card_6.png" },
|
{ "id": "b8dfe5be", "name": "shiki_0_card_6", "url": "6S.png" },
|
||||||
{ "id": "d72b3867", "name": "shiki_0_card_6", "url": "https://shiki_0_card_6.png" },
|
{ "id": "d72b3867", "name": "shiki_0_card_6", "url": "6S.png" },
|
||||||
{ "id": "e715a175", "name": "shiki_0_card_7", "url": "https://shiki_0_card_7.png" },
|
{ "id": "e715a175", "name": "shiki_0_card_7", "url": "7S.png" },
|
||||||
{ "id": "0b19a276", "name": "shiki_0_card_7", "url": "https://shiki_0_card_7.png" }
|
{ "id": "0b19a276", "name": "shiki_0_card_7", "url": "7S.png" }
|
||||||
],
|
],
|
||||||
"avatar": "https://cdn.vuetifyjs.com/images/lists/1.jpg"
|
"avatar": "https://cdn.vuetifyjs.com/images/lists/1.jpg"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -104,23 +104,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="10">{{ selected_shikigami_decks[index][index] }}</v-col>
|
<v-col cols="10">
|
||||||
|
<div cols="12">
|
||||||
|
{{ selected_shikigami_decks[index][index] }}
|
||||||
|
</div>
|
||||||
|
<div cols="12">
|
||||||
|
<v-card
|
||||||
|
v-for="i in selected_shikigami_decks[index][index]"
|
||||||
|
:key="i.id"
|
||||||
|
max-width="12.5%"
|
||||||
|
>
|
||||||
|
{{ i.name }}
|
||||||
|
<v-img
|
||||||
|
:src="require(`@/assets/deck_of_cards/${i.url}`)"
|
||||||
|
></v-img>
|
||||||
|
</v-card>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-card>
|
</v-card>
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-container grid-list-xl>
|
|
||||||
<v-select
|
|
||||||
v-model="color"
|
|
||||||
:items="colors"
|
|
||||||
item-text="title"
|
|
||||||
item-value="id"
|
|
||||||
multiple
|
|
||||||
return-object
|
|
||||||
>
|
|
||||||
</v-select>
|
|
||||||
colors: {{ color }}<br />
|
|
||||||
computed: {{ getColors }}
|
|
||||||
</v-container>
|
|
||||||
</v-container>
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -137,7 +140,6 @@ export default {
|
|||||||
{ id: 2, title: "blue" },
|
{ id: 2, title: "blue" },
|
||||||
{ id: 3, title: "red" },
|
{ id: 3, title: "red" },
|
||||||
],
|
],
|
||||||
color: [],
|
|
||||||
}),
|
}),
|
||||||
methods: {
|
methods: {
|
||||||
get_chosen_shikigami_data: function (shikigami_name) {
|
get_chosen_shikigami_data: function (shikigami_name) {
|
||||||
@@ -191,11 +193,7 @@ export default {
|
|||||||
return this.doubled_cards;
|
return this.doubled_cards;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {},
|
||||||
getColors() {
|
|
||||||
return this.color.map((c) => c.title);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
watch: {
|
watch: {
|
||||||
selected_shikigami_names: function () {
|
selected_shikigami_names: function () {
|
||||||
this.selected_shikigami_data = [];
|
this.selected_shikigami_data = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user