Commit cb31a811 authored by pichoro's avatar pichoro

More tweaking of Planeswalkers.

Added Planeswalker type and World supertype to Magic game.
Converted frames in futureshifts and planeswalkers to jpg format.
parent 7d374abf
...@@ -17,9 +17,8 @@ init script: ...@@ -17,9 +17,8 @@ init script:
# Should hybrids have a grey name? # Should hybrids have a grey name?
mask_hybrid_with_land := { styling.grey_hybrid_name } mask_hybrid_with_land := { styling.grey_hybrid_name }
template_suffix := [card: "card.png", pt: "pt.png"] template := { input + "{type}.jpg" }
template := { input + template_suffix[type] } land_template := { (if input == "a" then "c" else input) + "l{type}.jpg" }
land_template := { (if input == "a" then "c" else input) + "l" + template_suffix[type] }
color_combination := { color_combination := {
# The base hybrid, without the outer frame blended over it # The base hybrid, without the outer frame blended over it
base := base_hybrid[shape][color_count]() base := base_hybrid[shape][color_count]()
......
...@@ -16,7 +16,7 @@ card dpi: 150 ...@@ -16,7 +16,7 @@ card dpi: 150
init script: init script:
mask_hybrid_with_land := { styling.grey_hybrid_name } mask_hybrid_with_land := { styling.grey_hybrid_name }
template_suffix := [card: "card.png", pt: "pt.png", textbox: "textbox.png", typeline: "typeline.png"] template_suffix := [card: "card.jpg", pt: "pt.png", textbox: "textbox.png", typeline: "typeline.png"]
template := { input + template_suffix[type] } template := { input + template_suffix[type] }
land_template := { (if input == "a" then "c" else input) + "l" + template_suffix[type] } land_template := { (if input == "a" then "c" else input) + "l" + template_suffix[type] }
color_combination := { color_combination := {
......
...@@ -24,8 +24,8 @@ init script: ...@@ -24,8 +24,8 @@ init script:
mask_hybrid_with_land := { styling.grey_hybrid_name } mask_hybrid_with_land := { styling.grey_hybrid_name }
# Which artifact template should be used? # Which artifact template should be used?
template := { input + "{type}.png" } template := { input + "{type}.jpg" }
land_template := { "c{type}.png" } land_template := { "c{type}.jpg" }
# Use land templates for previews because they show more contrast # Use land templates for previews because they show more contrast
hybrid_previews := "land,hybrid" hybrid_previews := "land,hybrid"
...@@ -339,7 +339,7 @@ card style: ...@@ -339,7 +339,7 @@ card style:
copyright line: copyright line:
left: 43 left: 43
top : 500 top : 497
width: 287 width: 287
height: 12 height: 12
z index: 1 z index: 1
......
...@@ -1293,6 +1293,9 @@ word list: ...@@ -1293,6 +1293,9 @@ word list:
word: word:
name: Snow name: Snow
is prefix: true is prefix: true
word:
name: World
is prefix: true
line below: true line below: true
word: Creature word: Creature
word: Artifact word: Artifact
...@@ -1301,6 +1304,7 @@ word list: ...@@ -1301,6 +1304,7 @@ word list:
word: Instant word: Instant
word: Sorcery word: Sorcery
word: Land word: Land
word: Planeswalker
word list: word list:
name: race name: race
......
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