unstable basics
@@ -54,6 +54,7 @@
|
|||||||
<option value="m15Planeswalker">M15 Planeswalker</option>
|
<option value="m15Planeswalker">M15 Planeswalker</option>
|
||||||
<option value="storybook">Storybook</option>
|
<option value="storybook">Storybook</option>
|
||||||
<option value="ixalan">Ixalan Maps</option>
|
<option value="ixalan">Ixalan Maps</option>
|
||||||
|
<option value="unstable">Unstable Basics</option>
|
||||||
<option value="expedition">Expeditions</option>
|
<option value="expedition">Expeditions</option>
|
||||||
<option value="planechase">Planechase</option>
|
<option value="planechase">Planechase</option>
|
||||||
<option value="future">Future Shifted</option>
|
<option value="future">Future Shifted</option>
|
||||||
|
BIN
data/images/cardImages/unstable/unstableFrameB.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
data/images/cardImages/unstable/unstableFrameC.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
data/images/cardImages/unstable/unstableFrameG.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
data/images/cardImages/unstable/unstableFrameM.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
data/images/cardImages/unstable/unstableFrameR.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
data/images/cardImages/unstable/unstableFrameU.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
data/images/cardImages/unstable/unstableFrameW.png
Normal file
After Width: | Height: | Size: 26 KiB |
14
data/scripts/versions/unstable/regular.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
if (!loadedVersions.includes('unstableRegular')) {
|
||||||
|
loadedVersions.push('unstableRegular')
|
||||||
|
loadFrameImages([
|
||||||
|
['White Frame', '/data/images/cardImages/unstable/unstableFrameW.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Blue Frame', '/data/images/cardImages/unstable/unstableFrameU.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Black Frame', '/data/images/cardImages/unstable/unstableFrameB.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Red Frame', '/data/images/cardImages/unstable/unstableFrameR.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Green Frame', '/data/images/cardImages/unstable/unstableFrameG.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Multicolored Frame', '/data/images/cardImages/unstable/unstableFrameM.png', 0, 0, 1, 1, ['Full']],
|
||||||
|
['Colorless Frame', '/data/images/cardImages/unstable/unstableFrameC.png', 0, 0, 1, 1, ['Full']]
|
||||||
|
], 'frameClassUnstableRegular')
|
||||||
|
}
|
||||||
|
|
||||||
|
hideFrameImages('frameClassUnstableRegular')
|
39
data/scripts/versions/unstable/version.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
if (!loadedVersions.includes('unstable')) {
|
||||||
|
loadedVersions.push('unstable')
|
||||||
|
// loadMaskImages([])
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentVersion != 'unstable') {
|
||||||
|
currentVersion = 'unstable'
|
||||||
|
|
||||||
|
loadTextOptions([
|
||||||
|
new cardText('Card Title', '', 165/1500, 90/2100, 1170/1500, 80/2100, 'belerenb', 80/2100, 'white', ['oneLine=true','textAlign="center"']),
|
||||||
|
])
|
||||||
|
|
||||||
|
artX = 0
|
||||||
|
artY = 0
|
||||||
|
artWidth = scaleX(1)
|
||||||
|
artHeight = scaleY(1931/2100)
|
||||||
|
|
||||||
|
manaCostXPath = '0'
|
||||||
|
manaCostYPath = '0'
|
||||||
|
manaCostDiameter = '0'
|
||||||
|
manaCostShadowOffset = 'none'
|
||||||
|
manaCostDirection = 'reverse'
|
||||||
|
|
||||||
|
setSymbolX = [cardWidth / 2, 'center']
|
||||||
|
setSymbolY = [scaleY(244/2100), 'center']
|
||||||
|
setSymbolWidth = 0
|
||||||
|
setSymbolHeight = 0
|
||||||
|
|
||||||
|
watermarkX = 0
|
||||||
|
watermarkY = 0
|
||||||
|
watermarkWidth = 0
|
||||||
|
watermarkHeight = 0
|
||||||
|
|
||||||
|
bottomInfoFunction = 'bottomInfoM15'
|
||||||
|
|
||||||
|
bottomInfoUpdated()
|
||||||
|
}
|
||||||
|
|
||||||
|
loadFramePackOptions([['regular', 'Regular']])
|