lands
@@ -60,7 +60,7 @@
|
||||
<div class='input-grid margin-bottom'>
|
||||
<select id='selectFrameGroup' onchange='loadScript("/js/frames/group" + this.value + ".js")' class='input'>
|
||||
<option disabled>Standard Frames</option>
|
||||
<option value='Standard'>Regular</option>
|
||||
<option value='Standard-1'>Regular</option>
|
||||
<option value='Token-1'>Tokens</option>
|
||||
<option value='Saga'>Sagas</option>
|
||||
<option value='Planeswalker'>Planeswalkers</option>
|
||||
@@ -383,5 +383,5 @@
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
<script defer src='/js/creator-2.js'></script>
|
||||
<script defer src='/js/creator-3.js'></script>
|
||||
<?php include('../globalHTML/footer.php'); ?>
|
BIN
img/frames/m15/regular/lb.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
img/frames/m15/regular/lbThumb.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/frames/m15/regular/lg.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
img/frames/m15/regular/lgThumb.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
img/frames/m15/regular/ll.png
Normal file
After Width: | Height: | Size: 987 KiB |
BIN
img/frames/m15/regular/llThumb.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
img/frames/m15/regular/lm.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
img/frames/m15/regular/lmThumb.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
img/frames/m15/regular/lr.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
img/frames/m15/regular/lrThumb.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/frames/m15/regular/lu.png
Normal file
After Width: | Height: | Size: 805 KiB |
BIN
img/frames/m15/regular/luThumb.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
img/frames/m15/regular/lw.png
Normal file
After Width: | Height: | Size: 991 KiB |
BIN
img/frames/m15/regular/lwThumb.png
Normal file
After Width: | Height: | Size: 14 KiB |
@@ -1364,5 +1364,5 @@ function fetchScryfallData(cardName, callback = console.log) {
|
||||
}
|
||||
//Initialization
|
||||
document.querySelector('#info-number').value = date.getFullYear();
|
||||
loadScript('/js/frames/groupStandard.js');
|
||||
loadScript('/js/frames/groupStandard-1.js');
|
||||
loadAvailableCards();
|
@@ -1,5 +1,6 @@
|
||||
loadFramePacks([
|
||||
{name:'Regular Frames', value:'M15Regular'},
|
||||
{name:'Lands', value:'M15Lands'},
|
||||
{name:'Addons', value:'disabled'},
|
||||
{name:'Legend Crowns', value:'M15LegendCrowns'},
|
||||
{name:'Floating Legend Crowns', value:'M15LegendCrownsFloating'},
|
18
js/frames/packM15Lands.js
Normal file
@@ -0,0 +1,18 @@
|
||||
//Create objects for common properties across available frames
|
||||
var masks = [{src:'/img/frames/m15/regular/m15MaskPinline.png', name:'Pinline'}, {src:'/img/frames/m15/regular/m15MaskTitle.png', name:'Title'}, {src:'/img/frames/m15/regular/m15MaskType.png', name:'Type'}, {src:'/img/frames/m15/regular/m15MaskRules.png', name:'Rules'}, {src:'/img/frames/m15/regular/m15MaskFrame.png', name:'Frame'}, {src:'/img/frames/m15/regular/m15MaskBorder.png', name:'Border'}];
|
||||
//defines available frames
|
||||
availableFrames = [
|
||||
{name:'White Frame', src:'/img/frames/m15/regular/lw.png', masks:masks},
|
||||
{name:'Blue Frame', src:'/img/frames/m15/regular/lu.png', masks:masks},
|
||||
{name:'Black Frame', src:'/img/frames/m15/regular/lb.png', masks:masks},
|
||||
{name:'Red Frame', src:'/img/frames/m15/regular/lr.png', masks:masks},
|
||||
{name:'Green Frame', src:'/img/frames/m15/regular/lg.png', masks:masks},
|
||||
{name:'Multicolored Frame', src:'/img/frames/m15/regular/lm.png', masks:masks},
|
||||
{name:'Colorless Frame', src:'/img/frames/m15/regular/ll.png', masks:masks}
|
||||
];
|
||||
//disables/enables the "Load Frame Version" button
|
||||
document.querySelector('#loadFrameVersion').disabled = true;
|
||||
//defines process for loading this version, if applicable
|
||||
document.querySelector('#loadFrameVersion').onclick = null;
|
||||
//loads available frames
|
||||
loadFramePack();
|