//Create objects for common properties across available frames // var masks = [{src:'/img/frames/m15/regular/m15MaskPinline.png', name:'Pinline'}, {src:'/img/frames/m15/regular/m15MaskTitle.png', name:'Title'}, {src:'/img/frames/m15/regular/m15MaskType.png', name:'Type'}, {src:'/img/frames/m15/regular/m15MaskRules.png', name:'Rules'}, {src:'/img/frames/m15/regular/m15MaskFrame.png', name:'Frame'}, {src:'/img/frames/m15/regular/m15MaskBorder.png', name:'Border'}]; var bounds = {x:0.8587, y:0.8186, width:0.062, height:0.1258}; var bounds2 = {x:0.0527, y:0.0496, width:0.8947, height:0.0515}; //defines available frames availableFrames = [ {name:'White Frame', src:'/img/frames/invocation/W.png'}, {name:'Blue Frame', src:'/img/frames/invocation/U.png'}, {name:'Black Frame', src:'/img/frames/invocation/B.png'}, {name:'Red Frame', src:'/img/frames/invocation/R.png'}, {name:'Green Frame', src:'/img/frames/invocation/G.png'}, {name:'Multicolored Frame', src:'/img/frames/invocation/M.png'}, {name:'Artifact Frame', src:'/img/frames/invocation/A.png'}, {name:'Power/Toughness', src:'/img/frames/invocation/pt.png', bounds:bounds}, {name:'Set Symbol Cover', src:'/img/frames/invocation/set.png', bounds:{x:0.8494, y:0.5705, width:0.0907, height:0.0434}}, {name:'Mana Bracket (1)', src:'/img/frames/invocation/mana/1.png', bounds:bounds2}, {name:'Mana Bracket (2)', src:'/img/frames/invocation/mana/2.png', bounds:bounds2}, {name:'Mana Bracket (3)', src:'/img/frames/invocation/mana/3.png', bounds:bounds2}, {name:'Mana Bracket (4)', src:'/img/frames/invocation/mana/4.png', bounds:bounds2}, {name:'Mana Bracket (5)', src:'/img/frames/invocation/mana/5.png', bounds:bounds2}, {name:'Mana Bracket (6)', src:'/img/frames/invocation/mana/6.png', bounds:bounds2}, {name:'Mana Bracket (7)', src:'/img/frames/invocation/mana/7.png', bounds:bounds2}, {name:'Mana Bracket (8)', src:'/img/frames/invocation/mana/8.png', bounds:bounds2}, {name:'Mana Bracket (9)', src:'/img/frames/invocation/mana/9.png', bounds:bounds2}, {name:'Mana Bracket (10)', src:'/img/frames/invocation/mana/10.png', bounds:bounds2} ]; //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 = 'invocation'; loadScript('/js/frames/manaSymbolsOutline.js'); //art bounds card.artBounds = {x:0, y:0.1067, width:1, height:0.4386}; autoFitArt(); //set symbol bounds card.setSymbolBounds = {x:0.8954, y:0.5910, width:0.06, height:0.0353, vertical:'center', horizontal: 'center'}; 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.0613, width:0.93, height:78/2100, oneLine:true, size:78/1638, align:'right', shadowX:-0.0007, shadowY:0.0005, shadow:'#ccb28b', manaCost:true, manaSpacing:-0.002, manaPrefix:'outline', manaSymbolColor:'#24150E'}, title: {name:'Title', text:'', x:0.0834, y:0.05, width:0.8334, height:0.0515, oneLine:true, font:'invocation', size:0.0515, shadowX:-0.0007, shadowY:0.0005, shadow:'#ccb28b', color:'#24150E'}, type: {name:'Type', text:'', x:0.0767, y:0.5672, width:0.7334, height:0.0496, oneLine:true, font:'invocation', size:0.0496, align:'center', shadowX:-0.0007, shadowY:0.0005, shadow:'#ccb28b', color:'#24150E'}, rules: {name:'Rules Text', text:'', x:0.1, y:0.6334, width:0.8, height:0.2429, size:0.0334, font:'invocation-text', align:'center', manaPrefix:'outline', shadowX:-0.0007, shadowY:0.0005, shadow:'#ccb28b', color:'#24150E', manaPrefix:'outline', manaSymbolColor:'#24150E'}, pt: {name:'Power/Toughness', text:'', x:0.8707, y:0.8315, width:0.0387, height:0.0929, size:0.0372, font:'belerenbsc', align:'center', shadowX:-0.0007, shadowY:0.0005, shadow:'#ccb28b', color:'#24150E'} }); //bottom info await loadBottomInfo({ info: {text:'{elemidinfo-number} {elemidinfo-set}*{elemidinfo-language} {elemidinfo-rarity}', x:0.0787, y:0.912, width:0.29, height:0.0162, oneLine:true, font:'gothammedium', size:0.0162, color:'#24150E'}, artist: {text:`\uFFEE{fontsize-${scaleHeight(0.002)}}{fontinvocation-text}{elemidinfo-artist}`, x:0.0787, y:0.93, width:0.29, height:0.0181, oneLine:true, font:'belerenbsc', size:0.0181, color:'#24150E'}, nfs: {text:'NOT FOR SALE', x:0.2534, y:0.9667, width:0.8707, height:0.0134, oneLine:true, font:'invocation-text', size:0.0134, color:'#24150E'}, wizards: {name:'wizards', text:'\u2122 & \u00a9 ' + date.getFullYear() + ' Wizards of the Coast', x:0.0647, y:0.9453, width:0.86, height:0.0134, oneLine:true, font:'invocation-text', size:0.0134, color:'#24150E', align:'right'}, cc: {text:'CardConjurer.com', x:0.0647, y:0.9677, width:0.7467, height:0.0134, oneLine:true, font:'invocation-text', size:0.0134, color:'#24150E', align:'right'} }); } //loads available frames loadFramePack();