Commit 1137fc1b authored by artfreakwiu's avatar artfreakwiu

No commit message

No commit message
parent 997f0869
mse version: 0.3.6 mse version: 0.3.6
version: 2008-05-19 version: 2008-10-27
short name: Standard short name: Standard
position hint: 001 position hint: 001
icon: star.png icon: star.png
...@@ -38,6 +38,10 @@ symbol: ...@@ -38,6 +38,10 @@ symbol:
code: * code: *
image: star.png image: star.png
image font size: 20 image font size: 20
symbol:
code: ^
image: dstar.png
image font size: 20
############################################################## ##############################################################
# Insert-symbol menu # Insert-symbol menu
...@@ -51,3 +55,4 @@ insert symbol menu: ...@@ -51,3 +55,4 @@ insert symbol menu:
item: [ item: [
item: ] item: ]
item: * item: *
item: ^
...@@ -5,13 +5,13 @@ installer group: Yugioh/Standard ...@@ -5,13 +5,13 @@ installer group: Yugioh/Standard
icon: card-sample.png icon: card-sample.png
position hint: 01 position hint: 01
version: 2008-08-10 version: 2008-10-27
depends on: depends on:
package: yugioh.mse-game package: yugioh.mse-game
version: 2008-08-10 version: 2008-10-27
depends on: depends on:
package: yugioh-standard-levels.mse-symbol-font package: yugioh-standard-levels.mse-symbol-font
version: 2007-09-23 version: 2007-10-27
depends on: depends on:
package: yugioh-text-replacements.mse-symbol-font package: yugioh-text-replacements.mse-symbol-font
version: 2008-01-04 version: 2008-01-04
...@@ -46,6 +46,7 @@ card style: ...@@ -46,6 +46,7 @@ card style:
effect monster: card-effect.jpg effect monster: card-effect.jpg
ritual monster: card-ritual.jpg ritual monster: card-ritual.jpg
synchro monster: card-synchro.jpg synchro monster: card-synchro.jpg
dark synchro monster: card-dsynchro.jpg
fusion monster: card-fusion.jpg fusion monster: card-fusion.jpg
token monster: card-token.jpg token monster: card-token.jpg
obelisk: card-obelisk.jpg obelisk: card-obelisk.jpg
...@@ -116,7 +117,7 @@ card style: ...@@ -116,7 +117,7 @@ card style:
height: 28 height: 28
width: {if is_nmonster() then 275 else 280 } width: {if is_nmonster() then 275 else 280 }
z index: 2 z index: 2
alignment: middle right alignment: { if card.card_type=="dark synchro monster" then "middle left" else "middle right" }
font: font:
name: MatrixBoldSmallCaps name: MatrixBoldSmallCaps
italic name: Matrix italic name: Matrix
......
...@@ -4,7 +4,7 @@ installer group: Yugioh/Game Files ...@@ -4,7 +4,7 @@ installer group: Yugioh/Game Files
icon: card-back.png icon: card-back.png
position hint: 4 position hint: 4
version: 2008-08-10 version: 2008-10-27
############################################################## Functions & filters ############################################################## Functions & filters
## Copied and Pasted from vs.mse-game, with a few modifications ## Copied and Pasted from vs.mse-game, with a few modifications
...@@ -43,7 +43,7 @@ init script: ...@@ -43,7 +43,7 @@ init script:
tag_remove_rule(tag: "<sym-auto>") + tag_remove_rule(tag: "<sym-auto>") +
# step 2 : symbols # step 2 : symbols
replace_rule( replace_rule(
match: "[|%|!|+|&|$|#|*|]", match: "[|%|!|+|&|$|#|*|^|]",
replace: "<sym-auto>&</sym-auto>" ); replace: "<sym-auto>&</sym-auto>" );
a_and_d_filter := a_and_d_filter :=
# step 1 : remove all automatic tags # step 1 : remove all automatic tags
...@@ -98,6 +98,8 @@ init script: ...@@ -98,6 +98,8 @@ init script:
else if card.type1 == "<word-list-monster>Legendary Dragon</word-list-monster>" then "legendary dragons" else if card.type1 == "<word-list-monster>Legendary Dragon</word-list-monster>" then "legendary dragons"
else if contains(card.type2, match:"Fusion") then "fusion monster" else if contains(card.type2, match:"Fusion") then "fusion monster"
else if contains(card.type2, match:"Ritual") then "ritual monster" else if contains(card.type2, match:"Ritual") then "ritual monster"
else if contains(card.type2, match:"Dark Synchro") then "dark synchro monster"
else if contains(card.type2, match:"Dark Tuner") then "effect monster"
else if contains(card.type2, match:"Synchro") then "synchro monster" else if contains(card.type2, match:"Synchro") then "synchro monster"
else if contains(card.type2, match:"Effect") then "effect monster" else if contains(card.type2, match:"Effect") then "effect monster"
else if contains(card.type2, match:"Spirit") then "effect monster" else if contains(card.type2, match:"Spirit") then "effect monster"
...@@ -138,6 +140,7 @@ init script: ...@@ -138,6 +140,7 @@ init script:
card.card_type == "normal monster" or card.card_type == "normal monster" or
card.card_type == "effect monster" or card.card_type == "effect monster" or
card.card_type == "ritual monster" or card.card_type == "ritual monster" or
card.card_type == "dark synchro monster" or
card.card_type == "synchro monster" or card.card_type == "synchro monster" or
card.card_type == "fusion monster" or card.card_type == "fusion monster" or
card.card_type == "token monster" or card.card_type == "token monster" or
...@@ -178,11 +181,12 @@ init script: ...@@ -178,11 +181,12 @@ init script:
else if chosen(choice:"obelisk", type) then "F" else if chosen(choice:"obelisk", type) then "F"
else if chosen(choice:"fusion monster", type) then "G" else if chosen(choice:"fusion monster", type) then "G"
else if chosen(choice:"synchro monster", type) then "H" else if chosen(choice:"synchro monster", type) then "H"
else if chosen(choice:"token monster", type) then "I" else if chosen(choice:"dark synchro monster", type) then "I"
else if chosen(choice:"legendary dragons", type) then "J" else if chosen(choice:"token monster", type) then "J"
else if chosen(choice:"spell card", type) then "K" else if chosen(choice:"legendary dragons", type) then "K"
else if chosen(choice:"trap card", type) then "L" else if chosen(choice:"spell card", type) then "L"
else "M" else if chosen(choice:"trap card", type) then "M"
else "N"
} }
pos_of_card := { pos_of_card := {
...@@ -243,6 +247,7 @@ card field: ...@@ -243,6 +247,7 @@ card field:
choice: effect monster choice: effect monster
choice: ritual monster choice: ritual monster
choice: synchro monster choice: synchro monster
choice: dark synchro monster
choice: fusion monster choice: fusion monster
choice: token monster choice: token monster
choice: obelisk choice: obelisk
...@@ -257,6 +262,7 @@ card field: ...@@ -257,6 +262,7 @@ card field:
effect monster: rgb(120,18,0) effect monster: rgb(120,18,0)
ritual monster: rgb(26,26,26) ritual monster: rgb(26,26,26)
synchro monster: rgb(26,26,26) synchro monster: rgb(26,26,26)
dark synchro monster: rgb(26,26,26)
fusion monster: rgb(26,26,26) fusion monster: rgb(26,26,26)
token monster: rgb(120,18,0) token monster: rgb(120,18,0)
obelisk: rgb(26,26,26) obelisk: rgb(26,26,26)
...@@ -454,6 +460,7 @@ word list: ...@@ -454,6 +460,7 @@ word list:
word: Machine word: Machine
word: Plant word: Plant
word: Pyro word: Pyro
word: Psychic
word: Reptile word: Reptile
word: Rock word: Rock
word: Sea Serpent word: Sea Serpent
...@@ -464,6 +471,8 @@ word list: ...@@ -464,6 +471,8 @@ word list:
word: Zombie word: Zombie
word list: word list:
name: card name: card
word: Dark Synchro
word: Dark Tuner
word: Effect word: Effect
word: Fusion word: Fusion
word: Ritual word: Ritual
......
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