Added map tiles from Unleashed GM Toolkit and Catacomb Tiles.
|
|
@ -30,8 +30,14 @@ tags: [ Version 1 ]
|
|||
|
||||
<h2>Image Library</h2>
|
||||
|
||||
<h3>Tiles 16x21</h3>
|
||||
<ul id="tiles"></ul>
|
||||
<h3>HW Boards 16x21</h3>
|
||||
<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>
|
||||
<ul id="tokens1x1s"></ul>
|
||||
|
|
|
|||
BIN
static/images/maps/tiles/CT-Board-A01.png
Normal file
|
After Width: | Height: | Size: 524 KiB |
BIN
static/images/maps/tiles/CT-Board-A02.png
Normal file
|
After Width: | Height: | Size: 537 KiB |
BIN
static/images/maps/tiles/CT-Board-A03.png
Normal file
|
After Width: | Height: | Size: 537 KiB |
BIN
static/images/maps/tiles/CT-Board-A04.png
Normal file
|
After Width: | Height: | Size: 533 KiB |
BIN
static/images/maps/tiles/CT-Board-A05.png
Normal file
|
After Width: | Height: | Size: 541 KiB |
BIN
static/images/maps/tiles/CT-Board-A06.png
Normal file
|
After Width: | Height: | Size: 535 KiB |
BIN
static/images/maps/tiles/CT-Board-A07.png
Normal file
|
After Width: | Height: | Size: 512 KiB |
BIN
static/images/maps/tiles/CT-Board-A08.png
Normal file
|
After Width: | Height: | Size: 536 KiB |
BIN
static/images/maps/tiles/CT-Board-A09.png
Normal file
|
After Width: | Height: | Size: 527 KiB |
BIN
static/images/maps/tiles/CT-Board-B01.png
Normal file
|
After Width: | Height: | Size: 530 KiB |
BIN
static/images/maps/tiles/CT-Board-B02.png
Normal file
|
After Width: | Height: | Size: 558 KiB |
BIN
static/images/maps/tiles/CT-Board-B03.png
Normal file
|
After Width: | Height: | Size: 517 KiB |
BIN
static/images/maps/tiles/CT-Board-B04.png
Normal file
|
After Width: | Height: | Size: 518 KiB |
BIN
static/images/maps/tiles/CT-Board-B05.png
Normal file
|
After Width: | Height: | Size: 516 KiB |
BIN
static/images/maps/tiles/CT-Board-B06.png
Normal file
|
After Width: | Height: | Size: 532 KiB |
BIN
static/images/maps/tiles/CT-Board-B07.png
Normal file
|
After Width: | Height: | Size: 554 KiB |
BIN
static/images/maps/tiles/CT-Board-B08.png
Normal file
|
After Width: | Height: | Size: 524 KiB |
BIN
static/images/maps/tiles/CT-Board-B09.png
Normal file
|
After Width: | Height: | Size: 543 KiB |
BIN
static/images/maps/tiles/GM-Board-A01.png
Normal file
|
After Width: | Height: | Size: 497 KiB |
BIN
static/images/maps/tiles/GM-Board-A02.png
Normal file
|
After Width: | Height: | Size: 495 KiB |
BIN
static/images/maps/tiles/GM-Board-A03.png
Normal file
|
After Width: | Height: | Size: 492 KiB |
BIN
static/images/maps/tiles/GM-Board-A04.png
Normal file
|
After Width: | Height: | Size: 488 KiB |
BIN
static/images/maps/tiles/GM-Board-B01.png
Normal file
|
After Width: | Height: | Size: 507 KiB |
BIN
static/images/maps/tiles/GM-Board-B02.png
Normal file
|
After Width: | Height: | Size: 488 KiB |
BIN
static/images/maps/tiles/GM-Board-B03.png
Normal file
|
After Width: | Height: | Size: 500 KiB |
BIN
static/images/maps/tiles/GM-Board-B04.png
Normal file
|
After Width: | Height: | Size: 500 KiB |
|
|
@ -28,7 +28,9 @@ var ikrpg = ikrpg || {};
|
|||
|
||||
|
||||
function fillLibrary() {
|
||||
appendTiles();
|
||||
appendHWTiles();
|
||||
appendCTTiles();
|
||||
appendGMTiles();
|
||||
append10x3tokens();
|
||||
append1x1Stokens();
|
||||
append4x3tokens();
|
||||
|
|
@ -36,10 +38,10 @@ var ikrpg = ikrpg || {};
|
|||
appendSmallBases();
|
||||
appendMediumBases();
|
||||
|
||||
function appendTiles() {
|
||||
function appendHWTiles() {
|
||||
$.each(['01', '02', '03', '04', '05', '06', '07', '08', '09'], function(i, id) {
|
||||
$.each(['A', 'B'], function(j, key) {
|
||||
$('#tiles').append('\
|
||||
$('#hw-boards').append('\
|
||||
<li class="tile">\
|
||||
<h4>HW Board '+key+id+'</h4>\
|
||||
<img class="lib-img tile" src="/static/images/maps/tiles/HW-Board-'+key+id+'.png" />\
|
||||
|
|
@ -48,6 +50,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() {
|
||||
$.each(['03', '10', '17', '24'], function(i, id) {
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
#maps #img-library ul#tiles li.tile img {
|
||||
#maps #img-library ul.tiles li.tile img {
|
||||
width: calc(1600px / 10);
|
||||
}
|
||||
|
||||
|
|
|
|||