Japanese Mystical Archive mask update

This commit is contained in:
Kyle
2021-08-25 13:49:20 -07:00
parent 641d8c0469
commit aa0cd56e50
3 changed files with 25 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="1500" height="2100" viewBox="0 0 1500 2100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<rect id="Card" x="0" y="0" width="1500" height="2100" style="fill:none;"/>
<g id="Card1" serif:id="Card">
<rect x="0" y="0" width="1500" height="2100" style="fill:url(#_Linear1);"/>
<g transform="matrix(0.299333,0,0,0.554286,2.84217e-14,0)">
<rect x="0" y="0" width="1500" height="2100" style="fill:url(#_Linear2);"/>
</g>
</g>
<defs>
<linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(300,0,0,300,600,0)"><stop offset="0" style="stop-color:black;stop-opacity:0"/><stop offset="1" style="stop-color:black;stop-opacity:1"/></linearGradient>
<linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(300,0,0,300,600,0)"><stop offset="0" style="stop-color:black;stop-opacity:0"/><stop offset="1" style="stop-color:black;stop-opacity:1"/></linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 B

View File

@@ -1,5 +1,6 @@
//Create objects for common properties across available frames //Create objects for common properties across available frames
var masks = [{src:'/img/frames/mysticalArchive/jp/pinline.svg', name:'Pinline'}]; var masks = [{src:'/img/frames/mysticalArchive/jp/pinline.svg', name:'Pinline'}, {src:'/img/frames/mysticalArchive/jp/rightHalf.svg', name:'Right Half'}];
var masks2 = [{src:'/img/frames/mysticalArchive/jp/rightHalf.svg', name:'Right Half'}];
var stretch = [ var stretch = [
{name:'adjustable', targets: [0, 1, 6, 7, 8, 10, 11, 16, 17, 18, 20, 21, 22, 27, 28], change:[0, 0]}, {name:'adjustable', targets: [0, 1, 6, 7, 8, 10, 11, 16, 17, 18, 20, 21, 22, 27, 28], change:[0, 0]},
{name:'typePinline', targets: [0, 1, 2, 3, 4, 5, 6, 12, 14, 18, 19, 20, 21, 22, 23], change:[0, 0]}, {name:'typePinline', targets: [0, 1, 2, 3, 4, 5, 6, 12, 14, 18, 19, 20, 21, 22, 23], change:[0, 0]},
@@ -31,14 +32,14 @@ availableFrames = [
{name:'Artifact Power/Toughness', src:'/img/frames/mysticalArchive/jp/pt/a.svg', bounds:bounds2, complementary:19}, {name:'Artifact Power/Toughness', src:'/img/frames/mysticalArchive/jp/pt/a.svg', bounds:bounds2, complementary:19},
{name:'Land Power/Toughness', src:'/img/frames/mysticalArchive/jp/pt/l.svg', bounds:bounds2, complementary:19}, {name:'Land Power/Toughness', src:'/img/frames/mysticalArchive/jp/pt/l.svg', bounds:bounds2, complementary:19},
{name:'Power/Toughness Cutout', src:'/img/frames/mysticalArchive/jp/pt/cutout.svg', bounds:bounds2, erase:true}, {name:'Power/Toughness Cutout', src:'/img/frames/mysticalArchive/jp/pt/cutout.svg', bounds:bounds2, erase:true},
{name:'White Crown', src:'/img/frames/mysticalArchive/jp/crowns/w.svg'}, {name:'White Crown', src:'/img/frames/mysticalArchive/jp/crowns/w.svg', masks:masks2},
{name:'Blue Crown', src:'/img/frames/mysticalArchive/jp/crowns/u.svg'}, {name:'Blue Crown', src:'/img/frames/mysticalArchive/jp/crowns/u.svg', masks:masks2},
{name:'Black Crown', src:'/img/frames/mysticalArchive/jp/crowns/b.svg'}, {name:'Black Crown', src:'/img/frames/mysticalArchive/jp/crowns/b.svg', masks:masks2},
{name:'Red Crown', src:'/img/frames/mysticalArchive/jp/crowns/r.svg'}, {name:'Red Crown', src:'/img/frames/mysticalArchive/jp/crowns/r.svg', masks:masks2},
{name:'Green Crown', src:'/img/frames/mysticalArchive/jp/crowns/g.svg'}, {name:'Green Crown', src:'/img/frames/mysticalArchive/jp/crowns/g.svg', masks:masks2},
{name:'Multicolored Crown', src:'/img/frames/mysticalArchive/jp/crowns/m.svg'}, {name:'Multicolored Crown', src:'/img/frames/mysticalArchive/jp/crowns/m.svg', masks:masks2},
{name:'Artifact Crown', src:'/img/frames/mysticalArchive/jp/crowns/a.svg'}, {name:'Artifact Crown', src:'/img/frames/mysticalArchive/jp/crowns/a.svg', masks:masks2},
{name:'Land Crown', src:'/img/frames/mysticalArchive/jp/crowns/l.svg'} {name:'Land Crown', src:'/img/frames/mysticalArchive/jp/crowns/l.svg', masks:masks2}
]; ];
//disables/enables the "Load Frame Version" button //disables/enables the "Load Frame Version" button
document.querySelector('#loadFrameVersion').disabled = false; document.querySelector('#loadFrameVersion').disabled = false;