Add pets and their images

This commit is contained in:
Codrin Pavel
2019-11-30 16:08:58 +02:00
parent ed01ccfc1c
commit 317b7e6ef8
20 changed files with 8 additions and 4 deletions

BIN
_assets/img/Pets/6000.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
_assets/img/Pets/6001.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
_assets/img/Pets/6002.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
_assets/img/Pets/6003.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
_assets/img/Pets/6004.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

BIN
_assets/img/Pets/6005.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -23,7 +23,8 @@ layout: default
v-if="ally.location.type == 'Hero' && ally.user.name != 'Empty'" v-for="ally in orderedAllies">
<input name="attack_first" type="checkbox" />
<input name="attack_second" type="checkbox" />
<img v-if="character.state.maxHp != -1" v-for="character in ally.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type != 'pet'" v-for="character in ally.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type == 'pet'" v-for="character in ally.team[0]" :src="'assets/img/Pets/'+ character.id + '.png'" />
<div class="team__details">
<span class="team__location">{{ ally.location.name }}</span>
{{ ally.user.name }} - {{ ally.power | formatNumber }}
@@ -36,7 +37,8 @@ layout: default
<label class="team team--hero enemy-team js-enemy-hero" :data-name="enemy.user.name" :data-power="enemy.power"
v-if="enemy.location.type == 'Hero' && enemy.user.name != 'Empty'" v-for="enemy in orderedEnemies">
<input type="checkbox" />
<img v-if="character.state.maxHp != -1" v-for="character in enemy.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type != 'pet'" v-for="character in enemy.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type == 'pet'" v-for="character in enemy.team[0]" :src="'assets/img/Pets/'+ character.id + '.png'" />
<div class="team__details">
<span class="team__location">{{ enemy.location.name }}</span>
{{ enemy.user.name }} - {{ enemy.power | formatNumber }}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -64,7 +64,8 @@
v-if="ally.location.type == 'Hero' && ally.user.name != 'Empty'" v-for="ally in orderedAllies">
<input name="attack_first" type="checkbox" />
<input name="attack_second" type="checkbox" />
<img v-if="character.state.maxHp != -1" v-for="character in ally.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type != 'pet'" v-for="character in ally.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type == 'pet'" v-for="character in ally.team[0]" :src="'assets/img/Pets/'+ character.id + '.png'" />
<div class="team__details">
<span class="team__location">{{ ally.location.name }}</span>
{{ ally.user.name }} - {{ ally.power | formatNumber }}
@@ -77,7 +78,8 @@
<label class="team team--hero enemy-team js-enemy-hero" :data-name="enemy.user.name" :data-power="enemy.power"
v-if="enemy.location.type == 'Hero' && enemy.user.name != 'Empty'" v-for="enemy in orderedEnemies">
<input type="checkbox" />
<img v-if="character.state.maxHp != -1" v-for="character in enemy.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type != 'pet'" v-for="character in enemy.team[0]" :src="'assets/img/Heroes/00'+ character.id + '.png'" />
<img v-if="character.type == 'pet'" v-for="character in enemy.team[0]" :src="'assets/img/Pets/'+ character.id + '.png'" />
<div class="team__details">
<span class="team__location">{{ enemy.location.name }}</span>
{{ enemy.user.name }} - {{ enemy.power | formatNumber }}

BIN
assets/img/Pets/6000.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/img/Pets/6001.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
assets/img/Pets/6002.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

BIN
assets/img/Pets/6003.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/img/Pets/6004.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
assets/img/Pets/6005.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB