mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-13 05:57:00 -04:00
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1130 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -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:
|
|||||||
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:
|
|||||||
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:
|
|||||||
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 }
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 780 B |
@@ -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:
|
|||||||
item: [
|
item: [
|
||||||
item: ]
|
item: ]
|
||||||
item: @
|
item: @
|
||||||
|
item: ?
|
||||||
item: *
|
item: *
|
||||||
|
|||||||
@@ -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:
|
|||||||
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
|
||||||
|
|||||||
Reference in New Issue
Block a user