Initial commit

This commit is contained in:
CajunAvenger
2021-07-08 17:16:53 -05:00
parent b056d1de65
commit b582d03f6a
11645 changed files with 206724 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
[.ShellClassInfo]
LocalizedResourceName=@magic-webdrafter.mse-export-template,0

View File

@@ -0,0 +1,30 @@
mse version: 0.3.8
short name: WebDrafter
full name: WebDrafter Exporter
position hint: 006
version: 2015-02-14
installer group: magic/Export/webdrafter
depends on:
package: magic.mse-game
version: 2009-07-23
game: magic
file type: *.txt|*.txt|*.*|*.*
# By caeonosphere
# Written by modifying thequinn's IsochronDrafter exporter ()
script:
write_card := {
"\n"+card.name
+"\n"+card.rarity
+"\n"+card.card_color
+"\n"+card.type
+"\n"+cmc(card.casting_cost)
+"\n"
}
write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
to_string(
set.title+"\n"
+write_cards)