miracles
BIN
img/frames/m15/miracle/a.png
Normal file
After Width: | Height: | Size: 133 KiB |
BIN
img/frames/m15/miracle/aThumb.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
img/frames/m15/miracle/b.png
Normal file
After Width: | Height: | Size: 241 KiB |
BIN
img/frames/m15/miracle/bThumb.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
img/frames/m15/miracle/g.png
Normal file
After Width: | Height: | Size: 260 KiB |
BIN
img/frames/m15/miracle/gThumb.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
img/frames/m15/miracle/l.png
Normal file
After Width: | Height: | Size: 191 KiB |
BIN
img/frames/m15/miracle/lThumb.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
img/frames/m15/miracle/m.png
Normal file
After Width: | Height: | Size: 221 KiB |
BIN
img/frames/m15/miracle/mThumb.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
img/frames/m15/miracle/r.png
Normal file
After Width: | Height: | Size: 241 KiB |
BIN
img/frames/m15/miracle/rThumb.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
img/frames/m15/miracle/u.png
Normal file
After Width: | Height: | Size: 210 KiB |
BIN
img/frames/m15/miracle/uThumb.png
Normal file
After Width: | Height: | Size: 8.5 KiB |
BIN
img/frames/m15/miracle/w.png
Normal file
After Width: | Height: | Size: 203 KiB |
BIN
img/frames/m15/miracle/wThumb.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
@@ -4,6 +4,7 @@ loadFramePacks([
|
||||
{name:'Legend Crowns', value:'M15LegendCrowns'},
|
||||
{name:'Floating Legend Crowns', value:'M15LegendCrownsFloating'},
|
||||
{name:'Inner Crowns', value:'M15InnerCrowns'},
|
||||
{name:'Miracle', value:'M15Miracle'},
|
||||
{name:'Holo Stamps', value:'M15HoloStamps'},
|
||||
{name:'Dark Power/Toughness', value:'M15DarkPT'},
|
||||
{name:'Colored Borders', value:'M15Borders'},
|
||||
|
20
js/frames/packM15Miracle.js
Normal file
@@ -0,0 +1,20 @@
|
||||
//Create objects for common properties across available frames
|
||||
// var masks = [{src:'/img/frames/m15/crowns/m15MaskLegendCrown.png', name:'Crown Without Pinlines'}, {src:'/img/frames/m15/crowns/m15MaskLegendCrownPinline.png', name:'Crown With Pinlines'}];
|
||||
var bounds = {x:0.04, y:0.0286, width:0.92, height:0.5324};
|
||||
//defines available frames
|
||||
availableFrames = [
|
||||
{name:'White Miracle Frame', src:'/img/frames/m15/miracle/w.png', bounds:bounds},
|
||||
{name:'Blue Miracle Frame', src:'/img/frames/m15/miracle/u.png', bounds:bounds},
|
||||
{name:'Black Miracle Frame', src:'/img/frames/m15/miracle/b.png', bounds:bounds},
|
||||
{name:'Red Miracle Frame', src:'/img/frames/m15/miracle/r.png', bounds:bounds},
|
||||
{name:'Green Miracle Frame', src:'/img/frames/m15/miracle/g.png', bounds:bounds},
|
||||
{name:'Multicolored Miracle Frame', src:'/img/frames/m15/miracle/m.png', bounds:bounds},
|
||||
{name:'Artifact Miracle Frame', src:'/img/frames/m15/miracle/a.png', bounds:bounds},
|
||||
{name:'Land Miracle Frame', src:'/img/frames/m15/miracle/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();
|