mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 13:37:00 -04:00
Added new kind of multicolor gradient to old styles. (a la artfreakwiu)
Added option to old style to use all common rarity symbols (like before Exodus). Cleaned up fix for horizontal hybrid textboxes and typelines. Automatic paintbrushes for magic-textless, magic-new-token, futureshifts, and all FPM styles. Removed paintbrush font and all associated scripts. Newly failed attempt at making different colored colorless symbols in magic-mana-future work. Non-mana costs work for Suspend and Forecast. Guild mana for magic-mana-future. Fixed problem relating to name alignment in magic-new-token. Updated image mask and artifact masks for magic-futureshift. Started alterations to font colors in magic-futureshift. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@611 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
@@ -13,7 +13,6 @@ card width: 375
|
||||
card height: 523
|
||||
card dpi: 150
|
||||
|
||||
#error list:
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
@@ -48,6 +47,8 @@ init script:
|
||||
|
||||
# AE replacement shouldn't happen in the title, or else MSE compresses the symbol
|
||||
name_filter := { input }
|
||||
|
||||
paintbrush_color := { if font_white() then "white" else "black" }
|
||||
|
||||
############################################################## Set info fields
|
||||
|
||||
@@ -127,9 +128,13 @@ card style:
|
||||
|
||||
###################C######### Name line
|
||||
name:
|
||||
left: 50
|
||||
left:
|
||||
{ if card_style.name.content_width > 269 then 50
|
||||
else card_style.name.content_width * -0.5 + 184.5 }
|
||||
top: 25
|
||||
width: 275
|
||||
width:
|
||||
{ if card_style.name.content_width > 269 then 275
|
||||
else card_style.name.content_width + 6 }
|
||||
height: 28
|
||||
alignment: bottom center justify-overflow
|
||||
padding bottom: -2
|
||||
@@ -262,9 +267,9 @@ card style:
|
||||
############################# Copyright stuff
|
||||
|
||||
illustrator:
|
||||
left: 27
|
||||
top : 481
|
||||
width: 246
|
||||
left: 58
|
||||
top : 479
|
||||
width: 215
|
||||
height: 16
|
||||
z index: 2
|
||||
font:
|
||||
@@ -272,9 +277,6 @@ card style:
|
||||
size: 11
|
||||
weight: bold
|
||||
color: { font_color(card.card_color) }
|
||||
symbol font:
|
||||
name: magic-paintbrush
|
||||
size: 10.5
|
||||
|
||||
copyright line:
|
||||
left: 30
|
||||
@@ -317,6 +319,13 @@ extra card field:
|
||||
editable: false
|
||||
save value: false
|
||||
show statistics: false
|
||||
extra card field:
|
||||
type: choice
|
||||
name: paintbrush
|
||||
script: paintbrush_color(card.card_color)
|
||||
editable: false
|
||||
choice: black
|
||||
choice: white
|
||||
|
||||
extra card style:
|
||||
pt box:
|
||||
@@ -354,7 +363,6 @@ extra card style:
|
||||
width: 15
|
||||
height: 35
|
||||
z index: 2
|
||||
visible: { card.name != "" }
|
||||
render style: image
|
||||
image: name-left.png
|
||||
name box right:
|
||||
@@ -365,7 +373,15 @@ extra card style:
|
||||
width: 14
|
||||
height: 35
|
||||
z index: 2
|
||||
visible: { card.name != "" }
|
||||
render style: image
|
||||
image: name-right.png
|
||||
|
||||
paintbrush:
|
||||
left: 27
|
||||
top : 481
|
||||
width: 30
|
||||
height: 11
|
||||
z index: 2
|
||||
render style: image
|
||||
choice images:
|
||||
black: paintbrush.png
|
||||
white: paintbrush_w.png
|
||||
|
||||
Reference in New Issue
Block a user