planeswalker holo stamps
BIN
img/frames/planeswalker/holo/a.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
img/frames/planeswalker/holo/aThumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
img/frames/planeswalker/holo/b.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
img/frames/planeswalker/holo/bThumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
img/frames/planeswalker/holo/g.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
img/frames/planeswalker/holo/gThumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
img/frames/planeswalker/holo/l.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
img/frames/planeswalker/holo/lThumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
img/frames/planeswalker/holo/m.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
img/frames/planeswalker/holo/mThumb.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
img/frames/planeswalker/holo/r.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
img/frames/planeswalker/holo/rThumb.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
img/frames/planeswalker/holo/u.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
img/frames/planeswalker/holo/uThumb.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
img/frames/planeswalker/holo/w.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/frames/planeswalker/holo/wThumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
@@ -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'},
|
||||
|
19
js/frames/packPlaneswalkerHoloStamps.js
Normal 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();
|