mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 05:36:59 -04:00
New colorless frame for futureshifts.
New artifact masks for magic-future-textless. Sorta sloppy, but better than before. Further improvements to font color for futureshifts, specifically colored artifacts. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@651 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 30 KiB |
@@ -10,12 +10,6 @@ card height: 523
|
||||
card dpi: 150
|
||||
|
||||
#By: Pichoro
|
||||
#
|
||||
#Todo:
|
||||
#Make different colored colorless mana symbols work
|
||||
#Casting cost mask
|
||||
#Frames can be changed to jpegs
|
||||
#make colored artifacts look right
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
@@ -164,7 +158,13 @@ card style:
|
||||
script:
|
||||
if styling.grey_hybrid_name and contains(card.card_color, match:"land") and not contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if styling.grey_hybrid_name and contains(card.card_color, match:"hybrid") then rgb(0,0,0)
|
||||
else font_color(card.card_color)
|
||||
else if contains(card.card_color, match:"artifact") then (
|
||||
if contains(card.card_color, match:"blue") or
|
||||
contains(card.card_color, match:"black") or
|
||||
contains(card.card_color, match:"red") or
|
||||
contains(card.card_color, match:"green") then rgb(255,255,255)
|
||||
else rgb(0,0,0)
|
||||
) else font_color(card.card_color)
|
||||
casting cost:
|
||||
left: 18
|
||||
top: 57
|
||||
@@ -215,7 +215,13 @@ card style:
|
||||
script:
|
||||
if styling.grey_hybrid_name and contains(card.card_color, match:"land") and not contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if styling.grey_hybrid_name and contains(card.card_color, match:"hybrid") then rgb(0,0,0)
|
||||
else font_color(card.card_color)
|
||||
else if contains(card.card_color, match:"artifact") then (
|
||||
if contains(card.card_color, match:"blue") or
|
||||
contains(card.card_color, match:"black") or
|
||||
contains(card.card_color, match:"red") or
|
||||
contains(card.card_color, match:"green") then rgb(255,255,255)
|
||||
else rgb(0,0,0)
|
||||
) else font_color(card.card_color)
|
||||
separator color: rgb(128,128,128)
|
||||
rarity:
|
||||
right: 352
|
||||
@@ -245,7 +251,17 @@ card style:
|
||||
name: Mplantin
|
||||
size: 16
|
||||
weight: bold
|
||||
color: { font_color(card.card_color) }
|
||||
color:
|
||||
script:
|
||||
if styling.grey_hybrid_name and contains(card.card_color, match:"land") and not contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if styling.grey_hybrid_name and contains(card.card_color, match:"hybrid") then rgb(0,0,0)
|
||||
else if contains(card.card_color, match:"artifact") then (
|
||||
if contains(card.card_color, match:"blue") or
|
||||
contains(card.card_color, match:"black") or
|
||||
contains(card.card_color, match:"red") or
|
||||
contains(card.card_color, match:"green") then rgb(255,255,255)
|
||||
else rgb(0,0,0)
|
||||
) else font_color(card.card_color)
|
||||
separator color: rgb(200,0,0)
|
||||
############################# Card sorting / numbering
|
||||
############################# Copyright stuff
|
||||
|
||||
Reference in New Issue
Block a user