Add watermarkless Phyrexian frames

This commit is contained in:
Josh Birnholz
2023-02-04 16:40:35 -05:00
committed by Josh birnholz
parent 03b1bd3b3c
commit 0ce062fac9
24 changed files with 10 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 971 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 952 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 941 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 891 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -3,6 +3,7 @@ var masks = [{src:'/img/frames/m15/praetors/pinline.png', name:'Pinline'}, {src:
var bounds = {x:0.746, y:0.8858, width:0.212, height:0.0772};
var bounds2 = {x:0.418, y:0.9, width:0.164, height:0.0491};
var bounds3 = {x:0, y:0, width:1, height:100/2100};
var bounds4 = {x:125/1500, y:1325/2100, width: 1250/1500, height:602/2100};
//defines available frames
availableFrames = [
{name:'White Frame', src:'/img/frames/m15/praetors/w.png', masks:masks},
@@ -36,7 +37,15 @@ availableFrames = [
{name:'Green Holo Stamp', src:'/img/frames/m15/praetors/holo/g.png', bounds:bounds2},
{name:'Multicolored Holo Stamp', src:'/img/frames/m15/praetors/holo/m.png', bounds:bounds2},
{name:'Artifact Holo Stamp', src:'/img/frames/m15/praetors/holo/a.png', bounds:bounds2},
{name:'Land Holo Stamp', src:'/img/frames/m15/praetors/holo/l.png', bounds:bounds2}
{name:'Land Holo Stamp', src:'/img/frames/m15/praetors/holo/l.png', bounds:bounds2},
{name:'White Rules (No Watermark)', src:'/img/frames/m15/praetors/wTextNoWatermark.png', bounds:bounds4},
{name:'Blue Rules (No Watermark)', src:'/img/frames/m15/praetors/uTextNoWatermark.png', bounds:bounds4},
{name:'Black Rules (No Watermark)', src:'/img/frames/m15/praetors/bTextNoWatermark.png', bounds:bounds4},
{name:'Red Rules (No Watermark)', src:'/img/frames/m15/praetors/rTextNoWatermark.png', bounds:bounds4},
{name:'Green Rules (No Watermark)', src:'/img/frames/m15/praetors/gTextNoWatermark.png', bounds:bounds4},
{name:'Multicolored Rules (No Watermark)', src:'/img/frames/m15/praetors/mTextNoWatermark.png', bounds:bounds4},
{name:'Artifact Rules (No Watermark)', src:'/img/frames/m15/praetors/aTextNoWatermark.png', bounds:bounds4},
{name:'Land Rules (No Watermark)', src:'/img/frames/m15/praetors/lTextNoWatermark.png', bounds:bounds4}
];
//disables/enables the "Load Frame Version" button
document.querySelector('#loadFrameVersion').disabled = false;