planeswalker holo stamps

This commit is contained in:
Kyle
2022-01-26 10:38:02 -08:00
parent ddee816850
commit 6b64e0d9f5
18 changed files with 21 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -4,6 +4,8 @@ loadFramePacks([
{name:'Extended Art', value:'PlaneswalkerBoxTopper'},
{name:'Tall', value:'PlaneswalkerTall'},
{name:'Tall Borderless', value:'PlaneswalkerTallBorderless'},
{name:'Addons', value:'disabled'},
{name:'Holo Stamps', value:'PlaneswalkerHoloStamps'},
{name:'Special Frames', value:'disabled'},
{name:'Nickname', value:'PlaneswalkerNickname'},
{name:'Blackout (SDCC15)', value:'PlaneswalkerSDCC15'},

View File

@@ -0,0 +1,19 @@
//Create objects for common properties across available frames
var bounds = {x:0.4394, y:0.9015, width:0.1214, height:0.051};
//defines available frames
availableFrames = [
{name:'White Holo Stamp', src:'/img/frames/planeswalker/holo/w.png', bounds:bounds},
{name:'Blue Holo Stamp', src:'/img/frames/planeswalker/holo/u.png', bounds:bounds},
{name:'Black Holo Stamp', src:'/img/frames/planeswalker/holo/b.png', bounds:bounds},
{name:'Red Holo Stamp', src:'/img/frames/planeswalker/holo/r.png', bounds:bounds},
{name:'Green Holo Stamp', src:'/img/frames/planeswalker/holo/g.png', bounds:bounds},
{name:'Multicolored Holo Stamp', src:'/img/frames/planeswalker/holo/m.png', bounds:bounds},
{name:'Artifact Holo Stamp', src:'/img/frames/planeswalker/holo/a.png', bounds:bounds},
{name:'Land Holo Stamp', src:'/img/frames/planeswalker/holo/l.png', bounds:bounds}
];
//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();