Edit some counters

This commit is contained in:
Catalin Constantin Mititiuc 2024-07-23 20:20:00 -07:00
parent 5fc598cdd1
commit 37b05156c6
13 changed files with 39 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

View File

@ -26,12 +26,30 @@
<use x="8.66" y="15" transform="rotate(60 8.66 15)" href="#ast-line"/> <use x="8.66" y="15" transform="rotate(60 8.66 15)" href="#ast-line"/>
</pattern> </pattern>
<image id="counter-grenade" href="counter_grenade.png" width="10"/> <g id="counter-grenade">
<image id="counter-prone" href="counter_prone.png" width="10"/> <rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image id="counter-basement" href="counter_basement.png" width="10"/> <image href="counter_grenade.png" width="10"/>
<image id="counter-1st-floor" href="counter_1st_floor.png" width="10"/> </g>
<image id="counter-2nd-floor" href="counter_2nd_floor.png" width="10"/> <g id="counter-prone">
<image id="counter-3rd-floor" href="counter_3rd_floor.png" width="10"/> <rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image href="counter_prone.png" width="10"/>
</g>
<g id="counter-basement">
<rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image href="counter_basement.png" width="10"/>
</g>
<g id="counter-1st-floor">
<rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image href="counter_1st_floor.png" width="10"/>
</g>
<g id="counter-2nd-floor">
<rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image href="counter_2nd_floor.png" width="10"/>
</g>
<g id="counter-3rd-floor">
<rect x="0" y="0" width="10" height="10" fill="beige" stroke="black" stroke-width="0.5"/>
<image href="counter_3rd_floor.png" width="10"/>
</g>
</defs> </defs>
<g class="gameboard" data-view-elevation="0"> <g class="gameboard" data-view-elevation="0">

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -243,11 +243,21 @@
<button type="button" class="grenade"> <button type="button" class="grenade">
<img src="assets/images/icon_grenade.png" height="12" /> <img src="assets/images/icon_grenade.png" height="12" />
</button> </button>
<button type="button" class="prone">Prone</button> <button type="button" class="prone">
<button type="button" class="basement">Bsmnt</button> <img src="assets/images/icon_prone.png" height="12" />
<button type="button" class="1st-floor">1st Flr</button> </button>
<button type="button" class="2nd-floor">2nd Flr</button> <button type="button" class="basement">
<button type="button" class="3rd-floor">3rd Flr</button> <img src="assets/images/icon_basement.png" height="12" />
</button>
<button type="button" class="1st-floor">
<img src="assets/images/icon_1st_floor.png" height="12" />
</button>
<button type="button" class="2nd-floor">
<img src="assets/images/icon_2nd_floor.png" height="12" />
</button>
<button type="button" class="3rd-floor">
<img src="assets/images/icon_3rd_floor.png" height="12" />
</button>
</div> </div>
</div> </div>