mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
14c118e86e
Changed default settings for Magic to more closely match real Magic sets. Minor adjustments to magic-new-split. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1339 0fc631ac-6414-0410-93d0-97cfa31319b6
51 lines
2.5 KiB
Plaintext
51 lines
2.5 KiB
Plaintext
|
|
add cards script:
|
|
name: &Basic Lands
|
|
description: Adds 5 basic lands to the set (Plains, Island, Swamp, Mountain, Forest)
|
|
script:
|
|
# TODO:
|
|
#show_yes_no_dialog("This set already contains basic lands, do you want to add more?")
|
|
[ new_card([name: "Plains", super_type: "Basic Land", sub_type: "Plains", rarity: "basic land", watermark: "mana symbol white"])
|
|
, new_card([name: "Island", super_type: "Basic Land", sub_type: "Island", rarity: "basic land", watermark: "mana symbol blue"])
|
|
, new_card([name: "Swamp", super_type: "Basic Land", sub_type: "Swamp", rarity: "basic land", watermark: "mana symbol black"])
|
|
, new_card([name: "Mountain", super_type: "Basic Land", sub_type: "Mountain", rarity: "basic land", watermark: "mana symbol red"])
|
|
, new_card([name: "Forest", super_type: "Basic Land", sub_type: "Forest", rarity: "basic land", watermark: "mana symbol green"])
|
|
]
|
|
|
|
add cards script:
|
|
name: &Basic Snow-Covered Lands
|
|
description: Adds 5 basic snow-covered lands to the set (Plains, Island, Swamp, Mountain, Forest)
|
|
script:
|
|
# TODO:
|
|
#show_yes_no_dialog("This set already contains basic snow-covered lands, do you want to add more?")
|
|
[ new_card([name: "Snow-Covered Plains", super_type: "Basic Snow Land", sub_type: "Plains", rarity: "common", watermark: "mana symbol white"])
|
|
, new_card([name: "Snow-Covered Island", super_type: "Basic Snow Land", sub_type: "Island", rarity: "common", watermark: "mana symbol blue"])
|
|
, new_card([name: "Snow-Covered Swamp", super_type: "Basic Snow Land", sub_type: "Swamp", rarity: "common", watermark: "mana symbol black"])
|
|
, new_card([name: "Snow-Covered Mountain", super_type: "Basic Snow Land", sub_type: "Mountain", rarity: "common", watermark: "mana symbol red"])
|
|
, new_card([name: "Snow-Covered Forest", super_type: "Basic Snow Land", sub_type: "Forest", rarity: "common", watermark: "mana symbol green"])
|
|
]
|
|
|
|
#add cards script:
|
|
# name: &Many Empty Cards
|
|
# script:
|
|
# # TODO:
|
|
# #count := show_number_dialog("How many cards should be added?")
|
|
# count := 1
|
|
# for _ from 1 to count do [new_card()]
|
|
|
|
add cards script:
|
|
name: &Horizontal Cycle
|
|
description: Add 1 card of each color to the set
|
|
script:
|
|
# TODO:
|
|
#rarity := show_text_dialog("What rarity should the cards be?")
|
|
[ new_card([card_color: "white"])
|
|
, new_card([card_color: "blue"])
|
|
, new_card([card_color: "black"])
|
|
, new_card([card_color: "red"])
|
|
, new_card([card_color: "green"])
|
|
]
|
|
|
|
#TODO: Vertical Cycle; needs text dialog for setting color
|
|
|