Commit 763d4ed7 authored by pichoro's avatar pichoro

Removed darker artifact frame from magic-new-tokens; also removed styling relating to it.

Removed vestigial card-typeline and card-textbox files from blends folder.
Added longdash replacement rule to flavor text filter.
Changed font_color to a styling choice in FPM promo template; removed font color from game file.
parent 45528571
This diff is collapsed.
This diff is collapsed.
......@@ -40,6 +40,13 @@ styling field:
initial: Matrix
choice: Matrix
choice: MatrixBoldSmallCaps
styling field:
type: choice
name: font color
description: Use white or black for the card's font color?
initial: black
choice: black
choice: white
styling field:
type: boolean
name: beveled mana symbols
......@@ -109,16 +116,6 @@ card style:
render style: image
popup style: in place
image: { card_background() }
font color:
left: 25
top: 508
width: 19
height: 12
z index: 5
render style: image
choice images:
black: clear.png
white: clear.png
############################# Name line
name:
......@@ -183,8 +180,8 @@ card style:
name: Matrix
size: 10
color:
{ if card.font_color = "white" then rgb(255,255,255)
else if card.font_color = "black" then rgb(0,0,0)
{ if styling.font_color = "white" then rgb(255,255,255)
else if styling.font_color = "black" then rgb(0,0,0)
else rgb(0,0,0) }
separator color: rgb(128,128,128)
......@@ -200,8 +197,8 @@ card style:
size: 14
scale down to: 6
color:
{ if card.font_color = "white" then rgb(255,255,255)
else if card.font_color = "black" then rgb(0,0,0)
{ if styling.font_color = "white" then rgb(255,255,255)
else if styling.font_color = "black" then rgb(0,0,0)
else rgb(0,0,0) }
symbol font:
name:
......@@ -273,8 +270,8 @@ card style:
name: MPlantin-Italic
size: 8
color:
{ if card.font_color = "white" then rgb(255,255,255)
else if card.font_color = "black" then rgb(0,0,0)
{ if styling.font_color = "white" then rgb(255,255,255)
else if styling.font_color = "black" then rgb(0,0,0)
else rgb(0,0,0) }
symbol font:
name: magic-paintbrush
......@@ -291,8 +288,8 @@ card style:
name: MPlantin
size: 7
color:
{ if card.font_color = "white" then rgb(255,255,255)
else if card.font_color = "black" then rgb(0,0,0)
{ if styling.font_color = "white" then rgb(255,255,255)
else if styling.font_color = "black" then rgb(0,0,0)
else rgb(0,0,0) }
......
data/magic-new-token.mse-style/apt0.jpg

9.89 KB | W: | H:

data/magic-new-token.mse-style/apt0.jpg

1.83 KB | W: | H:

data/magic-new-token.mse-style/apt0.jpg
data/magic-new-token.mse-style/apt0.jpg
data/magic-new-token.mse-style/apt0.jpg
data/magic-new-token.mse-style/apt0.jpg
  • 2-up
  • Swipe
  • Onion skin
data/magic-new-token.mse-style/apt1.jpg

9.88 KB | W: | H:

data/magic-new-token.mse-style/apt1.jpg

1.79 KB | W: | H:

data/magic-new-token.mse-style/apt1.jpg
data/magic-new-token.mse-style/apt1.jpg
data/magic-new-token.mse-style/apt1.jpg
data/magic-new-token.mse-style/apt1.jpg
  • 2-up
  • Swipe
  • Onion skin
data/magic-new-token.mse-style/apt2.jpg

9.74 KB | W: | H:

data/magic-new-token.mse-style/apt2.jpg

1.61 KB | W: | H:

data/magic-new-token.mse-style/apt2.jpg
data/magic-new-token.mse-style/apt2.jpg
data/magic-new-token.mse-style/apt2.jpg
data/magic-new-token.mse-style/apt2.jpg
  • 2-up
  • Swipe
  • Onion skin
......@@ -30,12 +30,6 @@ init script:
else "2" # large textbox
}
artifact_template := {
if input == "a" and styling.artifact_style == "light" then "oa"
else input
}
template := { artifact_template() + "{type}.jpg" }
land_template := { "c{type}.jpg" }
colored_lands := false
......@@ -52,18 +46,10 @@ init script:
# We have no land template
font_colors_white := { input == "b" }
############################################################## Set info fields
############################################################## Extra style
styling field:
type: choice
name: artifact style
description: Choose the style of artifacts: light = before Fifth Dawn, dark = used since Fifth Dawn
initial: dark
choice: light
choice: dark
styling field:
type: boolean
name: use guild mana symbols
......@@ -89,11 +75,6 @@ styling field:
choice: diagonal T
styling style:
artifact style:
render style: both
choice images:
light: oacard0.jpg
dark: acard0.jpg
popup mana symbols:
choice images:
yes: /magic-mana-large.mse-symbol-font/mana_w.png
......
......@@ -344,6 +344,13 @@ init script:
replace_rule(
match: "AE",
replace: "Æ") +
# step 1.5 : longdash
replace_rule(
match: "--",
replace: "—") +
replace_rule(
match: " - ",
replace: " — ") +
# step 2 : remove italic tags
tag_remove_rule(tag: "<i-flavor>") +
# step 3 : surround by <i> tags
......@@ -625,15 +632,6 @@ card field:
script: card_color_filter(value)
default: card_color(casting_cost: card.casting_cost)
show statistics: false
#needed for FPM temps???
card field:
type: choice
name: font color
choice: black
choice: white
description: Font color for the typeline and textbox
show statistics: false
save value: true
############################# Name line
card field:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment