dungeon fix, update stamp support
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
############################################################## Card fields
|
||||
|
||||
############################# Automatic fields
|
||||
|
||||
# The 'shape' of the card (flip, split, etc.)
|
||||
card field:
|
||||
type: choice
|
||||
@@ -138,7 +137,9 @@ card field:
|
||||
icon: stats/card_symbol.png
|
||||
choice: none
|
||||
choice: tombstone
|
||||
description: Symbol for this card (tombstone)
|
||||
choice: alchemy
|
||||
choice: alchemy old
|
||||
description: Symbol for this card
|
||||
card field:
|
||||
type: choice
|
||||
name: type symbol
|
||||
@@ -499,7 +500,7 @@ card field:
|
||||
name: set code
|
||||
editable: false
|
||||
save value: false
|
||||
script: (if is_masterpiece() then set.masterpiece_set_code else set.set_code) + " • " + set.set_language
|
||||
script: (if is_masterpiece() then set.masterpiece_set_code else set.set_code) + (if set.set_language != "" then " • " + set.set_language else "")
|
||||
show statistics: false
|
||||
card field:
|
||||
type: text
|
||||
@@ -539,7 +540,18 @@ card field:
|
||||
else
|
||||
forward_editor(field: card.copyright)
|
||||
description: Copyright of this card and cardnumber, the default value can be changed on the 'set info' tab
|
||||
|
||||
card field:
|
||||
type: choice
|
||||
name: card stamp
|
||||
choice: standard
|
||||
choice: none
|
||||
choice: acorn
|
||||
choice: universes beyond
|
||||
choice: alchemy
|
||||
choice: alchemy old
|
||||
choice: custom
|
||||
default: set.default_stamp
|
||||
description: The stamp style for this card.
|
||||
############################################################## Duplicate fields (split/flip cards)
|
||||
# Based on flip templates by Wolfwood
|
||||
# These are a direct copy of the fields above, only with a 2
|
||||
@@ -633,8 +645,10 @@ card field:
|
||||
icon: stats/card_symbol.png
|
||||
choice: none
|
||||
choice: tombstone
|
||||
choice: alchemy
|
||||
choice: alchemy old
|
||||
show statistics: false
|
||||
description: The card symbol of the card (Tombstone)
|
||||
description: The card symbol of the card
|
||||
card field:
|
||||
type: choice
|
||||
name: type symbol 2
|
||||
@@ -999,7 +1013,7 @@ card field:
|
||||
name: set code 2
|
||||
editable: false
|
||||
save value: false
|
||||
script: (if is_masterpiece() then set.masterpiece_set_code else set.set_code) + " • " + set.set_language
|
||||
script: (if is_masterpiece() then set.masterpiece_set_code else set.set_code) + (if set.set_language != "" then " • " + set.set_language else "")
|
||||
show statistics: false
|
||||
card field:
|
||||
type: text
|
||||
@@ -1086,6 +1100,34 @@ card field:
|
||||
show statistics: false
|
||||
multi line: true
|
||||
description: The fifteenth level text for the card
|
||||
card field:
|
||||
type: text
|
||||
name: level 16 text
|
||||
script: text_filter(input: value, card_name: if set.alias_as_cardname and card.alias_2 != "" then card.alias_2 else card.name_2, margin_code:"lv16")
|
||||
show statistics: false
|
||||
multi line: true
|
||||
description: The sixteenth level text for the card
|
||||
card field:
|
||||
type: text
|
||||
name: level 17 text
|
||||
script: text_filter(input: value, card_name: if set.alias_as_cardname and card.alias_2 != "" then card.alias_2 else card.name_2, margin_code:"lv17")
|
||||
show statistics: false
|
||||
multi line: true
|
||||
description: The seventeenth level text for the card
|
||||
card field:
|
||||
type: text
|
||||
name: level 18 text
|
||||
script: text_filter(input: value, card_name: if set.alias_as_cardname and card.alias_2 != "" then card.alias_2 else card.name_2, margin_code:"lv18")
|
||||
show statistics: false
|
||||
multi line: true
|
||||
description: The eighteenth level text for the card
|
||||
card field:
|
||||
type: text
|
||||
name: level 19 text
|
||||
script: text_filter(input: value, card_name: if set.alias_as_cardname and card.alias_2 != "" then card.alias_2 else card.name_2, margin_code:"lv19")
|
||||
show statistics: false
|
||||
multi line: true
|
||||
description: The nineteenth level text for the card
|
||||
card field:
|
||||
type: text
|
||||
name: level 5
|
||||
|
||||
Reference in New Issue
Block a user