<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Right Side of the Boat &#187; Games</title>
	<atom:link href="http://blog.dmcleish.id.au/category/games/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dmcleish.id.au</link>
	<description>Ramblings on atheism and life from Sydney, Australia.</description>
	<lastBuildDate>Sun, 14 Nov 2010 07:01:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Nomic: The Gathering</title>
		<link>http://blog.dmcleish.id.au/2009/12/11/nomic-the-gathering/</link>
		<comments>http://blog.dmcleish.id.au/2009/12/11/nomic-the-gathering/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 00:16:36 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=647</guid>
		<description><![CDATA[The comprehensive rules for Magic: The Gathering say (amongst many other things) this:
101.1. Whenever a card&#8217;s text directly contradicts these rules, the card takes precedence. The card overrides only the rule that applies to that specific situation. The only exception is that a player can concede the game at any time (see rule 104.3a).
Okay, fair [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.wizards.com/Magic/TCG/Article.aspx?x=magic/rules">comprehensive rules for Magic: The Gathering</a> say (amongst <em>many</em> other things) this:</p>
<blockquote><p>101.1. Whenever a card&#8217;s text directly contradicts these rules, the card takes precedence. The card overrides only the rule that applies to that specific situation. The only exception is that a player can concede the game at any time (see rule 104.3a).</p></blockquote>
<p>Okay, fair enough, the exception means that they can&#8217;t publish a card with the effect</p>
<blockquote><p>Target player can&#8217;t concede this game.</p></blockquote>
<p>That makes sense. In fact there are tournament situations where you&#8217;d rather concede than let an ability resolve that would give away information about your deck &#8211; for example, you&#8217;re losing the first game of a three-game match, your opponent has just cast <a href="http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=126804">Extirpate</a>, and the key piece of your deck hasn&#8217;t come out yet. You&#8217;d probably rather concede than let your opponent know what to sideboard against.</p>
<p>And in a broader sense, I&#8217;m not sure what it would mean for the rules of a game to say that you&#8217;re not allowed to just stand up and walk away.</p>
<p>But&#8230; but but <em>but</em>&#8230; the rule doesn&#8217;t say that a card can&#8217;t override rule 101.1 <em>itself</em>. So they <em>could</em> print a card that says</p>
<blockquote><p>This card can override a player&#8217;s right to concede the game at any time.</p>
<p>Target player can&#8217;t concede this game.</p></blockquote>
<p>It just has to override rule 101.1 <em>before</em> it overrides rule 104.3a.</p>
<p>&#8230;</p>
<p>I didn&#8217;t say they <em>would</em> print it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/12/11/nomic-the-gathering/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tournaments as sorting algorithms</title>
		<link>http://blog.dmcleish.id.au/2009/11/17/tournaments-as-sorting-algorithms/</link>
		<comments>http://blog.dmcleish.id.au/2009/11/17/tournaments-as-sorting-algorithms/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:07:04 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=580</guid>
		<description><![CDATA[From a discussion in our Magic group&#8230;
You can think of a tournament as a sorting algorithm for ordering the players by skill, where each match is a comparison.
There are a couple of differences:

Many tournaments only determine a partial ordering &#8211; for example, if it&#8217;s only looking for a winner.
Comparisons between two players aren&#8217;t guaranteed to [...]]]></description>
			<content:encoded><![CDATA[<p>From a discussion in our Magic group&#8230;</p>
<p>You can think of a tournament as a sorting algorithm for ordering the players by skill, where each match is a comparison.</p>
<p>There are a couple of differences:</p>
<ul>
<li>Many tournaments only determine a partial ordering &#8211; for example, if it&#8217;s only looking for a winner.</li>
<li>Comparisons between two players aren&#8217;t guaranteed to be consistent. One player could beat another in one match and lose to the same player in another match; or you could have a scissors-paper-rock type of cycle between three or more players.</li>
</ul>
<p>For current purposes, we can ignore the first difference and only talk about tournaments where the goal is to rank all the players.</p>
<p>The second point is more interesting. A sorting algorithm assumes that there&#8217;s a complete order over the elements, which there isn&#8217;t in this case. We could either make it somehow resilient to noise, or find some way to break cycles, all of which is complicated. Or we could let the algorithm do whatever comparisons it does, and if it happens to be inconsistent with previous results then hopefully it&#8217;ll be resilient to it somehow. (In the worst case, a dumb-ass algorithm like a naive bubble sort might not terminate.)</p>
<p>Or &#8211; and this is why I&#8217;ve been thinking about it since this afternoon &#8211; we could only make comparisons for which we can&#8217;t already infer an answer.</p>
<p>This has some advantages. It means that we can never reach a contradiction where one player beat another but ended up ranked lower than them. It puts a natural limit on the length of the tournament, because the more matches you play, the more potential match-ups become redundant, until there are none left. It <em>might</em> mean that a player can get an unusually low ranking from a bad match-up early on, but that will tend to happen in a scissors-paper-rock sort of situation where no ranking is going to be consistent anyway, so one solution will be as good as any.</p>
<p>So, some solutions that came to mind&#8230;</p>
<p>A quicksort tournament would start by choosing one person as the pivot. Everyone plays a match against that person. Then the other players split off into two pools &#8211; those who beat the person, and those who didn&#8217;t. (Let&#8217;s assume there are no draws.) Each of those pools chooses another pivot and repeats until everyone is either a pivot or in a pool by themselves.</p>
<p>There&#8217;s an obvious downside to this in, for example, Friday night Magic &#8211; the first pivot has to play at least two matches (if those two players either both win or both lose) before anyone else can do anything. Another downside is that there&#8217;s a lot of variation in how many matches each person plays &#8211; the first pivot plays <em>n</em>-1 matches, but someone else could potentially only play one match (if they&#8217;re the only one who beats or is beaten by the first pivot).</p>
<p>(Actually this isn&#8217;t <em>necessarily</em> a bad thing for our Magic tournaments &#8211; the conversation started with someone pointing out that we have different amounts of free time to play with &#8211; but it would be nice the variation wasn&#8217;t <em>too</em> big. It would be even nicer if you could direct the extra matches towards people with more time to play.)</p>
<p>A merge sort tournament would avoid some of the first problem &#8211; players would pair off at the start of the night, and bottlenecks only start happening at the end of the first round. It still has the varying number of matches problem though. So our ideal sorting algorithm for a tournament would:</p>
<ul>
<li>be able to do lots of comparisons in parallel,</li>
<li>do about the same number of comparisons on each element, and</li>
<li>not compare elements if it could infer their order.</li>
</ul>
<p>The first and third constraints are tricky once it gets going &#8211; you can&#8217;t have multiple matches running in parallel that could <em>potentially</em> give contradictory results. One approach for small numbers of players might be to brute-force it &#8211; keep a directed graph of players and schedule matches for which (a) there currently isn&#8217;t a path in either direction and (b) there won&#8217;t be a path in either direction for any of combination of outcomes of the games currently running. I actually started coding this when I got home, but was quickly distracted by something less confusing.</p>
<p>I gotta break out my Knuth vol. 2&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/11/17/tournaments-as-sorting-algorithms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zendikar draft</title>
		<link>http://blog.dmcleish.id.au/2009/10/10/zendikar-draft/</link>
		<comments>http://blog.dmcleish.id.au/2009/10/10/zendikar-draft/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 14:12:54 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=413</guid>
		<description><![CDATA[Just got home from our first Zendikar draft, which I have, apparently, won &#8211; Mr Coker can reach equal first on points (we&#8217;ve lost one game each, but he has a game left to play against Mr Karlov), but I&#8217;ll have a higher countback. So woo yeah! Go team awesome! (That&#8217;s me. I&#8217;m team awesome. [...]]]></description>
			<content:encoded><![CDATA[<p>Just got home from our first <a href="http://en.wikipedia.org/wiki/Zendikar">Zendikar</a> draft, which I have, apparently, won &#8211; Mr Coker can reach equal first on points (we&#8217;ve lost one game each, but he has a game left to play against Mr Karlov), but I&#8217;ll have a higher countback. So woo yeah! Go team awesome! (That&#8217;s me. I&#8217;m team awesome. No you can&#8217;t join.)</p>
<div id="attachment_417" class="wp-caption alignright" style="width: 310px"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3653.JPG"><img class="size-medium wp-image-417" title="First picks" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3653-300x200.jpg" alt="First picks" width="300" height="200" /></a>First picks. Alas, A2, A3 and A5 didn&#8217;t make the cut.</dt>
</dl>
</div>
<p>My card pool looked like this:</p>
<table border="0">
<tbody>
<tr>
<td>Journey to Nowhere<br />
Gatekeeper of Malakir<br />
Devout Lightcaster<br />
Makindi Shieldmate<br />
Geyser Glider<br />
Khalni Heart Expedition<br />
Territorial Baloth<br />
Ondu Cleric<br />
Predatory Urge<br />
Bog Tatters<br />
Vines of Vastwood<br />
Joraga Bard<br />
Zendikar Farguide<br />
Relic Crush<br />
Plains</td>
<td>Blazing Torch<br />
Oran-Rief Survivalist<br />
Baloth Woodcrasher<br />
Burst Lightning<br />
Kabira Evangel<br />
Stonework Puma<br />
Explorer&#8217;s Scope<br />
Tempest Owl<br />
Stonework Puma<br />
Spire Barrage<br />
Seascape Aerialist<br />
Greenweaver Druid<br />
Tanglesap<br />
Tuktuk Grunts<br />
Forest</td>
<td>Khalni Heart Expedition<br />
Timbermaw Larva<br />
Turntimber Ranger<br />
Vastwood Gorger<br />
Shepherd of the Lost<br />
Territorial Baloth<br />
Summoning Trap<br />
Hagra Diabolist<br />
River Boa<br />
Oran-Rief Survivalist<br />
Joraga Bard<br />
Frontier Guide<br />
Seascape Aerialist<br />
Greenweaver Druid<br />
Sejiri Refuge</td>
</tr>
</tbody>
</table>
<p>And my deck looked like this (plus, um&#8230; 12 Forests and 5 Plains):</p>
<div class="mceTemp">
<dl id="attachment_420" class="wp-caption alignleft" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3663.JPG"><img class="size-medium wp-image-420" title="IMG_3663" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3663-300x200.jpg" alt="Deck" width="300" height="200" /></a></dt>
</dl>
</div>
<p>(We use numbered sleeves so that we can reconstruct, analyze the bejeezus out of, and ultimately reverse the draft and give everyone back the cards they opened. Yes, we are that obsessed.)</p>
<p>Obviously there&#8217;s an Allies thing happening, plus a touch of landfall supported by the Khalni Heart Expeditions and the Frontier Guide. Removal consists of the first-pick Journey to Nowhere and not much else, so it&#8217;s definitely a deck that needs to stay on the front foot.</p>
<p>Fortunately it did, against everyone except Mr Shellshear, sporting a black-red deck without much synergy but with plenty of individual bombs, who beat me senseless with a huge creature with <span style="text-decoration: line-through;">Fear</span> Intimidate.</p>
<div class="mceTemp">
<dl id="attachment_419" class="wp-caption alignleft" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3659.JPG"><img class="size-medium wp-image-419" title="IMG_3659" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3659-300x200.jpg" alt="Deckbuilding" width="300" height="200" /></a><p class="wp-caption-text">Deckbuilding.</p></div>
<p>MVPs were Baloth Woodcrasher (can win on its own with multiple landfalls), Turntimber Ranger, and the pair of of Oran-Rief Survivalists. Play of the night was springing Summoning Trap into Turntimber Ranger against <a href="http://www.irregularwebcomic.net/">DMM</a> who was playing a mono-blue deck built around Lullmage Mentor. (We were speaking in bad French accents at the time, which made it even more awesome. Don&#8217;t ask why.) Vines of Vastwood is very versatile as a combat trick and/or finisher, as you&#8217;d expect. Shepherd of the Lost seems good but the only time I got it out it didn&#8217;t do much (I was already on the back foot against Mr Shellshear).</p>
<div id="attachment_432" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3665.JPG"><img class="size-medium wp-image-432" title="IMG_3665" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3665-300x200.jpg" alt="Mr Coker had the honour of the first landfall." width="300" height="200" /></a><p class="wp-caption-text">Mr Coker had the honour of the first landfall.</p></div>
<div id="attachment_418" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3658.JPG"><img class="size-medium wp-image-418" title="IMG_3658" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3658-300x200.jpg" alt="Sustenance." width="300" height="200" /></a><p class="wp-caption-text">Sustenance.</p></div>
<div id="attachment_421" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3674.JPG"><img class="size-medium wp-image-421" title="IMG_3674" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3674-300x200.jpg" alt="Allies doing their thing. The zombie counters are +1/+1 tokens or life counters, depending on the context." width="300" height="200" /></a><p class="wp-caption-text">Allies doing their thing. The zombie miniatures are +1/+1 tokens or life counters, depending on the context.</p></div>
<p>My first impressions of Zendikar are definitely encouraging me to go back for second and third impressions.</p>
<div id="attachment_416" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3678.JPG"><img class="size-medium wp-image-416" title="IMG_3678" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/10/IMG_3678-300x200.jpg" alt="We didn't &lt;i&gt;quite&lt;/i&gt; find a Black Lotus..." width="300" height="200" /></a><p class="wp-caption-text">We didn&#39;t <i>quite</i> find a Black Lotus...</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/10/10/zendikar-draft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sorting cards</title>
		<link>http://blog.dmcleish.id.au/2009/09/05/sorting-cards/</link>
		<comments>http://blog.dmcleish.id.au/2009/09/05/sorting-cards/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:20:40 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=311</guid>
		<description><![CDATA[For a while now I&#8217;ve had my own manual sorting algorithm that I use for, for example, sorting cards.
Actually the thing I most often end up sorting is card sleeves. Our Magic drafting group, being a highly distilled collection of nerds, draft into sleeves that are marked with the pack (A-C) and pick order (1-15), [...]]]></description>
			<content:encoded><![CDATA[<p>For a while now I&#8217;ve had my own manual sorting algorithm that I use for, for example, sorting cards.</p>
<p>Actually the thing I most often end up sorting is card <em>sleeves</em>. Our <em>Magic</em> drafting group, being a highly distilled collection of nerds, draft into sleeves that are marked with the pack (A-C) and pick order (1-15), so that we can reconstruct and analyse the draft afterwards. So at some point before every draft I need to un-sleeve the previous draft, then sort the sleeves from A1 to C15.</p>
<p>Now&#8230; there&#8217;s a whole branch of computer science devoted to sorting algorithms (and by &#8220;branch&#8221; I mean &#8220;volume of the Knuth books&#8221;), but I&#8217;ve never come across any kind of systematic advice for sorting <em>manually,</em> i.e. without the convenience of having a computer instead of a brain and a bunch of digital artifacts instead of some physical pieces of plastic or cardboard. Most people just tend to sort in an ad-hoc way that vaguely resembles an insertion or selection sort. Occasionally I&#8217;ve seen someone attempt a radix sort with playing cards (into numbers, then into suits). If you watch <a href="http://www.youtube.com/watch?v=RpRRUQFbePU">this lecture</a> you&#8217;ll see someone try to do a bubble sort with a bag over his head.</p>
<p>My manual sorting algorithm isn&#8217;t, as far as I know, a well-known programmatic sorting algorithm. You probably wouldn&#8217;t want it to be. It involves a variable number of variable-length lists, and doesn&#8217;t perform obviously better than a whole class of O(n<sup>2</sup>) algorithms that are in-place and much easier to implement. But it has the advantage that, for input that&#8217;s approximately O(a deck of cards), its space complexity is roughly O(a small area on my desk).</p>
<p>Here&#8217;s the algorithm. It&#8217;s in two passes.</p>
<ol>
<li>Take a card from the deck. Look for a pile on the table (initially there are none) whose top card is lower than the card you&#8217;re holding. Put the card on face-up top of that pile. If there&#8217;s no such pile, put the card in a new pile. Repeat until the deck is empty.</li>
<li>Find the highest card among the top cards of the piles on the table. Move that card to the deck. Repeat until there are no piles left.</li>
</ol>
<p>That&#8217;s a pretty sparse explanation. I might take a shot at making a video with actual cards &#8211; not that I expect it to be very useful, but it would also serve the purpose of playing with the 5D Mk II&#8217;s video mode.</p>
<p>One interesting thing is that the algorithm sort of takes advantage of the fact that a human can pick one from a handful of cards or piles at a glance in roughly constant time &#8211; or, at least, it doesn&#8217;t quite feel like a linear search because you quickly pick up ad-hoc shortcuts to find the right pile. (Also, the overhead of physically moving the cards around, which you can&#8217;t get away from using any technique, outweights the time it takes you to find the right pile.)</p>
<p>Even if you do end up doing a linear search for the right pile, the time complexity isn&#8217;t too bad. Worst case is quadratic, where the cards start in reverse order and each card ends up in its own pile. Best case is linear, where the cards start in order and all the cards go in one pile. The expected complexity for shuffled cards is&#8230; I dunno, I haven&#8217;t worked it out. The important factor is the average number of piles you end up with, which is complicated. I&#8217;d guess it works out to something like √n, which would make the whole thing O(n<sup>3/2</sup>), maybe. You could look at it as a selection sort with a probabilistic speedup for the &#8220;selection&#8221; bit.</p>
<p>Anyway, that&#8217;s how I&#8217;ve been sorting card sleeves for a while. I hope someone found that interesting. And if this <em>is</em> acutally a well-known algorithm, let me know what it&#8217;s called. (Haven&#8217;t really looked for it myself yet. My Knuth books are at work at the moment, so I might check there on Monday.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/09/05/sorting-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wonder Boy in Monster Land; or, How The Hobbit Should have Ended</title>
		<link>http://blog.dmcleish.id.au/2009/09/03/wonder-boy-in-monster-land-or-how-the-hobbit-should-have-ended/</link>
		<comments>http://blog.dmcleish.id.au/2009/09/03/wonder-boy-in-monster-land-or-how-the-hobbit-should-have-ended/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 09:26:52 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=302</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.dmcleish.id.au/wp-content/uploads/2009/09/dragonwasrobot.png"><img class="aligncenter size-full wp-image-307" title="War is over / DRAGON was robot" src="http://blog.dmcleish.id.au/wp-content/uploads/2009/09/dragonwasrobot.png" alt="dragonwasrobot" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/09/03/wonder-boy-in-monster-land-or-how-the-hobbit-should-have-ended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto-drafter, cont&#8217;d</title>
		<link>http://blog.dmcleish.id.au/2009/08/30/auto-drafter-contd/</link>
		<comments>http://blog.dmcleish.id.au/2009/08/30/auto-drafter-contd/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 01:33:46 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=289</guid>
		<description><![CDATA[Mr Shellshear pointed out to me last night that the record of our M10 draft had the seating arrangement in the wrong order. So the auto-drafted results in my last post were still interesting, but didn&#8217;t necessarily boil down to actual packs with the right rarity distribution and whatnot.
The results with the correct seating order [...]]]></description>
			<content:encoded><![CDATA[<p>Mr Shellshear pointed out to me last night that the record of our M10 draft had the seating arrangement in the wrong order. So the auto-drafted results in <a href="http://blog.dmcleish.id.au/2009/08/29/magic-auto-drafter/">my last post</a> were still interesting, but didn&#8217;t necessarily boil down to actual packs with the right rarity distribution and whatnot.</p>
<p>The results with the correct seating order are below the fold. I also turned up the bias towards already-drafted cards. I still wouldn&#8217;t call the behaviour <em>sensible</em>, but I wouldn&#8217;t be totally upset with the pool it drafted. (In particular, I made good use of Whispersilk Cloak on the night, especially alongside an Enormous Baloth. And I seem to have picked up a Protean Hydra somehow.)</p>
<p><span id="more-289"></span></p>
<h2 style="margin-top:16px; margin-bottom:0px;">Michelle</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divination$/]" style="color:#00007f; text-decoration:none;">Divination</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Earthquake$/]" style="color:#7f0000; text-decoration:none;">Earthquake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bog\sWraith$/]" style="color:#000000; text-decoration:none;">Bog Wraith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Birds\sof\sParadise$/]" style="color:#007f00; text-decoration:none;">Birds of Paradise</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disorient$/]" style="color:#00007f; text-decoration:none;">Disorient</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prized\sUnicorn$/]" style="color:#007f00; text-decoration:none;">Prized Unicorn</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Diabolic\sTutor$/]" style="color:#000000; text-decoration:none;">Diabolic Tutor</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Demon's\sHorn$/]" style="color:#5f5f7f; text-decoration:none;">Demon&#8217;s Horn</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shivan\sDragon$/]" style="color:#7f0000; text-decoration:none;">Shivan Dragon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^White\sKnight$/]" style="color:#7f7f7f; text-decoration:none;">White Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howl\sof\sthe\sNight\sPack$/]" style="color:#007f00; text-decoration:none;">Howl of the Night Pack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Windstorm$/]" style="color:#007f00; text-decoration:none;">Windstorm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tendrils\sof\sCorruption$/]" style="color:#000000; text-decoration:none;">Tendrils of Corruption</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Warpath\sGhoul$/]" style="color:#000000; text-decoration:none;">Warpath Ghoul</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sign\sin\sBlood$/]" style="color:#000000; text-decoration:none;">Sign in Blood</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fireball$/]" style="color:#7f0000; text-decoration:none;">Fireball</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Air\sElemental$/]" style="color:#00007f; text-decoration:none;">Air Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tendrils\sof\sCorruption$/]" style="color:#000000; text-decoration:none;">Tendrils of Corruption</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rise\sfrom\sthe\sGrave$/]" style="color:#000000; text-decoration:none;">Rise from the Grave</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unholy\sStrength$/]" style="color:#000000; text-decoration:none;">Unholy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bountiful\sHarvest$/]" style="color:#007f00; text-decoration:none;">Bountiful Harvest</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Convincing\sMirage$/]" style="color:#00007f; text-decoration:none;">Convincing Mirage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
</tr>
</table>
<p>12 black<br />
10 red<br />
9 green<br />
7 blue<br />
5 white<br />
1 artifact<br />
1 land</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Darren</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stormfront\sPegasus$/]" style="color:#7f7f7f; text-decoration:none;">Stormfront Pegasus</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sControl$/]" style="color:#00007f; text-decoration:none;">Mind Control</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rhox\sPikemaster$/]" style="color:#7f7f7f; text-decoration:none;">Rhox Pikemaster</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Soul\sWarden$/]" style="color:#7f7f7f; text-decoration:none;">Soul Warden</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sSwordsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Swordsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Emerald\sOryx$/]" style="color:#007f00; text-decoration:none;">Emerald Oryx</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Craw\sWurm$/]" style="color:#007f00; text-decoration:none;">Craw Wurm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Horned\sTurtle$/]" style="color:#00007f; text-decoration:none;">Horned Turtle</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Runeclaw\sBear$/]" style="color:#007f00; text-decoration:none;">Runeclaw Bear</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Relentless\sRats$/]" style="color:#000000; text-decoration:none;">Relentless Rats</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Whispersilk\sCloak$/]" style="color:#5f5f7f; text-decoration:none;">Whispersilk Cloak</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Cudgel\sTroll$/]" style="color:#007f00; text-decoration:none;">Cudgel Troll</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Centaur\sCourser$/]" style="color:#007f00; text-decoration:none;">Centaur Courser</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acidic\sSlime$/]" style="color:#007f00; text-decoration:none;">Acidic Slime</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elvish\sVisionary$/]" style="color:#007f00; text-decoration:none;">Elvish Visionary</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Assassinate$/]" style="color:#000000; text-decoration:none;">Assassinate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elvish\sVisionary$/]" style="color:#007f00; text-decoration:none;">Elvish Visionary</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kelinore\sBat$/]" style="color:#000000; text-decoration:none;">Kelinore Bat</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Indestructibility$/]" style="color:#7f7f7f; text-decoration:none;">Indestructibility</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Guardian\sSeraph$/]" style="color:#7f7f7f; text-decoration:none;">Guardian Seraph</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Clone$/]" style="color:#00007f; text-decoration:none;">Clone</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pyroclasm$/]" style="color:#7f0000; text-decoration:none;">Pyroclasm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Centaur\sCourser$/]" style="color:#007f00; text-decoration:none;">Centaur Courser</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wurm's\sTooth$/]" style="color:#5f5f7f; text-decoration:none;">Wurm&#8217;s Tooth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tome\sScour$/]" style="color:#00007f; text-decoration:none;">Tome Scour</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lifelink$/]" style="color:#7f7f7f; text-decoration:none;">Lifelink</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
</tr>
</table>
<p>12 white<br />
11 green<br />
6 blue<br />
6 red<br />
4 black<br />
4 land<br />
2 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Andrew C</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Armored\sAscension$/]" style="color:#7f7f7f; text-decoration:none;">Armored Ascension</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howling\sMine$/]" style="color:#5f5f7f; text-decoration:none;">Howling Mine</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Illusionary\sServant$/]" style="color:#00007f; text-decoration:none;">Illusionary Servant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drowned\sCatacomb$/]" style="color:#5f3f1f; text-decoration:none;">Drowned Catacomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Solemn\sOffering$/]" style="color:#7f7f7f; text-decoration:none;">Solemn Offering</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Palace\sGuard$/]" style="color:#7f7f7f; text-decoration:none;">Palace Guard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sPiker$/]" style="color:#7f0000; text-decoration:none;">Goblin Piker</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Megrim$/]" style="color:#000000; text-decoration:none;">Megrim</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Convincing\sMirage$/]" style="color:#00007f; text-decoration:none;">Convincing Mirage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Chandra\sNalaar$/]" style="color:#7f0000; text-decoration:none;">Chandra Nalaar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Twincast$/]" style="color:#00007f; text-decoration:none;">Twincast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon\sWhelp$/]" style="color:#7f0000; text-decoration:none;">Dragon Whelp</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Illusionary\sServant$/]" style="color:#00007f; text-decoration:none;">Illusionary Servant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon's\sClaw$/]" style="color:#5f5f7f; text-decoration:none;">Dragon&#8217;s Claw</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kindled\sFury$/]" style="color:#7f0000; text-decoration:none;">Kindled Fury</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Polymorph$/]" style="color:#00007f; text-decoration:none;">Polymorph</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prodigal\sPyromancer$/]" style="color:#7f0000; text-decoration:none;">Prodigal Pyromancer</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divine\sVerdict$/]" style="color:#7f7f7f; text-decoration:none;">Divine Verdict</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coat\sof\sArms$/]" style="color:#5f5f7f; text-decoration:none;">Coat of Arms</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Righteousness$/]" style="color:#7f7f7f; text-decoration:none;">Righteousness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Alluring\sSiren$/]" style="color:#00007f; text-decoration:none;">Alluring Siren</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Solemn\sOffering$/]" style="color:#7f7f7f; text-decoration:none;">Solemn Offering</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Relentless\sRats$/]" style="color:#000000; text-decoration:none;">Relentless Rats</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sage\sOwl$/]" style="color:#00007f; text-decoration:none;">Sage Owl</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Viashino\sSpearhunter$/]" style="color:#7f0000; text-decoration:none;">Viashino Spearhunter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
</tr>
</table>
<p>15 white<br />
10 blue<br />
8 red<br />
5 black<br />
4 land<br />
3 artifact<br />
0 green</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David MM</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Merfolk\sLooter$/]" style="color:#00007f; text-decoration:none;">Merfolk Looter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Griffin\sSentinel$/]" style="color:#7f7f7f; text-decoration:none;">Griffin Sentinel</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divine\sVerdict$/]" style="color:#7f7f7f; text-decoration:none;">Divine Verdict</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disentomb$/]" style="color:#000000; text-decoration:none;">Disentomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wurm's\sTooth$/]" style="color:#5f5f7f; text-decoration:none;">Wurm&#8217;s Tooth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Craw\sWurm$/]" style="color:#007f00; text-decoration:none;">Craw Wurm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Telepathy$/]" style="color:#00007f; text-decoration:none;">Telepathy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bountiful\sHarvest$/]" style="color:#007f00; text-decoration:none;">Bountiful Harvest</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sSwordsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Swordsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Celestial\sPurge$/]" style="color:#7f7f7f; text-decoration:none;">Celestial Purge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Celestial\sPurge$/]" style="color:#7f7f7f; text-decoration:none;">Celestial Purge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFrost$/]" style="color:#00007f; text-decoration:none;">Wall of Frost</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kraken's\sEye$/]" style="color:#5f5f7f; text-decoration:none;">Kraken&#8217;s Eye</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Megrim$/]" style="color:#000000; text-decoration:none;">Megrim</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lifelink$/]" style="color:#7f7f7f; text-decoration:none;">Lifelink</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sage\sOwl$/]" style="color:#00007f; text-decoration:none;">Sage Owl</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Righteousness$/]" style="color:#7f7f7f; text-decoration:none;">Righteousness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rod\sof\sRuin$/]" style="color:#5f5f7f; text-decoration:none;">Rod of Ruin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Emerald\sOryx$/]" style="color:#007f00; text-decoration:none;">Emerald Oryx</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ornithopter$/]" style="color:#5f5f7f; text-decoration:none;">Ornithopter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disentomb$/]" style="color:#000000; text-decoration:none;">Disentomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFire$/]" style="color:#7f0000; text-decoration:none;">Wall of Fire</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Spellbook$/]" style="color:#5f5f7f; text-decoration:none;">Spellbook</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>13 white<br />
9 green<br />
5 black<br />
5 red<br />
5 artifact<br />
4 blue<br />
4 land</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Andrew S</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ajani\sGoldmane$/]" style="color:#7f7f7f; text-decoration:none;">Ajani Goldmane</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sArtillery$/]" style="color:#7f0000; text-decoration:none;">Goblin Artillery</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Vampire\sAristocrat$/]" style="color:#000000; text-decoration:none;">Vampire Aristocrat</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deathmark$/]" style="color:#000000; text-decoration:none;">Deathmark</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Act\sof\sTreason$/]" style="color:#7f0000; text-decoration:none;">Act of Treason</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zombie\sGoliath$/]" style="color:#000000; text-decoration:none;">Zombie Goliath</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zombie\sGoliath$/]" style="color:#000000; text-decoration:none;">Zombie Goliath</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ball\sLightning$/]" style="color:#7f0000; text-decoration:none;">Ball Lightning</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elite\sVanguard$/]" style="color:#7f7f7f; text-decoration:none;">Elite Vanguard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prodigal\sPyromancer$/]" style="color:#7f0000; text-decoration:none;">Prodigal Pyromancer</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Inferno\sElemental$/]" style="color:#7f0000; text-decoration:none;">Inferno Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rampant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Rampant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ignite\sDisorder$/]" style="color:#7f0000; text-decoration:none;">Ignite Disorder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Diabolic\sTutor$/]" style="color:#000000; text-decoration:none;">Diabolic Tutor</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jackal\sFamiliar$/]" style="color:#7f0000; text-decoration:none;">Jackal Familiar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mold\sAdder$/]" style="color:#007f00; text-decoration:none;">Mold Adder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sleep$/]" style="color:#00007f; text-decoration:none;">Sleep</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Harm's\sWay$/]" style="color:#7f7f7f; text-decoration:none;">Harm&#8217;s Way</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howling\sBanshee$/]" style="color:#000000; text-decoration:none;">Howling Banshee</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Levitation$/]" style="color:#00007f; text-decoration:none;">Levitation</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Llanowar\sElves$/]" style="color:#007f00; text-decoration:none;">Llanowar Elves</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tome\sScour$/]" style="color:#00007f; text-decoration:none;">Tome Scour</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>14 black<br />
13 red<br />
6 blue<br />
5 white<br />
4 green<br />
3 land<br />
0 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David Mc</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Phantom\sWarrior$/]" style="color:#00007f; text-decoration:none;">Phantom Warrior</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon\sWhelp$/]" style="color:#7f0000; text-decoration:none;">Dragon Whelp</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gargoyle\sCastle$/]" style="color:#5f3f1f; text-decoration:none;">Gargoyle Castle</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Darksteel\sColossus$/]" style="color:#5f5f7f; text-decoration:none;">Darksteel Colossus</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Enormous\sBaloth$/]" style="color:#007f00; text-decoration:none;">Enormous Baloth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coral\sMerfolk$/]" style="color:#00007f; text-decoration:none;">Coral Merfolk</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rampant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Rampant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unsummon$/]" style="color:#00007f; text-decoration:none;">Unsummon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burst\sof\sSpeed$/]" style="color:#7f0000; text-decoration:none;">Burst of Speed</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Nightmare$/]" style="color:#000000; text-decoration:none;">Nightmare</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Cudgel\sTroll$/]" style="color:#007f00; text-decoration:none;">Cudgel Troll</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^White\sKnight$/]" style="color:#7f7f7f; text-decoration:none;">White Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Child\sof\sNight$/]" style="color:#000000; text-decoration:none;">Child of Night</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Nature's\sSpiral$/]" style="color:#007f00; text-decoration:none;">Nature&#8217;s Spiral</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Llanowar\sElves$/]" style="color:#007f00; text-decoration:none;">Llanowar Elves</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Naturalize$/]" style="color:#007f00; text-decoration:none;">Naturalize</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Whispersilk\sCloak$/]" style="color:#5f5f7f; text-decoration:none;">Whispersilk Cloak</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Protean\sHydra$/]" style="color:#007f00; text-decoration:none;">Protean Hydra</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stone\sGiant$/]" style="color:#7f0000; text-decoration:none;">Stone Giant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Merfolk\sLooter$/]" style="color:#00007f; text-decoration:none;">Merfolk Looter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Naturalize$/]" style="color:#007f00; text-decoration:none;">Naturalize</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
</tr>
</table>
<p>15 green<br />
12 blue<br />
5 red<br />
4 white<br />
4 land<br />
3 black<br />
2 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Steven</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Phantom\sWarrior$/]" style="color:#00007f; text-decoration:none;">Phantom Warrior</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Flashfreeze$/]" style="color:#00007f; text-decoration:none;">Flashfreeze</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Black\sKnight$/]" style="color:#000000; text-decoration:none;">Black Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fabricate$/]" style="color:#00007f; text-decoration:none;">Fabricate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Act\sof\sTreason$/]" style="color:#7f0000; text-decoration:none;">Act of Treason</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fabricate$/]" style="color:#00007f; text-decoration:none;">Fabricate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Berserkers\sof\sBlood\sRidge$/]" style="color:#7f0000; text-decoration:none;">Berserkers of Blood Ridge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Hypnotic\sSpecter$/]" style="color:#000000; text-decoration:none;">Hypnotic Specter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Terramorphic\sExpanse$/]" style="color:#5f3f1f; text-decoration:none;">Terramorphic Expanse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Open\sthe\sVaults$/]" style="color:#7f7f7f; text-decoration:none;">Open the Vaults</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Seismic\sStrike$/]" style="color:#7f0000; text-decoration:none;">Seismic Strike</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unholy\sStrength$/]" style="color:#000000; text-decoration:none;">Unholy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mold\sAdder$/]" style="color:#007f00; text-decoration:none;">Mold Adder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Doom\sBlade$/]" style="color:#000000; text-decoration:none;">Doom Blade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rhox\sPikemaster$/]" style="color:#7f7f7f; text-decoration:none;">Rhox Pikemaster</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Consume\sSpirit$/]" style="color:#000000; text-decoration:none;">Consume Spirit</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sElemental$/]" style="color:#7f0000; text-decoration:none;">Lightning Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Panic\sAttack$/]" style="color:#7f0000; text-decoration:none;">Panic Attack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Soul\sWarden$/]" style="color:#7f7f7f; text-decoration:none;">Soul Warden</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sFeather$/]" style="color:#5f5f7f; text-decoration:none;">Angel&#8217;s Feather</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Firebreathing$/]" style="color:#7f0000; text-decoration:none;">Firebreathing</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>12 red<br />
11 black<br />
8 blue<br />
6 white<br />
4 land<br />
3 green<br />
1 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David K</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wind\sDrake$/]" style="color:#00007f; text-decoration:none;">Wind Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightwielder\sPaladin$/]" style="color:#7f7f7f; text-decoration:none;">Lightwielder Paladin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Blinding\sMage$/]" style="color:#7f7f7f; text-decoration:none;">Blinding Mage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Panic\sAttack$/]" style="color:#7f0000; text-decoration:none;">Panic Attack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lurking\sPredators$/]" style="color:#007f00; text-decoration:none;">Lurking Predators</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wind\sDrake$/]" style="color:#00007f; text-decoration:none;">Wind Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howl\sof\sthe\sNight\sPack$/]" style="color:#007f00; text-decoration:none;">Howl of the Night Pack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Giant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mist\sLeopard$/]" style="color:#007f00; text-decoration:none;">Mist Leopard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sShatter$/]" style="color:#000000; text-decoration:none;">Mind Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serra\sAngel$/]" style="color:#7f7f7f; text-decoration:none;">Serra Angel</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gorgon\sFlail$/]" style="color:#5f5f7f; text-decoration:none;">Gorgon Flail</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sPiker$/]" style="color:#7f0000; text-decoration:none;">Goblin Piker</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Glorious\sCharge$/]" style="color:#7f7f7f; text-decoration:none;">Glorious Charge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mist\sLeopard$/]" style="color:#007f00; text-decoration:none;">Mist Leopard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Overrun$/]" style="color:#007f00; text-decoration:none;">Overrun</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stone\sGiant$/]" style="color:#7f0000; text-decoration:none;">Stone Giant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Great\sSable\sStag$/]" style="color:#007f00; text-decoration:none;">Great Sable Stag</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Terramorphic\sExpanse$/]" style="color:#5f3f1f; text-decoration:none;">Terramorphic Expanse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Manabarbs$/]" style="color:#7f0000; text-decoration:none;">Manabarbs</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Glorious\sCharge$/]" style="color:#7f7f7f; text-decoration:none;">Glorious Charge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stampeding\sRhino$/]" style="color:#007f00; text-decoration:none;">Stampeding Rhino</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Palace\sGuard$/]" style="color:#7f7f7f; text-decoration:none;">Palace Guard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Runeclaw\sBear$/]" style="color:#007f00; text-decoration:none;">Runeclaw Bear</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coral\sMerfolk$/]" style="color:#00007f; text-decoration:none;">Coral Merfolk</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disorient$/]" style="color:#00007f; text-decoration:none;">Disorient</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jackal\sFamiliar$/]" style="color:#7f0000; text-decoration:none;">Jackal Familiar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
</tr>
</table>
<p>14 green<br />
10 blue<br />
8 white<br />
6 red<br />
5 land<br />
1 black<br />
1 artifact</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/08/30/auto-drafter-contd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magic auto-drafter</title>
		<link>http://blog.dmcleish.id.au/2009/08/29/magic-auto-drafter/</link>
		<comments>http://blog.dmcleish.id.au/2009/08/29/magic-auto-drafter/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 03:19:36 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=259</guid>
		<description><![CDATA[This is kind of cool.
I&#8217;ve had an idea for a while to make an automatic draft picker for Magic: the Gathering. The idea was to use a sort of naive Bayes approach, using the records of previous drafts to estimate:

the probability that a player, given a pack with cards A and B, will pick A [...]]]></description>
			<content:encoded><![CDATA[<p>This is kind of cool.</p>
<p>I&#8217;ve had an idea for a while to make an automatic draft picker for <em>Magic: the Gathering</em>. The idea was to use a sort of <a href="http://en.wikipedia.org/wiki/Naive_Bayes_classifier">naive Bayes</a> approach, using the records of previous drafts to estimate:</p>
<ul>
<li>the probability that a player, given a pack with cards A and B, will pick A over B;</li>
<li>the probability that a player, given a pack with card A and having already drafted card B, will pick A over the other cards in the pack.</li>
</ul>
<p>The idea is that the former gives an estimate of card quality, and the latter estimates the influence of earlier picks on each card. To use this in a draft, you (that is to say, the program that&#8217;s doing it for you) just multiply all the probabilities together for each card, and pick the one with the highest score.</p>
<p>So I finished coding it up this morning. Then I trained it using four <em>Magic 2010</em> drafts from the MtG website (e.g. <a href="http://gatherer.wizards.com/magic/draftools/draftviewer.asp?draftid=m10-521526">this one</a>), then re-ran <a href="http://otherleg.com/anotherblog/archives/1324">our draft from a couple of weeks ago</a>, to see what would have happened if we were all replaced by auto-drafters.</p>
<p>The results are below the fold. And it&#8217;s not completely ridiculous. It&#8217;s probably less focused in colours than it could be; maybe there&#8217;s some tweaking to be done by weighting the influence of previous picks. But at a glance, I can&#8217;t see anyone&#8217;s card pool that couldn&#8217;t be made into, say, a two-colour deck with a third splash. (<strong>Edit:</strong> Now that I think about it, this is probably true of any 45 random cards. Hmm. Well, most of the pools have a strong leaning towards two or at most three colours, and Andrew C could almost get away with mono-green.)</p>
<p>Bizarrely, it&#8217;s drafted a red-blue deck for me instead of the white-green deck I actually played (although I did feel bad about not using that first-pick Lightning Bolt in the second pack).</p>
<p>There are a few hiccups because the training set of four drafts wasn&#8217;t big enough &#8211; there&#8217;s no way Ajani should have gone fifth pick, for example. I&#8217;m optimistic that throwing more data at it would make it better. In an ideal world, I&#8217;d somehow get hold of the results of every Magic Online draft to pump through it, and it would represent the collective wisdom of every online player everywhere.</p>
<p>In fact, if anyone from Wizards would like to do this, let me know. <img src='http://blog.dmcleish.id.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Actually, that&#8217;s not as silly as it sounds. (Well, letting <em>me</em> do it probably is.) There&#8217;s already an AI of some kind controlling the online <a href="http://www.wizards.com/Magic/Magazine/Article.aspx?x=mtg/daily/activity/261">draft simulator</a>. That could be something similar to my system, or it could just be a hand-crafted pick order along with some kind of futzing to get it to pick roughly consistent colours. It&#8217;d be interesting to find out how it works. (<em>But they&#8217;ll never tell us.</em>)</p>
<p>Interestingly, some kind of auto-picker could be useful for Magic Online. If you don&#8217;t pick a card within the time limit in an online draft, it randomly picks one for you. (At least, it was random last time I checked. I haven&#8217;t drafted online for a while.) MO has recurring problems with lag and dropped connections, so it would make a lot of people very happy to have an auto-drafter that makes vaguely intelligent choices when they can&#8217;t do it themselves.</p>
<p>Now, it can&#8217;t be <em>too</em> good, or you could start relying on it to do the draft for you. This could be a showstopper, since the outcome of a draft is supposed to depend on the players&#8217; skill. (In fact, there&#8217;s a good chance that someone in Wizards has already had this conversation.) But maybe an auto-drafter that&#8217;s not a genius, but knows not to take the basic land and will generally pick playable cards in your colours, would be just enough of a safety net that people wouldn&#8217;t be driven to mass killings when their connection drops. Maybe.</p>
<p>I might put the code up later (after I do a cleanup and/or rewrite &#8211; it&#8217;s pretty ugly right now). Meanwhile, keep reading for the results of the re-draft.</p>
<p><strong>Edit 2:</strong> I tried doubling, then quadrupling the effect of the already-drafted cards on the next pick. This puts nearly everyone solidly into two colours. (Unfortunately it leaves Mr Shellshear with an impressive blue-white deck, and anyone who remembers our first Lorwyn draft will realise what a bad idea <em>that</em> is. Apparently some people <em>do</em> just open all the good cards.) I&#8217;d post the new results, but I&#8217;m wary of picking at this too much, and would rather just leave the original results as they are until I get around to cleaning up the code.</p>
<p><span id="more-259"></span></p>
<h2 style="margin-top:16px; margin-bottom:0px;">Andrew S</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Blinding\sMage$/]" style="color:#7f7f7f; text-decoration:none;">Blinding Mage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sSwordsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Swordsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rhox\sPikemaster$/]" style="color:#7f7f7f; text-decoration:none;">Rhox Pikemaster</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Craw\sWurm$/]" style="color:#007f00; text-decoration:none;">Craw Wurm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Flashfreeze$/]" style="color:#00007f; text-decoration:none;">Flashfreeze</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Emerald\sOryx$/]" style="color:#007f00; text-decoration:none;">Emerald Oryx</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lurking\sPredators$/]" style="color:#007f00; text-decoration:none;">Lurking Predators</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prized\sUnicorn$/]" style="color:#007f00; text-decoration:none;">Prized Unicorn</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Relentless\sRats$/]" style="color:#000000; text-decoration:none;">Relentless Rats</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Megrim$/]" style="color:#000000; text-decoration:none;">Megrim</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sPiker$/]" style="color:#7f0000; text-decoration:none;">Goblin Piker</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Centaur\sCourser$/]" style="color:#007f00; text-decoration:none;">Centaur Courser</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Celestial\sPurge$/]" style="color:#7f7f7f; text-decoration:none;">Celestial Purge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Open\sthe\sVaults$/]" style="color:#7f7f7f; text-decoration:none;">Open the Vaults</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Assassinate$/]" style="color:#000000; text-decoration:none;">Assassinate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Glorious\sCharge$/]" style="color:#7f7f7f; text-decoration:none;">Glorious Charge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sign\sin\sBlood$/]" style="color:#000000; text-decoration:none;">Sign in Blood</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kelinore\sBat$/]" style="color:#000000; text-decoration:none;">Kelinore Bat</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lifelink$/]" style="color:#7f7f7f; text-decoration:none;">Lifelink</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Protean\sHydra$/]" style="color:#007f00; text-decoration:none;">Protean Hydra</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Guardian\sSeraph$/]" style="color:#7f7f7f; text-decoration:none;">Guardian Seraph</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Merfolk\sLooter$/]" style="color:#00007f; text-decoration:none;">Merfolk Looter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wurm's\sTooth$/]" style="color:#3f3f5f; text-decoration:none;">Wurm&#8217;s Tooth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFire$/]" style="color:#7f0000; text-decoration:none;">Wall of Fire</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bountiful\sHarvest$/]" style="color:#007f00; text-decoration:none;">Bountiful Harvest</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tome\sScour$/]" style="color:#00007f; text-decoration:none;">Tome Scour</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>12 white<br />
10 green<br />
7 black<br />
6 red<br />
5 blue<br />
4 land<br />
1 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David K</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drowned\sCatacomb$/]" style="color:#5f3f1f; text-decoration:none;">Drowned Catacomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Craw\sWurm$/]" style="color:#007f00; text-decoration:none;">Craw Wurm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Birds\sof\sParadise$/]" style="color:#007f00; text-decoration:none;">Birds of Paradise</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Diabolic\sTutor$/]" style="color:#000000; text-decoration:none;">Diabolic Tutor</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wind\sDrake$/]" style="color:#00007f; text-decoration:none;">Wind Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Horned\sTurtle$/]" style="color:#00007f; text-decoration:none;">Horned Turtle</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Runeclaw\sBear$/]" style="color:#007f00; text-decoration:none;">Runeclaw Bear</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Telepathy$/]" style="color:#00007f; text-decoration:none;">Telepathy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coral\sMerfolk$/]" style="color:#00007f; text-decoration:none;">Coral Merfolk</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Convincing\sMirage$/]" style="color:#00007f; text-decoration:none;">Convincing Mirage</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Nightmare$/]" style="color:#000000; text-decoration:none;">Nightmare</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Cudgel\sTroll$/]" style="color:#007f00; text-decoration:none;">Cudgel Troll</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prodigal\sPyromancer$/]" style="color:#7f0000; text-decoration:none;">Prodigal Pyromancer</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acidic\sSlime$/]" style="color:#007f00; text-decoration:none;">Acidic Slime</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Illusionary\sServant$/]" style="color:#00007f; text-decoration:none;">Illusionary Servant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elvish\sVisionary$/]" style="color:#007f00; text-decoration:none;">Elvish Visionary</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elvish\sVisionary$/]" style="color:#007f00; text-decoration:none;">Elvish Visionary</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kindled\sFury$/]" style="color:#7f0000; text-decoration:none;">Kindled Fury</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mist\sLeopard$/]" style="color:#007f00; text-decoration:none;">Mist Leopard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFaith$/]" style="color:#7f7f7f; text-decoration:none;">Wall of Faith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Overrun$/]" style="color:#007f00; text-decoration:none;">Overrun</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Whispersilk\sCloak$/]" style="color:#3f3f5f; text-decoration:none;">Whispersilk Cloak</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Righteousness$/]" style="color:#7f7f7f; text-decoration:none;">Righteousness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Prodigal\sPyromancer$/]" style="color:#7f0000; text-decoration:none;">Prodigal Pyromancer</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stampeding\sRhino$/]" style="color:#007f00; text-decoration:none;">Stampeding Rhino</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coral\sMerfolk$/]" style="color:#00007f; text-decoration:none;">Coral Merfolk</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unholy\sStrength$/]" style="color:#000000; text-decoration:none;">Unholy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shatter$/]" style="color:#7f0000; text-decoration:none;">Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
</tr>
</table>
<p>12 green<br />
10 blue<br />
8 white<br />
8 red<br />
3 black<br />
3 land<br />
1 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David MM</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Earthquake$/]" style="color:#7f0000; text-decoration:none;">Earthquake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howl\sof\sthe\sNight\sPack$/]" style="color:#007f00; text-decoration:none;">Howl of the Night Pack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howling\sMine$/]" style="color:#3f3f5f; text-decoration:none;">Howling Mine</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Merfolk\sLooter$/]" style="color:#00007f; text-decoration:none;">Merfolk Looter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bountiful\sHarvest$/]" style="color:#007f00; text-decoration:none;">Bountiful Harvest</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Shivan\sDragon$/]" style="color:#7f0000; text-decoration:none;">Shivan Dragon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon\sWhelp$/]" style="color:#7f0000; text-decoration:none;">Dragon Whelp</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tendrils\sof\sCorruption$/]" style="color:#000000; text-decoration:none;">Tendrils of Corruption</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Warpath\sGhoul$/]" style="color:#000000; text-decoration:none;">Warpath Ghoul</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Razorfoot\sGriffin$/]" style="color:#7f7f7f; text-decoration:none;">Razorfoot Griffin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ignite\sDisorder$/]" style="color:#7f0000; text-decoration:none;">Ignite Disorder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Kraken's\sEye$/]" style="color:#3f3f5f; text-decoration:none;">Kraken&#8217;s Eye</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Duress$/]" style="color:#000000; text-decoration:none;">Duress</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unholy\sStrength$/]" style="color:#000000; text-decoration:none;">Unholy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sleep$/]" style="color:#00007f; text-decoration:none;">Sleep</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Air\sElemental$/]" style="color:#00007f; text-decoration:none;">Air Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sElemental$/]" style="color:#7f0000; text-decoration:none;">Lightning Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Levitation$/]" style="color:#00007f; text-decoration:none;">Levitation</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Weakness$/]" style="color:#000000; text-decoration:none;">Weakness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Solemn\sOffering$/]" style="color:#7f7f7f; text-decoration:none;">Solemn Offering</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Convincing\sMirage$/]" style="color:#00007f; text-decoration:none;">Convincing Mirage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Spellbook$/]" style="color:#3f3f5f; text-decoration:none;">Spellbook</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>14 black<br />
9 blue<br />
8 red<br />
4 green<br />
4 land<br />
3 white<br />
3 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">David Mc</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon\sWhelp$/]" style="color:#7f0000; text-decoration:none;">Dragon Whelp</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sControl$/]" style="color:#00007f; text-decoration:none;">Mind Control</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divine\sVerdict$/]" style="color:#7f7f7f; text-decoration:none;">Divine Verdict</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Phantom\sWarrior$/]" style="color:#00007f; text-decoration:none;">Phantom Warrior</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Griffin\sSentinel$/]" style="color:#7f7f7f; text-decoration:none;">Griffin Sentinel</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Darksteel\sColossus$/]" style="color:#3f3f5f; text-decoration:none;">Darksteel Colossus</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disentomb$/]" style="color:#000000; text-decoration:none;">Disentomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Solemn\sOffering$/]" style="color:#7f7f7f; text-decoration:none;">Solemn Offering</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Unsummon$/]" style="color:#00007f; text-decoration:none;">Unsummon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^White\sKnight$/]" style="color:#7f7f7f; text-decoration:none;">White Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^White\sKnight$/]" style="color:#7f7f7f; text-decoration:none;">White Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dragon's\sClaw$/]" style="color:#3f3f5f; text-decoration:none;">Dragon&#8217;s Claw</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sPiker$/]" style="color:#7f0000; text-decoration:none;">Goblin Piker</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sage\sOwl$/]" style="color:#00007f; text-decoration:none;">Sage Owl</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jackal\sFamiliar$/]" style="color:#7f0000; text-decoration:none;">Jackal Familiar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Indestructibility$/]" style="color:#7f7f7f; text-decoration:none;">Indestructibility</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Terramorphic\sExpanse$/]" style="color:#5f3f1f; text-decoration:none;">Terramorphic Expanse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Polymorph$/]" style="color:#00007f; text-decoration:none;">Polymorph</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Coat\sof\sArms$/]" style="color:#3f3f5f; text-decoration:none;">Coat of Arms</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pyroclasm$/]" style="color:#7f0000; text-decoration:none;">Pyroclasm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divine\sVerdict$/]" style="color:#7f7f7f; text-decoration:none;">Divine Verdict</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Palace\sGuard$/]" style="color:#7f7f7f; text-decoration:none;">Palace Guard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Relentless\sRats$/]" style="color:#000000; text-decoration:none;">Relentless Rats</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Viashino\sSpearhunter$/]" style="color:#7f0000; text-decoration:none;">Viashino Spearhunter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
</tr>
</table>
<p>13 red<br />
11 blue<br />
8 white<br />
4 land<br />
3 black<br />
3 green<br />
3 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Andrew C</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stormfront\sPegasus$/]" style="color:#7f7f7f; text-decoration:none;">Stormfront Pegasus</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Borderland\sRanger$/]" style="color:#007f00; text-decoration:none;">Borderland Ranger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Palace\sGuard$/]" style="color:#7f7f7f; text-decoration:none;">Palace Guard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Black\sKnight$/]" style="color:#000000; text-decoration:none;">Black Knight</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Enormous\sBaloth$/]" style="color:#007f00; text-decoration:none;">Enormous Baloth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deathmark$/]" style="color:#000000; text-decoration:none;">Deathmark</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mist\sLeopard$/]" style="color:#007f00; text-decoration:none;">Mist Leopard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wurm's\sTooth$/]" style="color:#3f3f5f; text-decoration:none;">Wurm&#8217;s Tooth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jump$/]" style="color:#00007f; text-decoration:none;">Jump</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burst\sof\sSpeed$/]" style="color:#7f0000; text-decoration:none;">Burst of Speed</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Chandra\sNalaar$/]" style="color:#7f0000; text-decoration:none;">Chandra Nalaar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howl\sof\sthe\sNight\sPack$/]" style="color:#007f00; text-decoration:none;">Howl of the Night Pack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Cudgel\sTroll$/]" style="color:#007f00; text-decoration:none;">Cudgel Troll</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Celestial\sPurge$/]" style="color:#7f7f7f; text-decoration:none;">Celestial Purge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Windstorm$/]" style="color:#007f00; text-decoration:none;">Windstorm</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fiery\sHellhound$/]" style="color:#7f0000; text-decoration:none;">Fiery Hellhound</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Diabolic\sTutor$/]" style="color:#000000; text-decoration:none;">Diabolic Tutor</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Nature's\sSpiral$/]" style="color:#007f00; text-decoration:none;">Nature&#8217;s Spiral</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mold\sAdder$/]" style="color:#007f00; text-decoration:none;">Mold Adder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mold\sAdder$/]" style="color:#007f00; text-decoration:none;">Mold Adder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Great\sSable\sStag$/]" style="color:#007f00; text-decoration:none;">Great Sable Stag</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Pacifism$/]" style="color:#7f7f7f; text-decoration:none;">Pacifism</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rod\sof\sRuin$/]" style="color:#3f3f5f; text-decoration:none;">Rod of Ruin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Centaur\sCourser$/]" style="color:#007f00; text-decoration:none;">Centaur Courser</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Emerald\sOryx$/]" style="color:#007f00; text-decoration:none;">Emerald Oryx</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sSpider$/]" style="color:#007f00; text-decoration:none;">Giant Spider</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ornithopter$/]" style="color:#3f3f5f; text-decoration:none;">Ornithopter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Naturalize$/]" style="color:#007f00; text-decoration:none;">Naturalize</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tome\sScour$/]" style="color:#00007f; text-decoration:none;">Tome Scour</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
</tr>
</table>
<p>20 green<br />
9 white<br />
4 red<br />
3 blue<br />
3 black<br />
3 artifact<br />
3 land</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Steven</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Giant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Giant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bog\sWraith$/]" style="color:#000000; text-decoration:none;">Bog Wraith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightwielder\sPaladin$/]" style="color:#7f7f7f; text-decoration:none;">Lightwielder Paladin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Vampire\sAristocrat$/]" style="color:#000000; text-decoration:none;">Vampire Aristocrat</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rampant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Rampant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Armored\sAscension$/]" style="color:#7f7f7f; text-decoration:none;">Armored Ascension</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Act\sof\sTreason$/]" style="color:#7f0000; text-decoration:none;">Act of Treason</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fabricate$/]" style="color:#00007f; text-decoration:none;">Fabricate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fog$/]" style="color:#007f00; text-decoration:none;">Fog</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Yawning\sFissure$/]" style="color:#7f0000; text-decoration:none;">Yawning Fissure</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Hypnotic\sSpecter$/]" style="color:#000000; text-decoration:none;">Hypnotic Specter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sShatter$/]" style="color:#000000; text-decoration:none;">Mind Shatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Terramorphic\sExpanse$/]" style="color:#5f3f1f; text-decoration:none;">Terramorphic Expanse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Child\sof\sNight$/]" style="color:#000000; text-decoration:none;">Child of Night</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Dread\sWarlock$/]" style="color:#000000; text-decoration:none;">Dread Warlock</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wall\sof\sFrost$/]" style="color:#00007f; text-decoration:none;">Wall of Frost</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Excommunicate$/]" style="color:#7f7f7f; text-decoration:none;">Excommunicate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mind\sRot$/]" style="color:#000000; text-decoration:none;">Mind Rot</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Holy\sStrength$/]" style="color:#7f7f7f; text-decoration:none;">Holy Strength</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lightning\sBolt$/]" style="color:#7f0000; text-decoration:none;">Lightning Bolt</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Doom\sBlade$/]" style="color:#000000; text-decoration:none;">Doom Blade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rhox\sPikemaster$/]" style="color:#7f7f7f; text-decoration:none;">Rhox Pikemaster</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Consume\sSpirit$/]" style="color:#000000; text-decoration:none;">Consume Spirit</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ice\sCage$/]" style="color:#00007f; text-decoration:none;">Ice Cage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Howling\sBanshee$/]" style="color:#000000; text-decoration:none;">Howling Banshee</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Soul\sWarden$/]" style="color:#7f7f7f; text-decoration:none;">Soul Warden</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Looming\sShade$/]" style="color:#000000; text-decoration:none;">Looming Shade</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lava\sAxe$/]" style="color:#7f0000; text-decoration:none;">Lava Axe</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sFeather$/]" style="color:#3f3f5f; text-decoration:none;">Angel&#8217;s Feather</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Lifelink$/]" style="color:#7f7f7f; text-decoration:none;">Lifelink</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Firebreathing$/]" style="color:#7f0000; text-decoration:none;">Firebreathing</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Swamp$/]" style="color:#5f3f1f; text-decoration:none;">Swamp</a>
</td>
</tr>
</table>
<p>14 black<br />
11 white<br />
7 red<br />
4 blue<br />
4 green<br />
4 land<br />
1 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Darren</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Berserkers\sof\sBlood\sRidge$/]" style="color:#7f0000; text-decoration:none;">Berserkers of Blood Ridge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Soul\sWarden$/]" style="color:#7f7f7f; text-decoration:none;">Soul Warden</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Deadly\sRecluse$/]" style="color:#007f00; text-decoration:none;">Deadly Recluse</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ajani\sGoldmane$/]" style="color:#7f7f7f; text-decoration:none;">Ajani Goldmane</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Wind\sDrake$/]" style="color:#00007f; text-decoration:none;">Wind Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Panic\sAttack$/]" style="color:#7f0000; text-decoration:none;">Panic Attack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fabricate$/]" style="color:#00007f; text-decoration:none;">Fabricate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Raging\sGoblin$/]" style="color:#7f0000; text-decoration:none;">Raging Goblin</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disorient$/]" style="color:#00007f; text-decoration:none;">Disorient</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Bramble\sCreeper$/]" style="color:#007f00; text-decoration:none;">Bramble Creeper</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ball\sLightning$/]" style="color:#7f0000; text-decoration:none;">Ball Lightning</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serra\sAngel$/]" style="color:#7f7f7f; text-decoration:none;">Serra Angel</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Elite\sVanguard$/]" style="color:#7f7f7f; text-decoration:none;">Elite Vanguard</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Llanowar\sElves$/]" style="color:#007f00; text-decoration:none;">Llanowar Elves</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Oakenform$/]" style="color:#007f00; text-decoration:none;">Oakenform</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Siege\sMastodon$/]" style="color:#7f7f7f; text-decoration:none;">Siege Mastodon</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Regenerate$/]" style="color:#007f00; text-decoration:none;">Regenerate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Naturalize$/]" style="color:#007f00; text-decoration:none;">Naturalize</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Plains$/]" style="color:#5f3f1f; text-decoration:none;">Plains</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gravedigger$/]" style="color:#000000; text-decoration:none;">Gravedigger</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stone\sGiant$/]" style="color:#7f0000; text-decoration:none;">Stone Giant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Clone$/]" style="color:#00007f; text-decoration:none;">Clone</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sArmorsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Armorsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Righteousness$/]" style="color:#7f7f7f; text-decoration:none;">Righteousness</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Entangling\sVines$/]" style="color:#007f00; text-decoration:none;">Entangling Vines</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rise\sfrom\sthe\sGrave$/]" style="color:#000000; text-decoration:none;">Rise from the Grave</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Alluring\sSiren$/]" style="color:#00007f; text-decoration:none;">Alluring Siren</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Panic\sAttack$/]" style="color:#7f0000; text-decoration:none;">Panic Attack</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Ponder$/]" style="color:#00007f; text-decoration:none;">Ponder</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sage\sOwl$/]" style="color:#00007f; text-decoration:none;">Sage Owl</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disorient$/]" style="color:#00007f; text-decoration:none;">Disorient</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Jackal\sFamiliar$/]" style="color:#7f0000; text-decoration:none;">Jackal Familiar</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Forest$/]" style="color:#5f3f1f; text-decoration:none;">Forest</a>
</td>
</tr>
</table>
<p>12 blue<br />
10 white<br />
9 green<br />
8 red<br />
3 black<br />
3 land<br />
0 artifact</p>
<h2 style="margin-top:16px; margin-bottom:0px;">Michelle</h2>
<table border="0">
<tr>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Divination$/]" style="color:#00007f; text-decoration:none;">Divination</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Goblin\sArtillery$/]" style="color:#7f0000; text-decoration:none;">Goblin Artillery</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Sparkmage\sApprentice$/]" style="color:#7f0000; text-decoration:none;">Sparkmage Apprentice</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Essence\sScatter$/]" style="color:#00007f; text-decoration:none;">Essence Scatter</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Phantom\sWarrior$/]" style="color:#00007f; text-decoration:none;">Phantom Warrior</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gargoyle\sCastle$/]" style="color:#5f3f1f; text-decoration:none;">Gargoyle Castle</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Illusionary\sServant$/]" style="color:#00007f; text-decoration:none;">Illusionary Servant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zombie\sGoliath$/]" style="color:#000000; text-decoration:none;">Zombie Goliath</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zephyr\sSprite$/]" style="color:#00007f; text-decoration:none;">Zephyr Sprite</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Zombie\sGoliath$/]" style="color:#000000; text-decoration:none;">Zombie Goliath</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Act\sof\sTreason$/]" style="color:#7f0000; text-decoration:none;">Act of Treason</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Demon's\sHorn$/]" style="color:#3f3f5f; text-decoration:none;">Demon&#8217;s Horn</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Whispersilk\sCloak$/]" style="color:#3f3f5f; text-decoration:none;">Whispersilk Cloak</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Gorgon\sFlail$/]" style="color:#3f3f5f; text-decoration:none;">Gorgon Flail</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Veteran\sSwordsmith$/]" style="color:#7f7f7f; text-decoration:none;">Veteran Swordsmith</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Twincast$/]" style="color:#00007f; text-decoration:none;">Twincast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Rampant\sGrowth$/]" style="color:#007f00; text-decoration:none;">Rampant Growth</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Inferno\sElemental$/]" style="color:#7f0000; text-decoration:none;">Inferno Elemental</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Snapping\sDrake$/]" style="color:#00007f; text-decoration:none;">Snapping Drake</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Negate$/]" style="color:#00007f; text-decoration:none;">Negate</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Seismic\sStrike$/]" style="color:#7f0000; text-decoration:none;">Seismic Strike</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Canyon\sMinotaur$/]" style="color:#7f0000; text-decoration:none;">Canyon Minotaur</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Megrim$/]" style="color:#000000; text-decoration:none;">Megrim</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Serpent\sof\sthe\sEndless\sSea$/]" style="color:#00007f; text-decoration:none;">Serpent of the Endless Sea</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Burning\sInquiry$/]" style="color:#7f0000; text-decoration:none;">Burning Inquiry</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Angel's\sMercy$/]" style="color:#7f7f7f; text-decoration:none;">Angel&#8217;s Mercy</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Mountain$/]" style="color:#5f3f1f; text-decoration:none;">Mountain</a>
</td>
<td>
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Fireball$/]" style="color:#7f0000; text-decoration:none;">Fireball</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Stone\sGiant$/]" style="color:#7f0000; text-decoration:none;">Stone Giant</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Manabarbs$/]" style="color:#7f0000; text-decoration:none;">Manabarbs</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Harm's\sWay$/]" style="color:#7f7f7f; text-decoration:none;">Harm&#8217;s Way</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Tendrils\sof\sCorruption$/]" style="color:#000000; text-decoration:none;">Tendrils of Corruption</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Safe\sPassage$/]" style="color:#7f7f7f; text-decoration:none;">Safe Passage</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Llanowar\sElves$/]" style="color:#007f00; text-decoration:none;">Llanowar Elves</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Glorious\sCharge$/]" style="color:#7f7f7f; text-decoration:none;">Glorious Charge</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Drudge\sSkeletons$/]" style="color:#000000; text-decoration:none;">Drudge Skeletons</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Acolyte\sof\sXathrid$/]" style="color:#000000; text-decoration:none;">Acolyte of Xathrid</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Silvercoat\sLion$/]" style="color:#7f7f7f; text-decoration:none;">Silvercoat Lion</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Runeclaw\sBear$/]" style="color:#007f00; text-decoration:none;">Runeclaw Bear</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Disentomb$/]" style="color:#000000; text-decoration:none;">Disentomb</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Trumpet\sBlast$/]" style="color:#7f0000; text-decoration:none;">Trumpet Blast</a><br />
<a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[m/^Island$/]" style="color:#5f3f1f; text-decoration:none;">Island</a>
</td>
</tr>
</table>
<p>11 red<br />
9 blue<br />
8 black<br />
7 white<br />
4 land<br />
3 green<br />
3 artifact</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/08/29/magic-auto-drafter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multicolour Magic</title>
		<link>http://blog.dmcleish.id.au/2009/08/26/multicolour-magic/</link>
		<comments>http://blog.dmcleish.id.au/2009/08/26/multicolour-magic/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 05:29:22 +0000</pubDate>
		<dc:creator>David McLeish</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.dmcleish.id.au/?p=243</guid>
		<description><![CDATA[In last night this morning&#8217;s post I talked a bit about how I missed Magic: the Gathering&#8217;s ability to support mono-colour decks during the recent tri-colour-focused Alara block. So now I&#8217;m going to jot down some thoughts about how a Magic expansion could revisit a multi-colour theme (which it probably will) without giving up the [...]]]></description>
			<content:encoded><![CDATA[<p>In <span style="text-decoration: line-through;">last night</span> <a href="http://blog.dmcleish.id.au/2009/08/26/cant-sleep/">this morning&#8217;s post</a> I talked a bit about how I missed <em>Magic: the Gathering</em>&#8217;s ability to support mono-colour decks during the recent tri-colour-focused Alara block. So now I&#8217;m going to jot down some thoughts about how a Magic expansion could revisit a multi-colour theme (which it probably will) without giving up the reward for focusing on one colour.</p>
<p>The high concept is a plane that&#8217;s struggling against segregation based on mana colour alignment. (There&#8217;s an obvious political/moral statement in here that Wizards would probably be well-advised to avoid.) The inhabitants of the plane have, for most of their history, kept separate communities that are very strongly aligned with one colour. However, in more recent times a growing number of radicals have started coming together as a &#8220;mixed&#8221; faction that blends all five colours.</p>
<p>Naturally, there&#8217;s tension between these groups. The new faction sees this as an opportunity to combine the best of each of the colours, compensate for the weakness of each, and create something new that&#8217;s better than the sum of its parts. The traditional, segregated communities (most of which consider their own colour to be self-evidently superior to the others) see this multi-colour business as heresy, a watering-down of the pure, separate sources of mana that are at the foundation of magic. Paradoxically, there&#8217;s a kind of uneasy consensus among the mono-colourists that the new threat is a bigger problem than their existing diffences; they&#8217;re not going to actively cooperate with each other, but they might develop attacks that are more effective against &#8220;mixed&#8221; heretics than against each other (<a href="http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=107342">example</a>).</p>
<p>Mechanically, the cards (not all of them, necessarily &#8211; there could be some non-aligned cards, like in Ravnica block) would fall into two categories. Mono-colour cards would reward a heavy investment in that colour, with abilities like <a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?action=advanced&amp;text=+[%22chroma%20%22]">Chroma</a> and heavily coloured costs like <a href="http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=189906">Overrun</a>. Multicolour cards would reward colour diversity, revisiting <a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?action=advanced&amp;text=+[%22domain%20%22]">Domain</a> and WUBRG cards (<a href="http://www.wizards.com/Magic/Magazine/Article.aspx?x=mtg/daily/mm/53">Mark Rosewater said recently</a> that he would have taken the five-colour theme out of Conflux in hindsight, so they could plausibly take another swing at it), and other shenanigans like <a href="http://gatherer.wizards.com/Pages/Search/Default.aspx?text=+[sunburst]">Sunburst</a>. Mana fixing and multilands would mostly fall in the latter category &#8211; something like the Ravnica block bouncelands that makes multi-colour costs easier to pay while making it hard to generate lots of the same colour.</p>
<p>The optimal decks &#8211; for constructed play, at least &#8211; should be (a) mono-colour and (b) five-colour. Ideally, both (technically, all six) of these archetypes should be feasible in draft as well. (I&#8217;m not sure how this would work for sealed.) Drafting a mono-colour deck with no splash would probably be a lofty goal rather than something you achieve in most drafts, but there should be cards that reward you the closer you get to it. (Quick idea: an undercosted mono creature with &#8220;whenever you play a non-[this creature's colour] spell, sacrifice [this]&#8220;.)</p>
<p>Anyway, that&#8217;s the idea. Thoughts? Job offers from <a href="http://www.wizards.com/">WotC</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dmcleish.id.au/2009/08/26/multicolour-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

