Commit 232a90c2 authored by pichoro's avatar pichoro

Synchro Monsters for Yu-Gi-Oh.

parent ab2e0c38
...@@ -4,10 +4,10 @@ short name: Standard ...@@ -4,10 +4,10 @@ short name: Standard
icon: card-sample.png icon: card-sample.png
position hint: 01 position hint: 01
version: 2008-01-18 version: 2008-05-14
depends on: depends on:
package: yugioh.mse-game package: yugioh.mse-game
version: 2008-01-18 version: 2008-05-14
depends on: depends on:
package: yugioh-standard-levels.mse-symbol-font package: yugioh-standard-levels.mse-symbol-font
version: 2007-09-23 version: 2007-09-23
...@@ -59,6 +59,7 @@ card style: ...@@ -59,6 +59,7 @@ card style:
normal monster: card-normal.jpg normal monster: card-normal.jpg
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
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
......
...@@ -3,7 +3,7 @@ short name: Yu-Gi-Oh! ...@@ -3,7 +3,7 @@ short name: Yu-Gi-Oh!
icon: card-back.png icon: card-back.png
position hint: 4 position hint: 4
version: 2008-01-19 version: 2008-05-14
############################################################## 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
...@@ -114,6 +114,7 @@ init script: ...@@ -114,6 +114,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 == "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
card.card_type == "obelisk" or card.card_type == "obelisk" or
...@@ -148,12 +149,13 @@ init script: ...@@ -148,12 +149,13 @@ init script:
else if chosen(choice:"slifer", type) then "D" else if chosen(choice:"slifer", type) then "D"
else if chosen(choice:"ritual monster", type) then "E" else if chosen(choice:"ritual monster", type) then "E"
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:"synchro monster", type) then "G"
else if chosen(choice:"token monster", type) then "H" else if chosen(choice:"fusion monster", type) then "H"
else if chosen(choice:"legendary dragons", type) then "I" else if chosen(choice:"token monster", type) then "I"
else if chosen(choice:"spell card", type) then "J" else if chosen(choice:"legendary dragons", type) then "J"
else if chosen(choice:"trap card", type) then "K" else if chosen(choice:"spell card", type) then "K"
else "L" else if chosen(choice:"trap card", type) then "L"
else "M"
} }
pos_of_card := { pos_of_card := {
...@@ -166,7 +168,6 @@ init script: ...@@ -166,7 +168,6 @@ init script:
} }
############################################################## Set fields ############################################################## Set fields
set field: set field:
type: info type: info
name: Set Information name: Set Information
...@@ -195,18 +196,13 @@ set field: ...@@ -195,18 +196,13 @@ set field:
type: text type: text
name: copyright name: copyright
description: Copyright information. This will not appear on the card. description: Copyright information. This will not appear on the card.
############################# Default style ############################# Default style
default set style: default set style:
title: title:
padding left: 2 padding left: 2
font: font:
size: 16 size: 16
############################################################## Card fields ############################################################## Card fields
############################# Background stuff ############################# Background stuff
card field: card field:
type: choice type: choice
...@@ -214,6 +210,7 @@ card field: ...@@ -214,6 +210,7 @@ card field:
choice: normal monster choice: normal monster
choice: effect monster choice: effect monster
choice: ritual monster choice: ritual monster
choice: synchro monster
choice: fusion monster choice: fusion monster
choice: token monster choice: token monster
choice: obelisk choice: obelisk
...@@ -227,6 +224,7 @@ card field: ...@@ -227,6 +224,7 @@ card field:
normal monster: rgb(120,18,0) normal monster: rgb(120,18,0)
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)
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)
...@@ -243,7 +241,6 @@ card field: ...@@ -243,7 +241,6 @@ card field:
choice: holo image choice: holo image
choice: secret holo image choice: secret holo image
choice: parallel holo card choice: parallel holo card
############################# Name line ############################# Name line
card field: card field:
type: text type: text
...@@ -279,7 +276,6 @@ card field: ...@@ -279,7 +276,6 @@ card field:
type: image type: image
name: image name: image
show statistics: false show statistics: false
############################# Card type ############################# Card type
card field: card field:
type: text type: text
...@@ -309,7 +305,6 @@ card field: ...@@ -309,7 +305,6 @@ card field:
) )
card list visible: true card list visible: true
card list column: 3 card list column: 3
############################# Edition and Card ID ############################# Edition and Card ID
card field: card field:
type: text type: text
...@@ -333,7 +328,6 @@ card field: ...@@ -333,7 +328,6 @@ card field:
name: edition name: edition
default: set.edition default: set.edition
show statistics: false show statistics: false
############################# Text box ############################# Text box
card field: card field:
type: text type: text
...@@ -358,7 +352,6 @@ card field: ...@@ -358,7 +352,6 @@ card field:
combined_editor(field1: card.rules, separator: "<line>\n</>", field2: card.flavor) combined_editor(field1: card.rules, separator: "<line>\n</>", field2: card.flavor)
else else
forward_editor(field: card.rules) forward_editor(field: card.rules)
############################# Attack/Defense ############################# Attack/Defense
card field: card field:
type: text type: text
...@@ -391,10 +384,8 @@ card field: ...@@ -391,10 +384,8 @@ card field:
script: copyright_filter(value) script: copyright_filter(value)
show statistics: false show statistics: false
############################################################## Word lists ############################################################## Word lists
# Doesn't do anything yet # Doesn't do anything yet
#word list: #word list:
# name: type # name: type
# word: Dragon # word: Dragon
...@@ -425,4 +416,3 @@ card field: ...@@ -425,4 +416,3 @@ card field:
# word: Fusion # word: Fusion
# word: Ritual # word: Ritual
# word: Divine # word: Divine
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