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
This commit is contained in:
pichoro
2008-06-30 20:07:59 +00:00
parent 64b7912835
commit 69fed99633
36 changed files with 49 additions and 23 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

+17 -8
View File
@@ -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
Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 973 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

+16 -8
View File
@@ -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
Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

+16 -7
View File
@@ -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