mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-27 05:14:53 -05:00
50 lines
1.8 KiB
JavaScript
50 lines
1.8 KiB
JavaScript
var versionInventionImageList = [
|
|
['Invention Frame', 'data/images/invention/inventionFrame.png', 0, 0, 1, 1, ['Full', 'Pinline Super (m15)', 'Title (m15)', 'Type (m15)', 'Rules (m15)', 'Frame (m15)', 'Border (m15)']],
|
|
['Invention Power/Toughness', 'data/images/invention/inventionPT.png', 1136/1500, 1858/2100, 282/1500, 154/2100, ['Full']]
|
|
]
|
|
|
|
var versionInventionMaskList = []
|
|
|
|
if (!loadedVersions.includes('invention')) {
|
|
loadedVersions.push("invention")
|
|
// loadMaskImages(versionM15InventionMaskList)
|
|
loadFrameImages(versionInventionImageList, 'frameClassM15')
|
|
}
|
|
|
|
if (currentVersion != 'invention') {
|
|
currentVersion = 'invention'
|
|
|
|
hideFrameImages('frameClassM15')
|
|
|
|
loadTextOptions([
|
|
new cardText('Card Title', '', 126/1500, 188/2100, 1248/1500, 80/2100, 'belerenb', 80/2100, 'black', ['oneLine=true']),
|
|
new cardText('Card Type', '', 126/1500, 1264/2100, 1248/1500, 68/2100, 'belerenb', 68/2100, 'black', ['oneLine=true']),
|
|
new cardText('Rules Text', '', 135/1500, 1375/2100, 1230/1500, 625/2100, 'mplantin', 74/2100, 'black'),
|
|
new cardText('Power/Toughness', '', 1191/1500, 1954/2100, 205/1500, 78/2100, 'belerenbsc', 78/2100, 'black', ['oneLine=true,textAlign="center"'])
|
|
])
|
|
|
|
artX = scaleX(60/1500)
|
|
artY = scaleY(60/2100)
|
|
artWidth = scaleX(1381/1500)
|
|
artHeight = scaleY(1876/2100)
|
|
|
|
manaCostXPath = '1316 - 78 * manaSymbolIndex'
|
|
manaCostYPath = '121'
|
|
manaCostDiameter = '70'
|
|
manaCostShadowOffset = '[-2, 6]'
|
|
manaCostDirection = 'reverse'
|
|
|
|
setSymbolX = [scaleX(1382/1500), 'right']
|
|
setSymbolY = [scaleY(1241/2100), 'center']
|
|
setSymbolWidth = scaleX(180/1500)
|
|
setSymbolHeight = scaleY(86/2100)
|
|
|
|
watermarkX = scaleX(0.5)
|
|
watermarkY = scaleY(1630/2100)
|
|
watermarkWidth = scaleX(1140/1500)
|
|
watermarkHeight = scaleY(484/2100)
|
|
|
|
bottomInfoFunction = 'bottomInfoM15'
|
|
|
|
bottomInfoUpdated()
|
|
} |