Files
cardconjurer/js/frames/packIxalan.js
2020-12-16 15:30:48 -08:00

49 lines
2.6 KiB
JavaScript

//Create objects for common properties across available frames
var bounds = {x:0.06, y:0.05, width:0.0667, height:0.0481};
//defines available frames
availableFrames = [
{name:'White Frame', src:'/img/frames/ixalan/ixalanFrameW.png'},
{name:'Blue Frame', src:'/img/frames/ixalan/ixalanFrameU.png'},
{name:'Black Frame', src:'/img/frames/ixalan/ixalanFrameB.png'},
{name:'Red Frame', src:'/img/frames/ixalan/ixalanFrameR.png'},
{name:'Green Frame', src:'/img/frames/ixalan/ixalanFrameG.png'},
{name:'Multicolored Frame', src:'/img/frames/ixalan/ixalanFrameM.png'},
{name:'Colorless Frame', src:'/img/frames/ixalan/ixalanFrameL.png'},
{name:'Creature Icon', src:'/img/frames/ixalan/ixalanIconCreature.png', bounds:bounds},
{name:'Instant Icon', src:'/img/frames/ixalan/ixalanIconInstant.png', bounds:bounds},
{name:'Sorcery Icon', src:'/img/frames/ixalan/ixalanIconSorcery.png', bounds:bounds},
{name:'Enchantment Icon', src:'/img/frames/ixalan/ixalanIconEnchantment.png', bounds:bounds},
{name:'Artifact Icon', src:'/img/frames/ixalan/ixalanIconArtifact.png', bounds:bounds},
{name:'Multitype Icon', src:'/img/frames/ixalan/ixalanIconMulti.png', bounds:bounds}
];
//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 = 'ixalan';
//art bounds
card.artBounds = {x:0.04, y:0.1091, width:0.92, height:0.4543};
autoFitArt();
//set symbol bounds
card.setSymbolBounds = {x:0.5, y:0.1162, width:0.12, height:0.0410, 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.0553, 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.14, y:0.0458, width:0.72, height:0.0543, oneLine:true, font:'belerenbsc', size:0.0386, align:'center'},
type: {name:'Type', text:'', x:0.23, y:0.5662, width:0.54, height:0.0543, oneLine:true, font:'belerenb', size:0.0324, align:'center'},
rules: {name:'Rules Text', text:'', x:0.1167, y:0.6381, width:0.7667, height:0.27, size:0.0362},
});
}
//loads available frames
loadFramePack();
//Only for the main version as the webpage loads:
if (!card.text) {
document.querySelector('#loadFrameVersion').click();
}