snow basics

This commit is contained in:
Kyle
2021-02-04 13:55:27 -08:00
parent 93a918f0f0
commit cb7e1d4aee
14 changed files with 9 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ include('../globalHTML/header-1.php');
<option disabled>Special Frames</option>
<option value='Showcase-2'>Showcase Frames</option>
<option value='Promo'>Promos (Tall Art)</option>
<option value='Textless-1'>Textless/Fullart</option>
<option value='Textless-2'>Textless/Fullart</option>
<option value='Modal'>Short Modal DFC's</option>
<option disabled>Other Frames</option>
<option value='Custom'>Custom</option>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1372,6 +1372,7 @@ async function imageLocal(event, destination, otherParams) {
function loadScript(scriptPath) {
var script = document.createElement('script');
script.setAttribute('type', 'text/javascript');
script.onerror = function(){notify('An error occured when trying to load a script, please try reloading the page. Sorry for the inconvenience.');}
script.setAttribute('src', scriptPath);
if (typeof script != 'undefined') {
document.querySelectorAll('head')[0].appendChild(script);

View File

@@ -2,7 +2,7 @@ loadFramePacks([
{name:'Generic Showcase', value:'TextlessGenericShowcase'},
{name:'Inventions', value:'TextlessInvention'},
{name:'Unstable Basics', value:'Unstable'},
{name:'Zendikar Basics', value:'ZendikarBasic'},
{name:'Zendikar Basics', value:'ZendikarBasic-1'},
{name:'Seventh', value:'SeventhTextless'},
{name:'Addons', value:'disabled'},
{name:'Legend Crowns', value:'M15LegendCrowns'},

View File

@@ -15,7 +15,12 @@ availableFrames = [
{name:'Black Mana Symbol', src:'/img/frames/textless/zendikar/sb.svg', bounds:bounds},
{name:'Red Mana Symbol', src:'/img/frames/textless/zendikar/sr.svg', bounds:bounds},
{name:'Green Mana Symbol', src:'/img/frames/textless/zendikar/sg.svg', bounds:bounds},
{name:'Colorless Mana Symbol', src:'/img/frames/textless/zendikar/sc.svg', bounds:bounds}
{name:'Colorless Mana Symbol', src:'/img/frames/textless/zendikar/sc.svg', bounds:bounds},
{name:'White Frame (Snow)', src:'/img/frames/textless/snowBasics/w.png', masks:masks},
{name:'Blue Frame (Snow)', src:'/img/frames/textless/snowBasics/u.png', masks:masks},
{name:'Black Frame (Snow)', src:'/img/frames/textless/snowBasics/b.png', masks:masks},
{name:'Red Frame (Snow)', src:'/img/frames/textless/snowBasics/r.png', masks:masks},
{name:'Green Frame (Snow)', src:'/img/frames/textless/snowBasics/g.png', masks:masks}
];
//disables/enables the "Load Frame Version" button
document.querySelector('#loadFrameVersion').disabled = false;