Commit 3e4f14a3 authored by Nemo Ma's avatar Nemo Ma

INFDEV42

Additions since INFDEV37
+Link Spell/Traps, enable this by making the Spell/Trap first, then enabling `is link card` in Style tab.
+Speed Duel format watermark, enable this by enabling `is speed duel` in Style tab.
+Skill Card Template

Skill Card Template provided by `Buchou-san#6229`

Bugfixes:
= Fixed the bug that the template won't regocnize Normal Card Types. Also added "Normal" to the wordlist dropdown.
parent ac297d3a
This diff is collapsed.
......@@ -26,6 +26,7 @@ card field:
choice: spell card
choice: trap card
choice: trell card
choice: skill card
default: card_type()
choice colors cardlist:
normal monster : rgb(197,179,53)
......@@ -48,6 +49,7 @@ card field:
link monster : rgb(89,89,171)
spell card : rgb(67,161,99)
trap card : rgb(148,54,128)
skill card : rgb(95,95,171)
card field:
type: choice
name: foils
......@@ -61,6 +63,12 @@ card field:
choice: star holo image
choice: mosaic holo image
default: foil()
card field:
type: choice
name: sdoverlay
editable: false
choice: none
choice: sdoverlay image
############################# Link Marker Border
card field:
......
......@@ -5,7 +5,7 @@ installer group: Yugioh/game files
icon: card-back.png
position hint: 4
version: 2017-06-26
version: 2018-11-03
############################################################## The script
......@@ -44,5 +44,6 @@ card list color script:
else if input == "link monster" then rgb(89,89,171)
else if input == "spell card" then rgb(67,161,99)
else if input == "trap card" then rgb(148,54,128)
else if input == "skill card" then rgb(95,95,171)
else rgb(0,0,0)
\ No newline at end of file
......@@ -109,6 +109,8 @@
else if contains(card.monster_type, match:"Toon") then "effect monster"
else if contains(card.monster_type, match:"Flip") then "effect monster"
else if contains(card.monster_type, match:"Effect") then "effect monster"
else if contains(card.monster_type, match:"Normal") then "normal monster"
else if contains(card.monster_type, match:"Skill") then "skill card"
else "normal monster"
}
# Default 'attribute' of card
......
......@@ -106,6 +106,7 @@ word list:
word: サイバース族
word list:
name: card
word: Normal
word: Dark Synchro
word: Dark Tuner
word: Effect
......@@ -122,6 +123,8 @@ word list:
word: Union
word: Xyz
word: Link
word: Skill
word: 通常
word: 同调
word: 超量
word: 融合
......@@ -140,6 +143,7 @@ word list:
word: 特殊召唤
word: 衍生物
word: 万魔
word: 通常
word: 同調
word: 超量
word: 融合
......
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