added two scripts for manipulating unimplementable, updated unimplementable.tsv

master
melvin 2013-05-11 18:24:32 +08:00
parent f9dceaf74d
commit e57038f75b
3 changed files with 33 additions and 0 deletions

View File

@ -108,3 +108,14 @@ Oath of Druids reveal
Thoughtseize reveal
Clone clone
Gruul Charm choose
Thorn of Amethyst cost modification
Mishra's Workshop mana pool
Lodestone Golem cost modification
Black Lotus mana pool
Augur of Bolas reveal
Tezzeret the Seeker multiple targets
Sphere of Resistance cost modification
Demonic Tutor lib search
Mana Crypt mana pool
Goblin Guide reveal
Tolarian Academy mana pool

1 Gravecrawler from graveyard
108 Thoughtseize reveal
109 Clone clone
110 Gruul Charm choose
111 Thorn of Amethyst cost modification
112 Mishra's Workshop mana pool
113 Lodestone Golem cost modification
114 Black Lotus mana pool
115 Augur of Bolas reveal
116 Tezzeret the Seeker multiple targets
117 Sphere of Resistance cost modification
118 Demonic Tutor lib search
119 Mana Crypt mana pool
120 Goblin Guide reveal
121 Tolarian Academy mana pool

View File

@ -0,0 +1,8 @@
/# / {
reason = gensub("^# ", "", "g")
next
}
/[A-Z]/ {
print $0 "\t" reason
}

View File

@ -0,0 +1,14 @@
BEGIN {
FS = "\t"
}
{
reason[$2] = reason[$2] $1 "\n"
}
END {
for (i in reason) {
print "# " i
print reason[i]
}
}