Commit 43d6c3f6 authored by artfreakwiu's avatar artfreakwiu

No commit message

No commit message
parent 1b7bd061
...@@ -227,10 +227,13 @@ init script: ...@@ -227,10 +227,13 @@ init script:
if contains(set.logo, match: "Marvel") then ( if contains(set.logo, match: "Marvel") then (
if is_character() and card.identity=="" then "™" if is_character() and card.identity=="" then "™"
else if is_character() and card.identity!="" then "™ <sym>•</sym> " else if is_character() and card.identity!="" then "™ <sym>•</sym> "
else if is_equipment() and card.identity=="" then " "
else if is_equipment() and card.identity!="" then " <sym>•</sym> " else if is_equipment() and card.identity!="" then " <sym>•</sym> "
else "" else ""
) )
else if is_character() and card.identity=="" then " "
else if is_character() and card.identity!="" then " <sym>•</sym> " else if is_character() and card.identity!="" then " <sym>•</sym> "
else if is_equipment() and card.identity=="" then " "
else if is_equipment() and card.identity!="" then " <sym>•</sym> " else if is_equipment() and card.identity!="" then " <sym>•</sym> "
else "" else ""
} }
...@@ -251,10 +254,21 @@ init script: ...@@ -251,10 +254,21 @@ init script:
} }
############################################################## Set fields ############################################################## Set fields
set field:
type: info
name: Set Information
set field: set field:
type: text type: text
name: title name: title
description: This information will not appear on the card. description: This information will not appear on the card.
set field:
type: text
name: description
multi line: true
description: This information will not appear on the card.
set field:
type: info
name: Set Logo Options
set field: set field:
type: choice type: choice
name: logo name: logo
...@@ -272,23 +286,21 @@ set field: ...@@ -272,23 +286,21 @@ set field:
name: custom logo name: custom logo
save value: true save value: true
description: This is where you load custom logos that will appear on all your cards. description: This is where you load custom logos that will appear on all your cards.
set field:
type: info
name: Other Default Options
set field: set field:
type: text type: text
name: code name: code
description: Recommended only 3 Capital digits. Will appear before card number. ex: MOR-1 description: Recommended only 3 Capital digits. Will appear before card number. ex: MOR-1
set field:
type: text
name: description
multi line: true
description: This information will not appear on the card.
set field: set field:
type: text type: text
name: artist name: artist
description: Editting this will set 1 artist for all the cards and will appear in the artist bar below the picture. description: Editting this will set 1 artist for all the cards and will appear in the illustrator area.
set field: set field:
type: text type: text
name: copyright name: copyright
description: Copytight information. This information will not appear on the card. description: Copytight information. This information will appear in the copyright area on the card.
set field: set field:
type: choice type: choice
name: set rarity name: set rarity
...@@ -317,6 +329,10 @@ set field: ...@@ -317,6 +329,10 @@ set field:
description: Should card numbers be shown on the cards? description: Should card numbers be shown on the cards?
############################# Default style ############################# Default style
default set style: default set style:
title:
padding left: 2
font:
size: 14
logo: logo:
font: font:
size: 16 size: 16
...@@ -388,12 +404,6 @@ card field: ...@@ -388,12 +404,6 @@ card field:
name: name name: name
editable: false editable: false
show statistics: false show statistics: false
card field:
type: text
name: sep
editable: false
script: name_sep()
show statistics: false
card field: card field:
type: text type: text
name: identity name: identity
...@@ -404,7 +414,7 @@ card field: ...@@ -404,7 +414,7 @@ card field:
script: script:
combined_editor( combined_editor(
field1: card.name, field1: card.name,
separator: card.sep, separator: name_sep(),
field2: card.identity, field2: card.identity,
soft_before_empty: false, soft_before_empty: false,
hide_when_empty: false, hide_when_empty: false,
......
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