Commit fb8e4b7d authored by 不如归去's avatar 不如归去 Committed by GitHub

Merge pull request #2 from 247321453/master

Merge From Source.
parents 4e75f302 a58bf06e
/update/version_new.txt
...@@ -7,7 +7,7 @@ installer group: Yugioh/Symbol Fonts/Level Symbols ...@@ -7,7 +7,7 @@ installer group: Yugioh/Symbol Fonts/Level Symbols
# Symbol font for level symbols # Symbol font for level symbols
image font size: 16 image font size: 16
horizontal space: 0 horizontal space: 3
symbol: symbol:
code: % code: %
...@@ -74,7 +74,7 @@ symbol: ...@@ -74,7 +74,7 @@ symbol:
code: * code: *
image: dstar.png image: dstar.png
enabled: {card.card_type == "dark synchro monster"} enabled: {card.card_type == "dark synchro monster"}
image font size: 17.95 image font size: 16.5
symbol: symbol:
code: * code: *
image: xyzstar.png image: xyzstar.png
......
This diff is collapsed.
...@@ -12,6 +12,7 @@ card field: ...@@ -12,6 +12,7 @@ card field:
choice: fusion monster choice: fusion monster
choice: token monster choice: token monster
choice: xyz monster choice: xyz monster
choice: link monster
choice: obelisk choice: obelisk
choice: slifer choice: slifer
choice: ra choice: ra
...@@ -130,6 +131,11 @@ card field: ...@@ -130,6 +131,11 @@ card field:
name: type 4 name: type 4
script: card_class_filter(value) script: card_class_filter(value)
default: if contains(card.type2, match:get_sep()) then split_text(match:get_sep(), card.type2).2 else "" # Remove when card.type2 is removed. default: if contains(card.type2, match:get_sep()) then split_text(match:get_sep(), card.type2).2 else "" # Remove when card.type2 is removed.
card field:
type: text
name: type 5
script: card_class_filter(value)
default: if contains(card.type2, match:get_sep()) then split_text(match:get_sep(), card.type3).3 else "" # Remove when card.type2 is removed.
card field: card field:
type: text type: text
name: monster type name: monster type
...@@ -147,6 +153,8 @@ card field: ...@@ -147,6 +153,8 @@ card field:
field3: card.type_3, field3: card.type_3,
separator3: get_sep(), separator3: get_sep(),
field4: card.type_4, field4: card.type_4,
separator4: get_sep(),
field5: card.type_5,
soft_before_empty: true, soft_before_empty: true,
hide_when_empty: true hide_when_empty: true
) )
...@@ -159,6 +167,8 @@ card field: ...@@ -159,6 +167,8 @@ card field:
field3: card.type_3, field3: card.type_3,
separator3: get_sepex(card.type_4), separator3: get_sepex(card.type_4),
field4: card.type_4, field4: card.type_4,
separator4: get_sepex(card.type_5),
field5: card.type_5,
prefix: if remove_tags(card.type_1)==" " then "" else if is_jp() then "【" else if is_en() then "[" else "<sym-auto>[</sym-auto>", prefix: if remove_tags(card.type_1)==" " then "" else if is_jp() then "【" else if is_en() then "[" else "<sym-auto>[</sym-auto>",
suffix: if remove_tags(card.type_1)==" " then "" else if is_jp() then "】" else if is_en() then "]" else "<sym-auto>]</sym-auto>", suffix: if remove_tags(card.type_1)==" " then "" else if is_jp() then "】" else if is_en() then "]" else "<sym-auto>]</sym-auto>",
soft_before_empty: true, soft_before_empty: true,
...@@ -237,6 +247,63 @@ card field: ...@@ -237,6 +247,63 @@ card field:
name: pendulum scale 2 name: pendulum scale 2
save value: true save value: true
show statistics: false show statistics: false
############################# Link Markers
card field:
type: choice
name: Link Marker Up
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker UL
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker UR
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker Down
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker DL
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker DR
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker Left
choice: none
choice: yes
save value: yes
show statistics: false
card field:
type: choice
name: Link Marker Right
choice: none
choice: yes
save value: yes
show statistics: false
############################# Attack/Defense ############################# Attack/Defense
card field: card field:
type: text type: text
...@@ -258,6 +325,16 @@ card field: ...@@ -258,6 +325,16 @@ card field:
card list width: 33 card list width: 33
card list name: DEF card list name: DEF
description: & = unlimited 无限 description: & = unlimited 无限
############################ Link
card field:
type: text
name: link number
save value: true
script: a_and_d_filter(value)
card list visible: true
card list column: 5
card list name: Link
card list width: 33
############################# Copyright stuff ############################# Copyright stuff
card field: card field:
type: choice type: choice
...@@ -278,7 +355,7 @@ card field: ...@@ -278,7 +355,7 @@ card field:
choice: promo choice: promo
card list visible: true card list visible: true
card list column: 7 card list column: 7
description: Ratity.罕见度 description: Rarity.罕见度
card field: card field:
type: choice type: choice
name: corner foil name: corner foil
...@@ -324,6 +401,13 @@ card field: ...@@ -324,6 +401,13 @@ card field:
editable: false editable: false
default: small_type(card.type_4) default: small_type(card.type_4)
save value: false save value: false
card field:
type: text
name: small type 5
show statistics: false
editable: false
default: small_type(card.type_5)
save value: false
############################ ############################
card field: card field:
type: text type: text
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
is_12star :={ remove_tags(card.level) == "************" } is_12star :={ remove_tags(card.level) == "************" }
is_13star :={ remove_tags(card.level) == "*************" } is_13star :={ remove_tags(card.level) == "*************" }
is_blmonster := {card.card_type == "dark synchro monster" or card.card_type == "xyz monster"} is_blmonster := {card.card_type == "dark synchro monster" or card.card_type == "xyz monster"}
is_link := {card.card_type == "link monster"}
is_tw := { set.language == "TW" } is_tw := { set.language == "TW" }
is_cn := { set.language == "CN" } is_cn := { set.language == "CN" }
is_en := { set.language == "EN" } is_en := { set.language == "EN" }
...@@ -10,6 +11,7 @@ ...@@ -10,6 +11,7 @@
is_ko := { set.language == "KO" } is_ko := { set.language == "KO" }
hide_gamecode := {set.hide_gamecode == "yes"} hide_gamecode := {set.hide_gamecode == "yes"}
hide_foil := {set.hide_foil == "yes"}
st_has_text :={ set.ST_mark_is_text=="yes"} st_has_text :={ set.ST_mark_is_text=="yes"}
get_sep := {if is_en() or is_ko() then " / " else if is_cn()then "<i>/</i>" else "/" } get_sep := {if is_en() or is_ko() then " / " else if is_cn()then "<i>/</i>" else "/" }
......
...@@ -12,7 +12,7 @@ set field: ...@@ -12,7 +12,7 @@ set field:
set field: set field:
type: choice type: choice
name: language name: language
initial: TW initial: EN
choice: CN choice: CN
choice: TW choice: TW
choice: JP choice: JP
...@@ -22,18 +22,13 @@ set field: ...@@ -22,18 +22,13 @@ set field:
set field: set field:
type: text type: text
name: edition name: edition
default: "MSE Edition" default: "LIMITED Edition"
description: such as "DUEL TERMINAL" description: such as "DUEL TERMINAL"
set field: set field:
type: text type: text
name: author name: author
default: "Your Name" default: "AntiMetaman"
description: 247321453 description: 247321453
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: copyright name: copyright
...@@ -56,11 +51,31 @@ set field: ...@@ -56,11 +51,31 @@ set field:
name: hide gamecode name: hide gamecode
description: 隐藏密码,最好先写好密码,再导出的时候再设置这个 description: 隐藏密码,最好先写好密码,再导出的时候再设置这个
initial: no initial: no
set field:
type: boolean
name: hide copyright
description: 隐藏密码,最好先写好密码,再导出的时候再设置这个
initial: no
set field:
type: boolean
name: hide edition
description: 隐藏密码,最好先写好密码,再导出的时候再设置这个
initial: no
set field:
type: boolean
name: hide number
description: 隐藏密码,最好先写好密码,再导出的时候再设置这个
initial: false
set field:
type: boolean
name: hide foil
description: 隐藏密码,最好先写好密码,再导出的时候再设置这个
initial: false
set field: set field:
type: boolean type: boolean
name: ST mark is text name: ST mark is text
description: 魔法陷阱的符号带标志文字?用于OCG制作 description: 魔法陷阱的符号带标志文字?用于OCG制作
initial: no initial: yes
set field: set field:
type: boolean type: boolean
name: copyright images name: copyright images
...@@ -70,7 +85,7 @@ set field: ...@@ -70,7 +85,7 @@ set field:
type: boolean type: boolean
name: pendulum image is small name: pendulum image is small
description: pendulum image is small? Pendulum怪兽的中间图,不包含P的描述区域?用于YGOCORE description: pendulum image is small? Pendulum怪兽的中间图,不包含P的描述区域?用于YGOCORE
initial: no initial: yes
############################# Default style ############################# Default style
default set style: default set style:
Set Options: Set Options:
......
...@@ -25,6 +25,7 @@ word list: ...@@ -25,6 +25,7 @@ word list:
word: 幻神兽族 word: 幻神兽族
word: 创造神族 word: 创造神族
word: 幻龙族 word: 幻龙族
word: 电子界
word list: word list:
name: CNeffect name: CNeffect
word: 同调 word: 同调
...@@ -32,6 +33,7 @@ word list: ...@@ -32,6 +33,7 @@ word list:
word: 融合 word: 融合
word: 仪式 word: 仪式
word: 效果 word: 效果
word: 连接
word: 调整 word: 调整
word: 灵魂 word: 灵魂
word: 卡通 word: 卡通
......
...@@ -25,11 +25,14 @@ word list: ...@@ -25,11 +25,14 @@ word list:
word: Divine-Beast word: Divine-Beast
word: Created-Divine word: Created-Divine
word: Wyrm word: Wyrm
word: Cyberse
word: Charisma
word list: word list:
name: ENeffect name: ENeffect
word: Synchro word: Synchro
word: Xyz word: Xyz
word: Fusion word: Fusion
word: Link
word: Ritual word: Ritual
word: Effect word: Effect
word: Tuner word: Tuner
......
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