mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 21:47:00 -04:00
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1230 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
+24
-14
@@ -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:
|
|||||||
}
|
}
|
||||||
|
|
||||||
############################################################## 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:
|
|||||||
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:
|
|||||||
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:
|
|||||||
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:
|
|||||||
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,
|
||||||
|
|||||||
Reference in New Issue
Block a user