Commit 1ed8726c authored by artfreakwiu's avatar artfreakwiu

No commit message

No commit message
parent 311cd2fb
...@@ -202,7 +202,7 @@ card style: ...@@ -202,7 +202,7 @@ card style:
script: if is_nmonster() then 92 else 62 script: if is_nmonster() then 92 else 62
font: font:
name: MatrixBook name: MatrixBook
size: 9 size: 8
scale down to: 4 scale down to: 4
color: rgb(0,0,0) color: rgb(0,0,0)
symbol font: symbol font:
...@@ -214,7 +214,7 @@ card style: ...@@ -214,7 +214,7 @@ card style:
padding left: 1 padding left: 1
padding top: 2 padding top: 2
padding right: 0 padding right: 0
padding bottom: 1 padding bottom: 0
line height hard: 1.0 line height hard: 1.0
line height line: 1.0 line height line: 1.0
line height soft: 0.9 line height soft: 0.9
...@@ -236,7 +236,7 @@ card style: ...@@ -236,7 +236,7 @@ card style:
symbol font: symbol font:
name: yugioh-text-replacements name: yugioh-text-replacements
alignment: middle center alignment: middle center
size: 8 size: 6
visible: script: if is_nmonster() then false else true visible: script: if is_nmonster() then false else true
defense: defense:
z index: 4 z index: 4
...@@ -254,20 +254,20 @@ card style: ...@@ -254,20 +254,20 @@ card style:
symbol font: symbol font:
name: yugioh-text-replacements name: yugioh-text-replacements
alignment: middle center alignment: middle center
size: 8 size: 6
visible: script: if is_nmonster() then false else true visible: script: if is_nmonster() then false else true
############################# Card sorting / numbering ############################# Card sorting / numbering
############################# Copyright stuff ############################# Copyright stuff
gamecode: gamecode:
left: 16 left: 16
top : 495 top : 494
width: 96 width: 96
height: 18 height: 18
alignment: middle left alignment: middle left
z index: 2 z index: 2
font: font:
name: Palatino Linotype name: Palatino Linotype
size: 7 size: 8
color: rgb(0,0,0) color: rgb(0,0,0)
copyright: copyright:
left: { if styling.corner_stamp=="no" then 202 else 180 } left: { if styling.corner_stamp=="no" then 202 else 180 }
......
...@@ -17,6 +17,11 @@ symbol: ...@@ -17,6 +17,11 @@ symbol:
symbol: symbol:
code: @ code: @
image: infinity.png image: infinity.png
image font size: 25
symbol:
code: ?
image: qmark.png
image font size: 32
symbol: symbol:
code: * code: *
image: dot.png image: dot.png
...@@ -27,4 +32,5 @@ insert symbol menu: ...@@ -27,4 +32,5 @@ insert symbol menu:
item: [ item: [
item: ] item: ]
item: @ item: @
item: ?
item: * item: *
...@@ -36,7 +36,7 @@ init script: ...@@ -36,7 +36,7 @@ init script:
) + ) +
# step 4 : symbols # step 4 : symbols
replace_rule( replace_rule(
match: "[|@|*|]", match: "[|@|*|?|]",
replace: "<sym-auto>&</sym-auto>" ); replace: "<sym-auto>&</sym-auto>" );
level_filter := level_filter :=
# step 1 : remove all automatic tags # step 1 : remove all automatic tags
...@@ -48,9 +48,13 @@ init script: ...@@ -48,9 +48,13 @@ init script:
a_and_d_filter := a_and_d_filter :=
# step 1 : remove all automatic tags # step 1 : remove all automatic tags
tag_remove_rule(tag: "<sym-auto>") + tag_remove_rule(tag: "<sym-auto>") +
# step 2 : symbols # step 2 : infinity
replace_rule( replace_rule(
match: "@", match: "@",
replace: "<sym-auto>&</sym-auto>" ) +
# step 3 : question mark
replace_rule(
match: "\\?",
replace: "<sym-auto>&</sym-auto>" ); replace: "<sym-auto>&</sym-auto>" );
copyright_filter := copyright_filter :=
# step 1 : trademark symbol # step 1 : trademark symbol
......
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