diff --git a/data/magic.mse-game/add_cards_scripts b/data/magic.mse-game/add_cards_scripts new file mode 100644 index 00000000..3382def7 --- /dev/null +++ b/data/magic.mse-game/add_cards_scripts @@ -0,0 +1,21 @@ + +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: &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()] diff --git a/data/magic.mse-game/game b/data/magic.mse-game/game index f46351a0..4b6355e2 100644 --- a/data/magic.mse-game/game +++ b/data/magic.mse-game/game @@ -21,6 +21,7 @@ include file: statistics include file: packs include file: keywords include file: word_lists +include file: add_cards_scripts include file: auto_replace ############################################################## Other stuff