mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 13:17:00 -04:00
Version bump. When game and style are both updated, style's game dependancy needs to be updated to reflect.
Removed unused symbols from official symbol-font. Fixed some errors in insert symbol menu of symbol-fonts. Fixed an error in pack generator. Fixed flight/range/ongoing icons so that they are both defaulted and editable. Added custom symbols for unofficial symbol-font. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1226 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
+12
-11
@@ -5,7 +5,7 @@ installer group: VS System/game files
|
||||
icon: card-back.png
|
||||
position hint: 3
|
||||
|
||||
version: 2008-10-06
|
||||
version: 2008-10-23
|
||||
depends on:
|
||||
package: vs-common.mse-include
|
||||
version: 2008-09-23
|
||||
@@ -137,10 +137,17 @@ init script:
|
||||
else "characters visible character"
|
||||
}
|
||||
# Default symbols
|
||||
symbol_default := {
|
||||
if keyword_sort_plot_twist(card.rule_text) != "" then "ongoing"
|
||||
flightrange_detect := { if card.flightrange == "flight" then "flight"
|
||||
else if card.flightrange == "range" then "range"
|
||||
else if card.flightrange == "both" then "flight, range"
|
||||
else ""
|
||||
}
|
||||
ongoing_detect := {
|
||||
if keyword_sort_plot_twist(card.rule_text) != "" then "ongoing"
|
||||
else ""
|
||||
}
|
||||
symbol_default := { flightrange_detect() + (if flightrange_detect() != "" then ", " else " ") + ongoing_detect() }
|
||||
|
||||
# Default 'team' name of card
|
||||
team := {
|
||||
if is_location() then "Location"
|
||||
@@ -624,12 +631,6 @@ card field:
|
||||
choice: range
|
||||
choice: ongoing
|
||||
default: symbol_default()
|
||||
script:
|
||||
if card.flightrange=="flight" then "flight"
|
||||
else if card.flightrange=="range" then "range"
|
||||
else if card.flightrange=="both" then "flight, range"
|
||||
else if card.flightrange=="none" then ""
|
||||
else (value)
|
||||
description: Symbols for this card (flight/range/ongoing), multiple symbols can be selected
|
||||
show statistics: false
|
||||
############################# Text box
|
||||
@@ -725,7 +726,7 @@ card field:
|
||||
choice: none
|
||||
choice: ongoing
|
||||
initial: none
|
||||
script: symbol_default()
|
||||
script: ongoing_detect()
|
||||
description: Ongoing icons for the card.
|
||||
card field:
|
||||
type: choice
|
||||
@@ -1072,7 +1073,7 @@ pack type:
|
||||
pack type:
|
||||
name: additional random non-rare foil
|
||||
item:
|
||||
name: random foil
|
||||
name: random non-rare foil
|
||||
############################################################## Keywords
|
||||
############################# Keyword rules
|
||||
|
||||
|
||||
Reference in New Issue
Block a user