Add etched Vehicle frame

This commit is contained in:
Josh birnholz
2023-07-27 20:12:11 -04:00
parent 5f1a69f155
commit b828388e2b
6 changed files with 13 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 998 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@@ -2037,6 +2037,8 @@ function makeEtchedFrameByLetter(letter, mask = false, maskToRightHalf = false)
letter = 'M'; letter = 'M';
} else if (letter.includes('L') && letter.length > 1) { } else if (letter.includes('L') && letter.length > 1) {
letter = letter[0]; letter = letter[0];
} else if (letter == 'V' && mask == 'Crown') {
letter = 'A';
} }
var frameName = frameNames[letter]; var frameName = frameNames[letter];

View File

@@ -14,6 +14,7 @@ availableFrames = [
{name:'Artifact Frame', src:'/img/frames/etched/regular/a.png', masks:masks}, {name:'Artifact Frame', src:'/img/frames/etched/regular/a.png', masks:masks},
{name:'Land Frame', src:'/img/frames/etched/regular/l.png', masks: masks}, {name:'Land Frame', src:'/img/frames/etched/regular/l.png', masks: masks},
{name:'Colorless Frame', src:'/img/frames/etched/regular/c.png', masks:masks}, {name:'Colorless Frame', src:'/img/frames/etched/regular/c.png', masks:masks},
{name:'Vehicle Frame', src:'/img/frames/etched/regular/v.png', masks:masks},
{name:'White Power/Toughness', src:'/img/frames/etched/regular/pt/w.png', bounds:bounds}, {name:'White Power/Toughness', src:'/img/frames/etched/regular/pt/w.png', bounds:bounds},
{name:'Blue Power/Toughness', src:'/img/frames/etched/regular/pt/u.png', bounds:bounds}, {name:'Blue Power/Toughness', src:'/img/frames/etched/regular/pt/u.png', bounds:bounds},
{name:'Black Power/Toughness', src:'/img/frames/etched/regular/pt/b.png', bounds:bounds}, {name:'Black Power/Toughness', src:'/img/frames/etched/regular/pt/b.png', bounds:bounds},
@@ -22,16 +23,17 @@ availableFrames = [
{name:'Multicolored Power/Toughness', src:'/img/frames/etched/regular/pt/m.png', bounds:bounds}, {name:'Multicolored Power/Toughness', src:'/img/frames/etched/regular/pt/m.png', bounds:bounds},
{name:'Artifact Power/Toughness', src:'/img/frames/etched/regular/pt/a.png', bounds:bounds}, {name:'Artifact Power/Toughness', src:'/img/frames/etched/regular/pt/a.png', bounds:bounds},
{name:'Land Power/Toughness', src:'/img/frames/etched/regular/pt/l.png', bounds:bounds}, {name:'Land Power/Toughness', src:'/img/frames/etched/regular/pt/l.png', bounds:bounds},
{name:'Vehicle Power/Toughness', src:'/img/frames/etched/regular/pt/v.png', bounds:bounds},
{name:'Colorless Power/Toughness', src:'/img/frames/etched/regular/pt/c.png', bounds:bounds}, {name:'Colorless Power/Toughness', src:'/img/frames/etched/regular/pt/c.png', bounds:bounds},
{name:'White Legend Crown', src:'/img/frames/etched/regular/crowns/w.png', bounds:bounds3, complementary:27}, {name:'White Legend Crown', src:'/img/frames/etched/regular/crowns/w.png', bounds:bounds3, complementary:29},
{name:'Blue Legend Crown', src:'/img/frames/etched/regular/crowns/u.png', bounds:bounds3, complementary:27}, {name:'Blue Legend Crown', src:'/img/frames/etched/regular/crowns/u.png', bounds:bounds3, complementary:29},
{name:'Black Legend Crown', src:'/img/frames/etched/regular/crowns/b.png', bounds:bounds3, complementary:27}, {name:'Black Legend Crown', src:'/img/frames/etched/regular/crowns/b.png', bounds:bounds3, complementary:29},
{name:'Red Legend Crown', src:'/img/frames/etched/regular/crowns/r.png', bounds:bounds3, complementary:27}, {name:'Red Legend Crown', src:'/img/frames/etched/regular/crowns/r.png', bounds:bounds3, complementary:29},
{name:'Green Legend Crown', src:'/img/frames/etched/regular/crowns/g.png', bounds:bounds3, complementary:27}, {name:'Green Legend Crown', src:'/img/frames/etched/regular/crowns/g.png', bounds:bounds3, complementary:29},
{name:'Multicolored Legend Crown', src:'/img/frames/etched/regular/crowns/m.png', bounds:bounds3, complementary:27}, {name:'Multicolored Legend Crown', src:'/img/frames/etched/regular/crowns/m.png', bounds:bounds3, complementary:29},
{name:'Artifact Legend Crown', src:'/img/frames/etched/regular/crowns/a.png', bounds:bounds3, complementary:27}, {name:'Artifact Legend Crown', src:'/img/frames/etched/regular/crowns/a.png', bounds:bounds3, complementary:29},
{name:'Land Crown', src:'/img/frames/etched/regular/crowns/l.png', bounds:bounds3, complementary:27}, {name:'Land Crown', src:'/img/frames/etched/regular/crowns/l.png', bounds:bounds3, complementary:29},
{name:'Colorless Crown', src:'/img/frames/etched/regular/crowns/c.png', bounds:bounds3, complementary:27}, {name:'Colorless Crown', src:'/img/frames/etched/regular/crowns/c.png', bounds:bounds3, complementary:29},
{name:'Legend Crown Cover', src:'/img/frames/etched/regular/crowns/cover.svg'}, {name:'Legend Crown Cover', src:'/img/frames/etched/regular/crowns/cover.svg'},
{name:'White Holo Stamp', src:'/img/frames/etched/regular/holo/w.png', bounds:bounds2}, {name:'White Holo Stamp', src:'/img/frames/etched/regular/holo/w.png', bounds:bounds2},
{name:'Blue Holo Stamp', src:'/img/frames/etched/regular/holo/u.png', bounds:bounds2}, {name:'Blue Holo Stamp', src:'/img/frames/etched/regular/holo/u.png', bounds:bounds2},