Added map tiles from Unleashed GM Toolkit and Catacomb Tiles.

This commit is contained in:
Yord 2016-05-27 16:17:28 +02:00
parent 185a7eaa40
commit 3202c4ecef
29 changed files with 40 additions and 6 deletions

View file

@ -30,8 +30,14 @@ tags: [ Version 1 ]
<h2>Image Library</h2> <h2>Image Library</h2>
<h3>Tiles 16x21</h3> <h3>HW Boards 16x21</h3>
<ul id="tiles"></ul> <ul id="hw-boards" class="tiles"></ul>
<h3>CT Boards 16x21</h3>
<ul id="ct-boards" class="tiles"></ul>
<h3>GM Boards 16x21</h3>
<ul id="gm-boards" class="tiles"></ul>
<h3>Tokens 1x1 S</h3> <h3>Tokens 1x1 S</h3>
<ul id="tokens1x1s"></ul> <ul id="tokens1x1s"></ul>

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 KiB

View file

@ -28,7 +28,9 @@ var ikrpg = ikrpg || {};
function fillLibrary() { function fillLibrary() {
appendTiles(); appendHWTiles();
appendCTTiles();
appendGMTiles();
append10x3tokens(); append10x3tokens();
append1x1Stokens(); append1x1Stokens();
append4x3tokens(); append4x3tokens();
@ -36,10 +38,10 @@ var ikrpg = ikrpg || {};
appendSmallBases(); appendSmallBases();
appendMediumBases(); appendMediumBases();
function appendTiles() { function appendHWTiles() {
$.each(['01', '02', '03', '04', '05', '06', '07', '08', '09'], function(i, id) { $.each(['01', '02', '03', '04', '05', '06', '07', '08', '09'], function(i, id) {
$.each(['A', 'B'], function(j, key) { $.each(['A', 'B'], function(j, key) {
$('#tiles').append('\ $('#hw-boards').append('\
<li class="tile">\ <li class="tile">\
<h4>HW Board '+key+id+'</h4>\ <h4>HW Board '+key+id+'</h4>\
<img class="lib-img tile" src="/static/images/maps/tiles/HW-Board-'+key+id+'.png" />\ <img class="lib-img tile" src="/static/images/maps/tiles/HW-Board-'+key+id+'.png" />\
@ -49,6 +51,32 @@ var ikrpg = ikrpg || {};
}); });
} }
function appendCTTiles() {
$.each(['01', '02', '03', '04', '05', '06', '07', '08', '09'], function(i, id) {
$.each(['A', 'B'], function(j, key) {
$('#ct-boards').append('\
<li class="tile">\
<h4>CT Board '+key+id+'</h4>\
<img class="lib-img tile" src="/static/images/maps/tiles/CT-Board-'+key+id+'.png" />\
</li>\
');
});
});
}
function appendGMTiles() {
$.each(['01', '02', '03', '04'], function(i, id) {
$.each(['A', 'B'], function(j, key) {
$('#gm-boards').append('\
<li class="tile">\
<h4>GM Board '+key+id+'</h4>\
<img class="lib-img tile" src="/static/images/maps/tiles/GM-Board-'+key+id+'.png" />\
</li>\
');
});
});
}
function append10x3tokens() { function append10x3tokens() {
$.each(['03', '10', '17', '24'], function(i, id) { $.each(['03', '10', '17', '24'], function(i, id) {
$.each(['A', 'B'], function(j, key) { $.each(['A', 'B'], function(j, key) {

View file

@ -100,7 +100,7 @@
font-size: 16px; font-size: 16px;
} }
#maps #img-library ul#tiles li.tile img { #maps #img-library ul.tiles li.tile img {
width: calc(1600px / 10); width: calc(1600px / 10);
} }