Updated most of the templates for the new color system; also tweaked the hybrid blends a bit for some templates
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@464 0fc631ac-6414-0410-93d0-97cfa31319b6
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 886 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 227 B |
@@ -1,4 +1,4 @@
|
||||
mse version: 0.3.2
|
||||
mse version: 0.3.4
|
||||
game: magic
|
||||
short name: Split Cards
|
||||
full name: Modern split cards
|
||||
@@ -15,8 +15,7 @@ card dpi: 150
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
# Load blend scripts for hybrids/multicolors
|
||||
include file: magic-blends.mse-include/blend-scripts
|
||||
# Load scripts for image box
|
||||
include file: magic-default-image.mse-include/scripts
|
||||
|
||||
# Should hybrids have a grey name?
|
||||
@@ -36,17 +35,6 @@ init script:
|
||||
# Use guild mana symbols?
|
||||
guild_mana := { styling.use_guild_mana_symbols }
|
||||
|
||||
# Does the card have a color that requires a white font for copyright/artist?
|
||||
white_font_colors := filter_rule(match:"^(hybrid 2 color )?(hybrid 3 color [^/]*/[^/]*/ )?(hybrid vertical [^/]*/ )?(black|land|hybrid 4 color white / blue / black / red|hybrid 2 color overlay blue / black|hybrid 2 color overlay black / red|hybrid 2 color overlay black / green)")
|
||||
font_color := {
|
||||
if white_font_colors(input: card.card_color) != "" then rgb(255,255,255)
|
||||
else rgb(0,0,0)
|
||||
}
|
||||
font_color_2 := {
|
||||
if white_font_colors(input: card.card_color_2) != "" then rgb(255,255,255)
|
||||
else rgb(0,0,0)
|
||||
}
|
||||
|
||||
############################################################## Extra style options
|
||||
|
||||
styling field:
|
||||
@@ -114,7 +102,7 @@ card style:
|
||||
z index: -1
|
||||
render style: image
|
||||
popup style: in place
|
||||
include file: magic-blends.mse-include/card-backgrounds
|
||||
image: { card_background() }
|
||||
card color 2:
|
||||
left: 269
|
||||
top: 18
|
||||
@@ -123,7 +111,7 @@ card style:
|
||||
z index: -1
|
||||
render style: image
|
||||
popup style: in place
|
||||
include file: magic-blends.mse-include/card-backgrounds
|
||||
image: { card_background() }
|
||||
|
||||
############################# Name line
|
||||
name:
|
||||
@@ -369,7 +357,7 @@ card style:
|
||||
font:
|
||||
name: Matrix
|
||||
size: 8
|
||||
color: { font_color() }
|
||||
color: { font_color(card.card_color) }
|
||||
|
||||
illustrator 2:
|
||||
left: 298
|
||||
@@ -380,7 +368,7 @@ card style:
|
||||
font:
|
||||
name: Matrix
|
||||
size: 8
|
||||
color: { font_color_2() }
|
||||
color: { font_color(card.card_color_2) }
|
||||
|
||||
copyright line:
|
||||
left: 26
|
||||
@@ -391,7 +379,7 @@ card style:
|
||||
font:
|
||||
name: MPlantin
|
||||
size: 6
|
||||
color: { font_color() }
|
||||
color: { font_color(card.card_color) }
|
||||
|
||||
copyright line 2:
|
||||
left: 278
|
||||
@@ -402,7 +390,7 @@ card style:
|
||||
font:
|
||||
name: MPlantin
|
||||
size: 6
|
||||
color: { font_color_2() }
|
||||
color: { font_color(card.card_color_2) }
|
||||
|
||||
############################################################## Extra card fields
|
||||
|
||||
@@ -426,7 +414,7 @@ extra card style:
|
||||
z index: 1
|
||||
visible: { card.pt != "" }
|
||||
render style: image
|
||||
include file: magic-blends.mse-include/card-ptboxes
|
||||
image: { card_ptbox() }
|
||||
|
||||
pt box 2:
|
||||
left: 445
|
||||
@@ -436,4 +424,4 @@ extra card style:
|
||||
z index: 1
|
||||
visible: { card.pt_2 != "" }
|
||||
render style: image
|
||||
include file: magic-blends.mse-include/card-ptboxes
|
||||
image: { card_ptbox() }
|
||||
|
||||