mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 21:27:01 -04:00
Added line height soft to magic-futureshift.
Changed all paintbrush images to reference ones from magic-future-common. All extra paintbrushes were deleted. Added styling option to invert common rarity symbol in all post 8th Magic styles. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@649 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -39,6 +39,16 @@ init script:
|
||||
|
||||
paintbrush_color := { if font_white() then "white" else "black" }
|
||||
|
||||
############################################################## Set info fields
|
||||
set info style:
|
||||
symbol:
|
||||
variation:
|
||||
name: invertedcommon
|
||||
border radius: 0.10
|
||||
fill type: solid
|
||||
fill color: rgb(255,255,255)
|
||||
border color: rgb(0,0,0)
|
||||
|
||||
############################################################## Extra style options
|
||||
|
||||
styling field:
|
||||
@@ -63,7 +73,11 @@ styling field:
|
||||
choice: modern
|
||||
choice: old
|
||||
choice: diagonal T
|
||||
|
||||
styling field:
|
||||
type: boolean
|
||||
name: inverted common symbol
|
||||
description: Should the common rarity symbol be inverted, like in Coldsnap?
|
||||
initial: no
|
||||
styling style:
|
||||
use guild mana symbols:
|
||||
choice images:
|
||||
@@ -159,8 +173,14 @@ card style:
|
||||
render style: image
|
||||
choice images:
|
||||
# Images based on the set symbol
|
||||
basic land: script: symbol_variation(symbol: set.symbol, variation: "common")
|
||||
common: script: symbol_variation(symbol: set.symbol, variation: "common")
|
||||
basic land:
|
||||
script:
|
||||
if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
|
||||
else symbol_variation(symbol: set.symbol, variation: "common")
|
||||
common:
|
||||
script:
|
||||
if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
|
||||
else symbol_variation(symbol: set.symbol, variation: "common")
|
||||
uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
|
||||
rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
|
||||
special: script: symbol_variation(symbol: set.symbol, variation: "special")
|
||||
@@ -237,5 +257,5 @@ extra card style:
|
||||
z index: 1
|
||||
render style: image
|
||||
choice images:
|
||||
black: paintbrush.png
|
||||
white: paintbrush_w.png
|
||||
black: /magic-future-common.mse-include/paintbrush_black.png
|
||||
white: /magic-future-common.mse-include/paintbrush_white.png
|
||||
|
||||
Reference in New Issue
Block a user