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: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 717 B |
|
Before Width: | Height: | Size: 722 B |
|
Before Width: | Height: | Size: 283 B |
|
Before Width: | Height: | Size: 414 B |
|
Before Width: | Height: | Size: 416 B |
|
Before Width: | Height: | Size: 416 B |
|
Before Width: | Height: | Size: 415 B |
|
Before Width: | Height: | Size: 282 B |
|
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 886 B |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 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
|
||||
full name: Magic Old Split Cards
|
||||
short name: Old Splits
|
||||
@@ -12,6 +12,21 @@ card dpi: 150
|
||||
# Author: Buttock1234
|
||||
# Lots of copy/paste from magic-new.mse-style
|
||||
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
if styling.tap_symbol == "old" then "old"
|
||||
else if styling.tap_symbol == "diagonal T" then "older"
|
||||
else "new"
|
||||
}
|
||||
# Use guild mana symbols?
|
||||
guild_mana := { styling.use_guild_mana_symbols }
|
||||
|
||||
# Only white cards use a black font
|
||||
font_colors_white := { input != "w" }
|
||||
|
||||
############################################################## Set info fields
|
||||
set info style:
|
||||
symbol:
|
||||
@@ -32,55 +47,12 @@ set info style:
|
||||
border color 1: rgb(255,255,255)
|
||||
border color 2: rgb(255,255,255)
|
||||
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
# Load blend scripts for hybrids/multicolors
|
||||
include file: magic-blends.mse-include/blend-scripts
|
||||
|
||||
# Which artifact template should be used?
|
||||
artifact_template := {
|
||||
if input == "a" then (
|
||||
if styling.artifact_style == "light" then "oa"
|
||||
else "a"
|
||||
) else input
|
||||
}
|
||||
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
if styling.tap_symbol == "old" then "old"
|
||||
else if styling.tap_symbol == "diagonal T" then "older"
|
||||
else "new"
|
||||
}
|
||||
# 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?
|
||||
black_font_colors := filter_rule(match:"^(hybrid 2 color)?white")
|
||||
font_color := {
|
||||
if black_font_colors(card.card_color) != "" then
|
||||
rgb(0,0,0)
|
||||
else
|
||||
rgb(255,255,255)
|
||||
}
|
||||
|
||||
font_color_2 := {
|
||||
if black_font_colors(card.card_color_2) != "" then
|
||||
rgb(0,0,0)
|
||||
else
|
||||
rgb(255,255,255)
|
||||
}
|
||||
|
||||
############################################################## styling style
|
||||
|
||||
styling field:
|
||||
type: boolean
|
||||
name: colored mana symbols
|
||||
description: Use colored mana symbols, as used by Wizards since Fifth Dawn.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: darker artifacts
|
||||
description: Use darker artifacts, as used by Wizards since Fifth Dawn.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: use guild mana symbols
|
||||
@@ -134,7 +106,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
|
||||
@@ -143,7 +115,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:
|
||||
@@ -434,7 +406,7 @@ card style:
|
||||
font:
|
||||
name: MPlantin
|
||||
size: 6
|
||||
color: { font_color() }
|
||||
color: { font_color(card.card_color) }
|
||||
|
||||
copyright line 2:
|
||||
left: 302
|
||||
@@ -446,4 +418,4 @@ card style:
|
||||
font:
|
||||
name: MPlantin
|
||||
size: 6
|
||||
color: { font_color_2() }
|
||||
color: { font_color(card.card_color_2) }
|
||||
|
||||