Commit de2a4414 authored by pichoro's avatar pichoro

Fixed an error pertaining to rules text in futureshifts.

"Shifted sorting" on futureshifts and planeshifts is now optional.
parent 5513c521
...@@ -105,7 +105,7 @@ init script: ...@@ -105,7 +105,7 @@ init script:
else "white" else "white"
} }
card_shape := { "shifted" } card_shape := { if styling.shifted_sorting then "shifted" else "normal" }
############################################################## Set info fields ############################################################## Set info fields
set info style: set info style:
...@@ -118,7 +118,11 @@ set info style: ...@@ -118,7 +118,11 @@ set info style:
border color: rgb(0,0,0) border color: rgb(0,0,0)
############################################################## Extra style options ############################################################## Extra style options
styling field:
type: boolean
name: shifted sorting
description: Should this style of card sort as a shifted card (after other cards of that color)?
initial: yes
styling field: styling field:
type: boolean type: boolean
name: grey hybrid name name: grey hybrid name
......
...@@ -5,7 +5,7 @@ full name: Futureshift ...@@ -5,7 +5,7 @@ full name: Futureshift
icon: card-sample.png icon: card-sample.png
position hint: 050 position hint: 050
version: 2007-12-29 version: 2007-12-30
depends on: depends on:
package: magic.mse-game package: magic.mse-game
version: 2007-12-29 version: 2007-12-29
...@@ -36,7 +36,6 @@ card dpi: 150 ...@@ -36,7 +36,6 @@ card dpi: 150
init script: init script:
mask_hybrid_with_land := { styling.grey_hybrid_name } mask_hybrid_with_land := { styling.grey_hybrid_name }
text_filter := { card.extra_data.paintbrush }
template_suffix := [card: "card.jpg", 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] }
...@@ -147,7 +146,7 @@ init script: ...@@ -147,7 +146,7 @@ init script:
else "white" else "white"
} }
card_shape := { "shifted" } card_shape := { if styling.shifted_sorting then "shifted" else "normal" }
############################################################## Set info fields ############################################################## Set info fields
set info style: set info style:
...@@ -160,7 +159,11 @@ set info style: ...@@ -160,7 +159,11 @@ set info style:
border color: rgb(0,0,0) border color: rgb(0,0,0)
############################################################## Extra style options ############################################################## Extra style options
styling field:
type: boolean
name: shifted sorting
description: Should this style of card sort as a shifted card (after other cards of that color)?
initial: yes
styling field: styling field:
type: boolean type: boolean
name: grey hybrid name name: grey hybrid name
......
...@@ -44,7 +44,7 @@ init script: ...@@ -44,7 +44,7 @@ init script:
# Use guild mana symbols? # Use guild mana symbols?
guild_mana := { styling.use_guild_mana_symbols } guild_mana := { styling.use_guild_mana_symbols }
card_shape := { "shifted" } card_shape := { if styling.shifted_sorting then "shifted" else "normal" }
############################################################## Set info fields ############################################################## Set info fields
set info style: set info style:
...@@ -58,6 +58,11 @@ set info style: ...@@ -58,6 +58,11 @@ set info style:
############################################################## Extra style options ############################################################## Extra style options
styling field:
type: boolean
name: shifted sorting
description: Should this style of card sort as a shifted card (after other cards of that color)?
initial: yes
styling field: styling field:
type: boolean type: boolean
name: colored mana symbols name: colored mana symbols
......
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