New saturated multicolor and dark artifacts for magic-new-flip, magic-new-split, magic-new-promo, and magic-extended-art styles.
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1012 0fc631ac-6414-0410-93d0-97cfa31319b6
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
@@ -6,7 +6,7 @@ installer group: magic/new style/extended art
|
||||
icon: card-sample.png
|
||||
position hint: 006
|
||||
|
||||
version: 2008-06-02
|
||||
version: 2008-06-30
|
||||
depends on:
|
||||
package: magic.mse-game
|
||||
version: 2008-06-02
|
||||
@@ -38,14 +38,18 @@ init script:
|
||||
#Should multicolor lands with basic land types have a colored name?
|
||||
mask_multi_land_with_color := { styling.colored_multicolor_land_name }
|
||||
|
||||
# Which artifact template should be used?
|
||||
artifact_template := {
|
||||
if input == "a" and not styling.darker_artifacts
|
||||
then "oa"
|
||||
else input
|
||||
# Which artifact template should be used? Which multicolor template should be used?
|
||||
alternate_template := {
|
||||
if input == "a" then (
|
||||
if not styling.darker_artifacts then "oa"
|
||||
else "a"
|
||||
) else if input == "m" then (
|
||||
if styling.saturated_multicolor then "m"
|
||||
else "om"
|
||||
) else input
|
||||
}
|
||||
template := { artifact_template() + "{type}.jpg" }
|
||||
land_template := { (if input == "a" then "c" else input) + "l{type}.jpg" }
|
||||
template := { alternate_template() + "{type}.jpg" }
|
||||
land_template := { (if input == "a" then "c" else alternate_template()) + "l{type}.jpg" }
|
||||
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
@@ -72,6 +76,11 @@ styling field:
|
||||
type: boolean
|
||||
name: darker artifacts
|
||||
description: Use darker artifacts, as used by Wizards since Fifth Dawn.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: saturated multicolor
|
||||
description: Should multicolor cards be more saturated? This is done on real cards.
|
||||
initial: yes
|
||||
styling field:
|
||||
type: boolean
|
||||
name: grey hybrid name
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 973 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
@@ -6,7 +6,7 @@ installer group: magic/new style/promotional
|
||||
icon: card-sample.png
|
||||
position hint: 004
|
||||
|
||||
version: 2008-04-13
|
||||
version: 2008-06-30
|
||||
depends on:
|
||||
package: magic.mse-game
|
||||
version: 2007-12-29
|
||||
@@ -40,14 +40,17 @@ init script:
|
||||
#Should multicolor lands with basic land types have a colored name?
|
||||
mask_multi_land_with_color := { styling.colored_multicolor_land_name }
|
||||
|
||||
# Which artifact template should be used?
|
||||
artifact_template := {
|
||||
if input == "a" and not styling.darker_artifacts
|
||||
then "oa"
|
||||
else input
|
||||
# Which artifact template should be used? Which multicolor template should be used?
|
||||
alternate_template := {
|
||||
if input == "a" then (
|
||||
if not styling.darker_artifacts then "oa"
|
||||
else "a"
|
||||
) else if input == "m" then (
|
||||
if styling.saturated_multicolor then "m"
|
||||
else "om"
|
||||
) else input
|
||||
}
|
||||
template := { artifact_template() + "{type}.jpg" }
|
||||
pt_template := { "/magic-new.mse-style/" + artifact_template() + "pt.jpg" }
|
||||
template := { alternate_template() + "{type}.jpg" }
|
||||
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
@@ -64,6 +67,11 @@ styling field:
|
||||
type: boolean
|
||||
name: darker artifacts
|
||||
description: Use darker artifacts, as used by Wizards since Fifth Dawn.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: saturated multicolor
|
||||
description: Should multicolor cards be more saturated? This is done on real cards.
|
||||
initial: yes
|
||||
styling field:
|
||||
type: boolean
|
||||
name: grey hybrid name
|
||||
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -6,7 +6,7 @@ installer group: magic/new style/split cards
|
||||
icon: card-sample.png
|
||||
position hint: 003
|
||||
|
||||
version: 2008-06-02
|
||||
version: 2008-06-30
|
||||
depends on:
|
||||
package: magic.mse-game
|
||||
version: 2008-06-02
|
||||
@@ -43,13 +43,17 @@ init script:
|
||||
#Should multicolor lands with basic land types have a colored name?
|
||||
mask_multi_land_with_color := { styling.colored_multicolor_land_name }
|
||||
|
||||
# Which artifact template should be used?
|
||||
artifact_template := {
|
||||
if input == "a" and not styling.darker_artifacts
|
||||
then "oa"
|
||||
else input
|
||||
# Which artifact template should be used? Which multicolor template should be used?
|
||||
alternate_template := {
|
||||
if input == "a" then (
|
||||
if not styling.darker_artifacts then "oa"
|
||||
else "a"
|
||||
) else if input == "m" then (
|
||||
if styling.saturated_multicolor then "m"
|
||||
else "om"
|
||||
) else input
|
||||
}
|
||||
template := { artifact_template() + "{type}.jpg" }
|
||||
template := { alternate_template() + "{type}.jpg" }
|
||||
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
@@ -78,6 +82,11 @@ styling field:
|
||||
type: boolean
|
||||
name: darker artifacts
|
||||
description: Use darker artifacts, as used by Wizards since Fifth Dawn.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: saturated multicolor
|
||||
description: Should multicolor cards be more saturated? This is done on real cards.
|
||||
initial: yes
|
||||
styling field:
|
||||
type: boolean
|
||||
name: grey hybrid name
|
||||
|
||||