Add Double Feature Planeswalker frame
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 13 KiB |
BIN
img/frames/planeswalker/dbl/b.png
Normal file
After Width: | Height: | Size: 658 KiB |
BIN
img/frames/planeswalker/dbl/bThumb.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
img/frames/planeswalker/dbl/g.png
Normal file
After Width: | Height: | Size: 676 KiB |
BIN
img/frames/planeswalker/dbl/gThumb.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
img/frames/planeswalker/dbl/m.png
Normal file
After Width: | Height: | Size: 668 KiB |
BIN
img/frames/planeswalker/dbl/mThumb.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
img/frames/planeswalker/dbl/r.png
Normal file
After Width: | Height: | Size: 660 KiB |
BIN
img/frames/planeswalker/dbl/rThumb.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
img/frames/planeswalker/dbl/stamp.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
img/frames/planeswalker/dbl/stampThumb.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
img/frames/planeswalker/dbl/u.png
Normal file
After Width: | Height: | Size: 695 KiB |
BIN
img/frames/planeswalker/dbl/uThumb.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
img/frames/planeswalker/dbl/w.png
Normal file
After Width: | Height: | Size: 564 KiB |
BIN
img/frames/planeswalker/dbl/wThumb.png
Normal file
After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 10 KiB |
@@ -95,6 +95,7 @@ const frameNames = new Map ([
|
|||||||
['Kaladesh Inventions', 'Invention'],
|
['Kaladesh Inventions', 'Invention'],
|
||||||
['BFZ Expeditions (2015)', 'ExpeditionBFZ-1'],
|
['BFZ Expeditions (2015)', 'ExpeditionBFZ-1'],
|
||||||
['SDCC15 (Blackout)', 'SDCC15'],
|
['SDCC15 (Blackout)', 'SDCC15'],
|
||||||
|
['Innistrad: Double Feature Planeswalkers', 'PlaneswalkerDBL'],
|
||||||
['Future Shifted', 'FutureRegular'],
|
['Future Shifted', 'FutureRegular'],
|
||||||
//planeswalker
|
//planeswalker
|
||||||
['Planeswalker', 'PlaneswalkerRegular'],
|
['Planeswalker', 'PlaneswalkerRegular'],
|
||||||
|
@@ -5,6 +5,7 @@ loadFramePacks([
|
|||||||
{name:'Tall', value:'PlaneswalkerTall'},
|
{name:'Tall', value:'PlaneswalkerTall'},
|
||||||
{name:'Tall Borderless', value:'PlaneswalkerTallBorderless'},
|
{name:'Tall Borderless', value:'PlaneswalkerTallBorderless'},
|
||||||
{name:'Compleated', value:'PlaneswalkerCompleated'},
|
{name:'Compleated', value:'PlaneswalkerCompleated'},
|
||||||
|
{name:'Innistrad: Double Feature', value:'PlaneswalkerDBL'},
|
||||||
{name:'Addons', value:'disabled'},
|
{name:'Addons', value:'disabled'},
|
||||||
{name:'Holo Stamps', value:'PlaneswalkerHoloStamps'},
|
{name:'Holo Stamps', value:'PlaneswalkerHoloStamps'},
|
||||||
{name:'Special Frames', value:'disabled'},
|
{name:'Special Frames', value:'disabled'},
|
||||||
|
47
js/frames/packPlaneswalkerDBL.js
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
//Create objects for common properties across available frames
|
||||||
|
var masks = [{src:'/img/frames/planeswalker/regular/planeswalkerMaskPinline.png', name:'Pinline'}, {src:'/img/frames/planeswalker/regular/planeswalkerMaskTitle.png', name:'Title'}, {src:'/img/frames/planeswalker/regular/planeswalkerMaskType.png', name:'Type'}, {src:'/img/frames/planeswalker/regular/planeswalkerMaskFrame.png', name:'Frame'}, {src:'/img/frames/planeswalker/regular/planeswalkerMaskBorder.png', name:'Border'}, {src:'/img/frames/planeswalker/maskLoyalty.png', name:'Loyalty'}];
|
||||||
|
var stampBounds = {x:0.4394, y:0.9015, width:0.1214, height:0.051};
|
||||||
|
//defines available frames
|
||||||
|
availableFrames = [
|
||||||
|
{name:'White Frame', src:'/img/frames/planeswalker/dbl/w.png', masks:masks},
|
||||||
|
{name:'Blue Frame', src:'/img/frames/planeswalker/dbl/u.png', masks:masks},
|
||||||
|
{name:'Black Frame', src:'/img/frames/planeswalker/dbl/b.png', masks:masks},
|
||||||
|
{name:'Red Frame', src:'/img/frames/planeswalker/dbl/r.png', masks:masks},
|
||||||
|
{name:'Green Frame', src:'/img/frames/planeswalker/dbl/g.png', masks:masks},
|
||||||
|
{name:'Multicolored Frame', src:'/img/frames/planeswalker/dbl/m.png', masks:masks},
|
||||||
|
{name:'Holo Stamp', src:'/img/frames/planeswalker/dbl/stamp.png', bounds:stampBounds},
|
||||||
|
];
|
||||||
|
//disables/enables the "Load Frame Version" button
|
||||||
|
document.querySelector('#loadFrameVersion').disabled = false;
|
||||||
|
//defines process for loading this version, if applicable
|
||||||
|
document.querySelector('#loadFrameVersion').onclick = async function() {
|
||||||
|
//resets things so that every frame doesn't have to
|
||||||
|
await resetCardIrregularities();
|
||||||
|
//sets card version
|
||||||
|
card.version = 'planeswalkerDBL';
|
||||||
|
card.onload = '/js/frames/versionPlaneswalker.js';
|
||||||
|
loadScript('/js/frames/versionPlaneswalker.js');
|
||||||
|
//art bounds
|
||||||
|
card.artBounds = {x:0.068, y:0.101, width:0.864, height:0.8143};
|
||||||
|
autoFitArt();
|
||||||
|
//set symbol bounds
|
||||||
|
card.setSymbolBounds = {x:0.9227, y:0.5891, width:0.12, height:0.0381, vertical:'center', horizontal: 'right'};
|
||||||
|
resetSetSymbol();
|
||||||
|
//watermark bounds
|
||||||
|
card.watermarkBounds = {x:0.5, y:0.7762, width:0.75, height:0.2305};
|
||||||
|
resetWatermark();
|
||||||
|
//text
|
||||||
|
loadTextOptions({
|
||||||
|
mana: {name:'Mana Cost', text:'', y:0.0481, width:0.9292, height:71/2100, oneLine:true, size:71/1638, align:'right', shadowX:-0.001, shadowY:0.0029, manaCost:true, manaSpacing:0},
|
||||||
|
title: {name:'Title', text:'', x:0.0867, y:0.0372, width:0.8267, height:0.0548, oneLine:true, font:'belerenb', size:0.0381, color:'white'},
|
||||||
|
type: {name:'Type', text:'', x:0.0867, y:0.5625, width:0.8267, height:0.0548, oneLine:true, font:'belerenb', size:0.0324, color:'white'},
|
||||||
|
ability0: {name:'Ability 1', text:'', x:0.18, y:0.6239, width:0.7467, height:0.0972, size:0.0353},
|
||||||
|
ability1: {name:'Ability 2', text:'', x:0.18, y:0, width:0.7467, height:0.0972, size:0.0353},
|
||||||
|
ability2: {name:'Ability 3', text:'', x:0.18, y:0, width:0.7467, height:0.0972, size:0.0353},
|
||||||
|
ability3: {name:'Ability 4', text:'', x:0.18, y:0, width:0.7467, height:0, size:0.0353},
|
||||||
|
loyalty: {name:'Loyalty', text:'', x:0.806, y:0.902, width:0.14, height:0.0372, size:0.0372, font:'belerenbsc', oneLine:true, align:'center', color:'white'}
|
||||||
|
});
|
||||||
|
notify('You can now make the art grayscale in the art tab!');
|
||||||
|
}
|
||||||
|
//loads available frames
|
||||||
|
loadFramePack();
|
@@ -86,7 +86,7 @@ function planeswalkerEdited() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// manage textbox size
|
// manage textbox size
|
||||||
if (card.version == 'planeswalkerTransformFront') {
|
if (card.version.toLowerCase().includes('TransformFront')) {
|
||||||
card.planeswalker.x = 0.1167;
|
card.planeswalker.x = 0.1167;
|
||||||
card.planeswalker.width = 0.8334;
|
card.planeswalker.width = 0.8334;
|
||||||
} else {
|
} else {
|
||||||
|