mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-27 05:14:53 -05:00
39 lines
2.0 KiB
JavaScript
39 lines
2.0 KiB
JavaScript
//============================================//
|
|
// Card Conjurer, by Kyle Burton //
|
|
//============================================//
|
|
if (version.currentVersion != "invention") {
|
|
//Name, text, x, y, width, height, font, size, color, other
|
|
version.textList = [
|
|
["Title", "", scale(64), scale(82), scale(630), 0, "belerenb", scale(37), "black", "oneLine=true"],
|
|
["Type", "", scale(64), scale(616), scale(630), 0, "belerenb", scale(33), "black", "oneLine=true"],
|
|
["Rules Text", "", scale(64), scale(662), scale(616), scale(292), "mplantin", scale(38), "black", "lineSpace=0.97"],
|
|
["Power Toughness", "", scale(587), scale(958), scale(110), 0, "belerenb", scale(38), "black", "oneLine=true,textAlign='center'"]/*,
|
|
["Flip PT", "", scale(588), scale(902), scale(100), 0, "belerenb", 28, "#666", "oneLine=true,textAlign='right'"]*/
|
|
]
|
|
version.frameIndexToInsert = 0;
|
|
}
|
|
version.currentVersion = "invention"
|
|
version.artX = scale(29)
|
|
version.artY = scale(28)
|
|
version.artWidth = scale(685)
|
|
version.artHeight = scale(929)
|
|
version.setSymbolRight = scale(684)
|
|
version.setSymbolVertical = scale(614)
|
|
version.setSymbolWidth = scale(90)
|
|
version.setSymbolHeight = scale(41)
|
|
version.bottomInfoFunction = "m15BottomInfo"
|
|
version.manaCostX = scale(653)
|
|
version.manaCostY = scale(59)
|
|
version.manaCostDiameter = scale(34)
|
|
version.manaCostDistance = scale(-38)
|
|
version.manaCostDirection = "horizontal"
|
|
version.manaCostVersion = "m15"
|
|
version.watermarkWidth = scale(520)
|
|
version.watermarkHeight = scale(250)
|
|
version.watermarkY = scale(800)
|
|
version.masksToAdd = ["Title Invention", "Type Invention", "Rules Text Invention", "Pinline Invention", "Frame Invention", "Border Invention"];
|
|
filterFramePicker("frameClassInvention");
|
|
|
|
finishChangingVersion("data/images/invention/inventionCSV.csv")
|
|
|