Fixed an error in FPM style.
Fixed an error in flip style dealing with land pt boxes. Added required stuff for textboxed modern tokens. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@441 0fc631ac-6414-0410-93d0-97cfa31319b6
@@ -26,7 +26,7 @@ init script:
|
|||||||
}
|
}
|
||||||
|
|
||||||
card_template := { green_template() + "card.jpg" }
|
card_template := { green_template() + "card.jpg" }
|
||||||
pt_template := { green_template() + "pt.jpg" }
|
land_template := { green_template() + "lcard.jpg" }
|
||||||
|
|
||||||
# Use the normal tap symbol
|
# Use the normal tap symbol
|
||||||
mana_t := {
|
mana_t := {
|
||||||
|
|||||||
@@ -21,11 +21,26 @@ init script:
|
|||||||
include file: magic-default-image.mse-include/scripts
|
include file: magic-default-image.mse-include/scripts
|
||||||
|
|
||||||
# Should hybrids have a grey name?
|
# Should hybrids have a grey name?
|
||||||
# Not supported (yet)
|
# Should hybrids have a grey name?
|
||||||
mask_hybrid_with_land := { false }
|
mask_hybrid_with_land := { false }
|
||||||
|
|
||||||
# We have no land templates
|
# We have no land templates
|
||||||
land_template := { "acard.jpg" }
|
# Which artifact template should be used?
|
||||||
|
land_to_artifact := {
|
||||||
|
if input == "w" or input == "u" or input == "b" or input == "r" or input == "g" or input == "m" then ""
|
||||||
|
else input
|
||||||
|
}
|
||||||
|
|
||||||
|
land_to_artifact_pt := {
|
||||||
|
if input == "wl" or input == "ul" or input == "bl" or input == "rl" or input == "gl" or input == "ml" then "c"
|
||||||
|
else input
|
||||||
|
}
|
||||||
|
|
||||||
|
land_template := { land_to_artifact() + "ccard.jpg" }
|
||||||
|
pt_template := { land_to_artifact_pt() + "pt.jpg" }
|
||||||
|
pt2_template := { land_to_artifact_pt() + "pt.jpg" }
|
||||||
|
land_hybrid_pt := { "cpt.jpg" }
|
||||||
|
land_hybrid_pt2 := { "cpt.jpg" }
|
||||||
|
|
||||||
# Use the normal tap symbol
|
# Use the normal tap symbol
|
||||||
mana_t := {
|
mana_t := {
|
||||||
|
|||||||
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 9.9 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 260 B |
|
After Width: | Height: | Size: 257 B |
@@ -24,7 +24,46 @@ init script:
|
|||||||
mask_hybrid_with_land := { false }
|
mask_hybrid_with_land := { false }
|
||||||
|
|
||||||
# We have no land templates
|
# We have no land templates
|
||||||
land_template := { "acard.jpg" }
|
# Which artifact template should be used?
|
||||||
|
text_sensor := { if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then "2"
|
||||||
|
else "" }
|
||||||
|
|
||||||
|
land_to_artifact := {
|
||||||
|
if input == "w" or input == "u" or input == "b" or input == "r" or input == "g" or input == "m" then ""
|
||||||
|
else input
|
||||||
|
}
|
||||||
|
|
||||||
|
land_to_artifact_pt := {
|
||||||
|
if input == "l" or input == "wl" or input == "ul" or input == "bl" or input == "rl" or input == "gl" or input == "ml" then "c"
|
||||||
|
else input
|
||||||
|
}
|
||||||
|
|
||||||
|
card_hybrid_nt := {
|
||||||
|
if mask_hybrid_with_land() then
|
||||||
|
masked_blend(
|
||||||
|
mask: (
|
||||||
|
if card.rule_text != "" then "2hybrid_blend_nt.png"
|
||||||
|
else "hybrid_blend_nt.png" ),
|
||||||
|
dark: land_template(""),
|
||||||
|
light: input,
|
||||||
|
)
|
||||||
|
else input
|
||||||
|
}
|
||||||
|
multi_hybrid := {
|
||||||
|
masked_blend(
|
||||||
|
mask: (
|
||||||
|
if card.rule_text != "" then "2multicolor_dual_blend.png"
|
||||||
|
else "multicolor_dual_blend.png" ),
|
||||||
|
dark: (
|
||||||
|
if card.rule_text != "" then "2mcard.jpg"
|
||||||
|
else "mcard.jpg" ),
|
||||||
|
light: input,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
card_template := { text_sensor() + input + "card.jpg" }
|
||||||
|
land_template := { text_sensor() + land_to_artifact() + "ccard.jpg" }
|
||||||
|
pt_template := { text_sensor() + land_to_artifact_pt() + "pt.jpg" }
|
||||||
|
land_hybrid_pt := { text_sensor() + "cpt.jpg" }
|
||||||
|
|
||||||
# Use the normal tap symbol
|
# Use the normal tap symbol
|
||||||
small_mana_t := "mana_t.png"
|
small_mana_t := "mana_t.png"
|
||||||
@@ -159,10 +198,22 @@ card style:
|
|||||||
############################# Image
|
############################# Image
|
||||||
image:
|
image:
|
||||||
left: 30
|
left: 30
|
||||||
top: 59
|
top:
|
||||||
|
script: if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
58
|
||||||
|
else
|
||||||
|
59
|
||||||
width: 315
|
width: 315
|
||||||
height: 366
|
height:
|
||||||
mask: imagemask.png
|
script: if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
288
|
||||||
|
else
|
||||||
|
366
|
||||||
|
mask:
|
||||||
|
script: if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
"2imagemask.png"
|
||||||
|
else
|
||||||
|
"imagemask.png"
|
||||||
z index: 1
|
z index: 1
|
||||||
|
|
||||||
|
|
||||||
@@ -170,7 +221,11 @@ card style:
|
|||||||
|
|
||||||
type:
|
type:
|
||||||
left: 35
|
left: 35
|
||||||
top: 433
|
top:
|
||||||
|
script: if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
350
|
||||||
|
else
|
||||||
|
433
|
||||||
width: 286
|
width: 286
|
||||||
height: 20
|
height: 20
|
||||||
alignment: top shrink-overflow
|
alignment: top shrink-overflow
|
||||||
@@ -180,13 +235,17 @@ card style:
|
|||||||
padding right: 2
|
padding right: 2
|
||||||
font:
|
font:
|
||||||
name: Matrix
|
name: Matrix
|
||||||
size: 14
|
size: 15
|
||||||
color: rgb(0,0,0)
|
color: rgb(0,0,0)
|
||||||
separator color: rgb(128,128,128)
|
separator color: rgb(128,128,128)
|
||||||
|
|
||||||
rarity:
|
rarity:
|
||||||
left: 320
|
left: 320
|
||||||
top: 432
|
top:
|
||||||
|
script: if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
351
|
||||||
|
else
|
||||||
|
432
|
||||||
width: 22
|
width: 22
|
||||||
height: 22
|
height: 22
|
||||||
z index: 1
|
z index: 1
|
||||||
@@ -200,6 +259,46 @@ card style:
|
|||||||
special: script: symbol_variation(symbol: set.symbol, variation: "special")
|
special: script: symbol_variation(symbol: set.symbol, variation: "special")
|
||||||
|
|
||||||
############################# Text box
|
############################# Text box
|
||||||
|
text:
|
||||||
|
left: 31
|
||||||
|
top:
|
||||||
|
if card.rule_text != "" or number_of_items(in:"" + card.flavor_text) > 21 then
|
||||||
|
388
|
||||||
|
else
|
||||||
|
300
|
||||||
|
width: 311
|
||||||
|
height: 80
|
||||||
|
font:
|
||||||
|
name: MPlantin
|
||||||
|
italic name: MPlantin-Italic
|
||||||
|
size: 15
|
||||||
|
scale down to: 6
|
||||||
|
color: rgb(0,0,0)
|
||||||
|
symbol font:
|
||||||
|
name:
|
||||||
|
script:
|
||||||
|
if styling.popup_mana_symbols
|
||||||
|
then "magic-mana-large"
|
||||||
|
else "magic-mana-small"
|
||||||
|
size: 14
|
||||||
|
alignment:
|
||||||
|
script:
|
||||||
|
if not contains(match:",", card.rule_text) and
|
||||||
|
not contains(match: ".", card.rule_text) and
|
||||||
|
not contains(match: ";", card.rule_text) and
|
||||||
|
not contains(match: ":", card.rule_text) and
|
||||||
|
not contains (match: "!", card.rule_text) and
|
||||||
|
not contains (match: "?", card.rule_text) and
|
||||||
|
card.flavor_text == "<i-flavor></i-flavor>"
|
||||||
|
then "middle center"
|
||||||
|
else "middle left"
|
||||||
|
z index: 2
|
||||||
|
padding left: 6
|
||||||
|
padding top: 2
|
||||||
|
padding right: 4
|
||||||
|
padding bottom: 2
|
||||||
|
line height hard: 1.2
|
||||||
|
line height line: 1.5
|
||||||
|
|
||||||
############################# PT
|
############################# PT
|
||||||
pt:
|
pt:
|
||||||
@@ -211,7 +310,7 @@ card style:
|
|||||||
alignment: center middle shrink-overflow
|
alignment: center middle shrink-overflow
|
||||||
font:
|
font:
|
||||||
name: Mplantin
|
name: Mplantin
|
||||||
size: 18
|
size: 16
|
||||||
weight: bold
|
weight: bold
|
||||||
color: rgb(0,0,0)
|
color: rgb(0,0,0)
|
||||||
separator color: rgb(200,0,0)
|
separator color: rgb(200,0,0)
|
||||||
@@ -226,7 +325,7 @@ card style:
|
|||||||
z index: 1
|
z index: 1
|
||||||
font:
|
font:
|
||||||
name: Matrix
|
name: Matrix
|
||||||
size: 10
|
size: 11
|
||||||
weight: bold
|
weight: bold
|
||||||
color:
|
color:
|
||||||
script: font_color()
|
script: font_color()
|
||||||
@@ -239,7 +338,7 @@ card style:
|
|||||||
z index: 1
|
z index: 1
|
||||||
font:
|
font:
|
||||||
name: MPlantin
|
name: MPlantin
|
||||||
size: 6.5
|
size: 7.5
|
||||||
color:
|
color:
|
||||||
script: font_color()
|
script: font_color()
|
||||||
|
|
||||||
|
|||||||