*Author

Offline rob77dp

  • Master of Death
  • *
  • ******
  • Posts: 2861
  • Country: us
  • Reputation Power: 59
  • rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.
  • Am I back?!? Time zone US Central -5/-6GMT
  • Awards: Slice of Elements 13th Birthday Cake14th Trials - Master of DeathWeekly Tournament Winner (2020.08.16.)Slice of Elements 11th Birthday CakeSlice of Elements 10th Birthday CakeWinner of Team PvP #812th Trials - Master of DeathWinner of 12 Lives #4Slice of Elements 9th Birthday CakeSlice of Elements 8th Birthday CakeForum Brawl #6 Winner - The Tentacle's Grip10th Trials - Master of DeathWeekly Tournament WinnerSlice of Elements 7th Birthday CakeTeam Competition - The Spy Who EMed MeGold Donor9th Trials - Master of DeathSlice of Elements 6th Birthday CakeSlice of Elements 5th Birthday Cake7th Trials - Master of Death
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285981#msg1285981
« Reply #36 on: February 16, 2019, 05:18:29 am »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P
Death War #12/TBD TTG Brawl #6/1st Death War #10/9th GP Brawl #5/6th Death War #9/9th MoL Brawl #4/3rd Water War #8/7th DDD Brawl #3/3rd*Death War #7/5th*Death War #6/11th

Offline worldwideweb3

  • Master of Air
  • *
  • Posts: 3414
  • Country: gb
  • Reputation Power: 63
  • worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!
  • Awards: Slice of Elements 12th Birthday CakeWeekly Tournament Winner (2021.01.03.)Weekly Tournament Winner (2020.11.22.)14th Trials - Master of AirWeekly Tournament Winner (2020.06.28.)Weekly Tournament WinnerWeekly Tournament Winner (2020.05.03.)Elements League 3/2019 2nd PlaceSlice of Elements 10th Birthday CakeElements League 3/2018 1st PlaceWinner of Team PvP #812th Trials - Master of AetherElements: Academy WinnerWeekly Tournament WinnerWeekly Tournament WinnerElements League 2/2017 3rd PlaceWinner of Draft #4 - PvP Event11th Trials - Master of FireBattle League 1/2017 1st PlaceWeekly Tournament WinnerBattle League and Championship League 3/2016 1st PlaceChampionship League 2/2016 1st Place10th Trials - Master of GravityChampionship League 1/2016 2nd PlaceWeekly Tournament WinnerChampionship League 3/2015 3rd PlaceWeekly Tournament WinnerChampionship League 1/2015 1st PlaceWar #8 Winner - Team FireBattle League 2/2014 2nd Place
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285985#msg1285985
« Reply #37 on: February 16, 2019, 09:22:10 am »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P

I didn’t realise you had to be reasonably good at coding to do well in war.
First player to become master of 3 different elements.
WC 2016 - #2. WC 2015 - #3 Devil's gate, Trinity, War #10, 12 lives - #2.
Avvy by rob77dp
Rightful winner of war #14 - Team Air

Offline TheonlyrealBeef

  • Master of Darkness
  • *
  • *
  • *
  • Posts: 4058
  • Country: nl
  • Reputation Power: 61
  • TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!
  • Do not underestimate the power of the dark side!
  • Awards: War #14 Winner - Team Aether14th Trials - Master of Darkness2019 - PvP World ChampionSlice of Elements 11th Birthday CakeWar #13 Winner - Team Darkness13th Trials - Master of DarknessWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament Winner4th Grandmaster Battle Winner - DarknessGold DonorSlice of Elements 10th Birthday CakeWar #12 Winner - Team DarknessWeekly Tournament Winner12th Trials - Master of DarknessWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 9th Birthday Cake2017 - PvP World ChampionWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 8th Birthday CakeWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerBattle League 3/2016 2nd PlaceWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 3rd Birthday CakeTeam PvP #4 Winner5th Trials - Master of Darkness4th Trials - Master of Darkness3rd Trials - Master of DarknessWeekly Tournament WinnerMS Paint Card Art #2 Winner
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285988#msg1285988
« Reply #38 on: February 16, 2019, 11:36:51 am »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P

I didn’t realise you had to be reasonably good at coding to do well in war.
Devs are essential for war.

Offline rob77dp

  • Master of Death
  • *
  • ******
  • Posts: 2861
  • Country: us
  • Reputation Power: 59
  • rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.rob77dp is truly a Titan, worthy of respect and acknowledgement.
  • Am I back?!? Time zone US Central -5/-6GMT
  • Awards: Slice of Elements 13th Birthday Cake14th Trials - Master of DeathWeekly Tournament Winner (2020.08.16.)Slice of Elements 11th Birthday CakeSlice of Elements 10th Birthday CakeWinner of Team PvP #812th Trials - Master of DeathWinner of 12 Lives #4Slice of Elements 9th Birthday CakeSlice of Elements 8th Birthday CakeForum Brawl #6 Winner - The Tentacle's Grip10th Trials - Master of DeathWeekly Tournament WinnerSlice of Elements 7th Birthday CakeTeam Competition - The Spy Who EMed MeGold Donor9th Trials - Master of DeathSlice of Elements 6th Birthday CakeSlice of Elements 5th Birthday Cake7th Trials - Master of Death
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285991#msg1285991
« Reply #39 on: February 16, 2019, 02:37:31 pm »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P

I didn’t realise you had to be reasonably good at coding to do well in war.
... You don't, Aether seems to be doing just fine as you are, no? 😉
Death War #12/TBD TTG Brawl #6/1st Death War #10/9th GP Brawl #5/6th Death War #9/9th MoL Brawl #4/3rd Water War #8/7th DDD Brawl #3/3rd*Death War #7/5th*Death War #6/11th

Offline Zawadx

  • Legendary Member
  • ******
  • Posts: 3197
  • Country: aq
  • Reputation Power: 53
  • Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.Zawadx brings all the vitality and activity of a Life Nymph.
  • Officially Eisoptrophobic
  • Awards: Slice of Elements 8th Birthday CakeSlice of Elements 7th Birthday CakeWeekly Tournament WinnerCompetition - Won War as a Worthless WarriorWeekly Tournament WinnerSlice of Elements 6th Birthday CakeWar #8 Winner - Team FireBrawl #3 Winner - Divine LightSlice of Elements 5th Birthday Cake
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285993#msg1285993
« Reply #40 on: February 16, 2019, 03:13:37 pm »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P

I didn’t realise you had to be reasonably good at coding to do well in war.

I can... code in google sheets....
When you play the game of thrones, you win or you die. There is no middle ground.

Offline worldwideweb3

  • Master of Air
  • *
  • Posts: 3414
  • Country: gb
  • Reputation Power: 63
  • worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!
  • Awards: Slice of Elements 12th Birthday CakeWeekly Tournament Winner (2021.01.03.)Weekly Tournament Winner (2020.11.22.)14th Trials - Master of AirWeekly Tournament Winner (2020.06.28.)Weekly Tournament WinnerWeekly Tournament Winner (2020.05.03.)Elements League 3/2019 2nd PlaceSlice of Elements 10th Birthday CakeElements League 3/2018 1st PlaceWinner of Team PvP #812th Trials - Master of AetherElements: Academy WinnerWeekly Tournament WinnerWeekly Tournament WinnerElements League 2/2017 3rd PlaceWinner of Draft #4 - PvP Event11th Trials - Master of FireBattle League 1/2017 1st PlaceWeekly Tournament WinnerBattle League and Championship League 3/2016 1st PlaceChampionship League 2/2016 1st Place10th Trials - Master of GravityChampionship League 1/2016 2nd PlaceWeekly Tournament WinnerChampionship League 3/2015 3rd PlaceWeekly Tournament WinnerChampionship League 1/2015 1st PlaceWar #8 Winner - Team FireBattle League 2/2014 2nd Place
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1285996#msg1285996
« Reply #41 on: February 16, 2019, 05:06:15 pm »
To celebrate DoubleCapitals fixing the formatting of his post for my minor convenience, going to share a python script that pulls in the decks played in a round. Invoke with a parameter of the URL of the round

Spoiler for code:
Code: [Select]
import asyncio
import aiohttp
from bs4 import BeautifulSoup
import re
import csv

deckcode = re.compile(r'([4-8][0-9a-v]{2} ){30,60}8p[j-u]')

writer = csv.writer(open('result.csv', 'w'), quoting=csv.QUOTE_MINIMAL)

sema = asyncio.BoundedSemaphore(16)
async def getsite(url, parser = 'html.parser'):
async with aiohttp.ClientSession() as session:
async with sema, session.get(url) as resp:
return BeautifulSoup((await resp.read()).decode('utf-8', errors='surrogateescape'), parser)

async def processMatch(x):
a = x.div.span.span.a
title = a.text
soup = await getsite(a['href'])
deckposts = soup.find_all('div', class_='post')
decks = [None, None]
for (post, i) in zip(deckposts, range(2)):
dcode = deckcode.search(post.get_text())
decks[i] = dcode and dcode[0]
writer.writerow((title.replace(',', '-'), a['href'], *decks))


async def processRound(a, page = 1):
pages = []
while a:
soup = await getsite(a)
pages.append(asyncio.gather(*(
processMatch(a) for a in soup.find_all('td', class_='subject windowbg2'))))
page += 1
a = soup.find('a', class_='navPages', text=str(page))
await asyncio.gather(*pages)

async def main():
from sys import argv
await processRound(argv[-1])

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

I'm a nub when it comes to this. Anyone feel like sharing all decks used list for this war?
You didn't draft anyone who "can code a few things here and there" to your team? Nub-Gen-www3. :P

I didn’t realise you had to be reasonably good at coding to do well in war.
... You don't, Aether seems to be doing just fine as you are, no? 😉

We would’ve been 20-0 if I was able to get the decks used through that code.
First player to become master of 3 different elements.
WC 2016 - #2. WC 2015 - #3 Devil's gate, Trinity, War #10, 12 lives - #2.
Avvy by rob77dp
Rightful winner of war #14 - Team Air

Offline MasterWalks

  • Sr. Member
  • ****
  • Posts: 559
  • Country: us
  • Reputation Power: 0
  • MasterWalks hides under a Cloak.
  • 12 year old mobile gamer
  • Awards: Slice of Elements 13th Birthday CakeSlice of Elements 12th Birthday CakeWeekly Tournament Winner (2020.12.06.)Slice of Elements 11th Birthday CakeWar #13 Winner - Team DarknessSlice of Elements 10th Birthday CakeWriting Competition: The Elemental Cookbook - A Compendium and Comprehensive Compilation of Culinary Creations WinnerWeekly Tournament WinnerBronze DonorTeam Deckbuilding/Writing Competition - A Matter of Logistics Winner
Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286099#msg1286099
« Reply #42 on: February 18, 2019, 12:35:49 am »
All decks used R1-R3. Enjoy

Spoiler for Hidden:
    :entropy Entropy :entropy
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4t3 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vf 4vf 4vf 50u 50u 50u 52l 52u 52u 52u 52u 52u 6tv 6tv 6u2 6u2 6u2 6u2 6u2 6u2 8pk

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vp 4vp 4vp 4vp 4vp 50u 50u 50u 50u 50u 50u 50u 52g 52o 52o 52o 52o 52r 52r 52r 52r 542 6tv 6tv 6ve 6ve 718 718 71a 71a 8pk

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sj 4vc 4vl 4vl 4vl 50u 50u 50u 50u 50u 61q 61q 61r 61r 61r 61r 624 624 6tv 6tv 6tv 6tv 6tv 6ve 6ve 6ve 6ve 6ve 6ve 6ve 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vf 4vf 4vl 50u 50u 50u 50u 50u 50u 50u 55v 55v 55v 55v 55v 6u5 6u5 6u5 6ve 6ve 6ve 6ve 6ve 6ve 745 745 745 747 752 7n2 8pl

    Spoiler for Round 2:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vp 4vp 4vp 4vp 4vp 50u 50u 50u 50u 50u 50u 52g 52o 52o 52q 52q 52q 52r 52r 52r 52r 542 6tv 6ve 6ve 6ve 718 718 718 718 8pk

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 50u 50u 50u 50u 50u 50u 50u 50u 50u 61t 61t 622 622 6tv 6tv 6tv 6u5 6u5 80d 80d 80d 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vl 4vl 4vl 4vl 50u 50u 50u 50u 50u 50u 50u 50u 55k 55k 55k 55k 55v 56i 6u2 6u2 6u2 6u2 6u2 6u2 745 745 745 745 745 752 8pl

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vl 4vl 4vl 50u 50u 50u 50u 50u 50u 61r 61r 61r 61r 61r 61r 6tv 6tv 6tv 6tv 6u2 6u2 6ve 6ve 6ve 6ve 6ve 6ve 6ve 6ve 6ve 8pu

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sj 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vg 4vg 4vg 4vg 4vq 50u 50u 50u 5ro 6ts 6ts 6ts 6ts 6ts 6ts 6ve 6ve 8ps

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vp 4vp 4vp 4vp 4vp 50u 50u 50u 50u 50u 50u 52o 52q 52q 52q 6tv 6ve 6ve 6ve 710 718 718 718 718 718 71b 71b 71b 71b 72i 8pk

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vp 4vp 4vp 4vp 4vp 4vp 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 50u 5ia 5jm 5jm 5m6 5m6 5m6 5m6 5m6 5m6 6u7 6u7 6u7 6u7 6u7 6u7 7k2 7k2 7k2 7k2 7k2 7k2 8pq

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vc 4vn 4vn 4vn 4vn 4vn 4vn 50u 50u 5f6 5f6 5f6 5f6 5f6 5f6 6tt 6tt 6tt 6tt 6tt 6ve 6ve 6ve 8po


    :death Death  :death
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    542 542 542 542 542 542 542 542 542 542 542 542 542 542 61t 61t 61t 61t 61t 61t 622 622 622 624 711 713 713 718 718 718 71a 71a 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52r 52r 52r 52r 542 542 542 542 542 542 542 542 542 542 542 5f4 5f4 5f4 5f4 5f4 5f4 5f7 5f7 718 718 718 718 718 718 7do 7do 8po

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52g 52g 52o 542 542 542 542 542 542 5vi 5vi 5vi 5vi 5vi 5vi 71b 71b 71b 71b 7q9 7q9 7q9 7q9 7q9 7q9 7tb 7tb 8pt

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sk 4sk 4sk 52g 52g 52g 52g 52g 534 534 534 542 542 542 542 713 713 713 713 713 713 715 715 718 718 718 718 718 718 71a 8pk

    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vj 4vj 4vj 4vj 4vj 4vh 52g 52g 52g 542 542 542 52t 52t 52t 52t 52t 55q 590 590 590 5c1 71a 71a 713 713 713 77g 7dm 7dm 8pm

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52g 52g 52g 52o 52o 52o 52o 52o 542 542 542 542 542 542 5oi 5oo 5oo 5oo 5oo 5oo 713 713 713 713 713 71a 71a 71a 8pr

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52r 52r 52r 542 542 542 542 542 542 542 5l8 5l8 5l8 5m6 5m6 5m6 5mq 5mq 61q 61q 61q 61q 61q 61q 71u 71u 71u 71u 71u 71u 7q9 7q9 7q9 7q9 7q9 7q9 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52g 534 534 534 542 542 542 542 542 542 542 5up 5up 71b 71b 71b 71b 7t7 7t7 7t7 7t7 7t7 7ta 7tb 7tb 7tg 7tg 7tg 8pt

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    542 542 542 542 542 542 542 542 542 542 61t 61t 61t 61t 61t 61t 713 713 713 71a 71a 71a 72i 72i 72i 72i 72i 72i 80i 80i 80i 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52g 52g 52g 52g 52g 52g 52g 52g 52g 52h 52h 52t 52t 52t 713 713 713 713 713 713 7q4 7q4 7q4 7q4 7q4 7q4 8ps

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vh 4vh 4vj 4vj 4vj 4vj 4vj 4vj 52g 52g 52g 52q 52q 542 542 542 542 5oo 5oo 5oo 5oo 5oo 713 713 713 713 713 7dm 7dm 7dm 8pr

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52g 52g 52g 52h 542 542 542 542 542 542 542 542 542 61q 61q 61q 622 622 622 622 624 713 713 713 71a 71a 80a 80a 80a 8pu


    :earth Earth  :earth
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 58o 58o 58o 58o 58o 58o 58o 592 592 595 595 595 59c 59c 59c 5aa 5aa 5aa 5aa 5aa 5aa 5aa 6u7 6u7 6u7 6u7 6u8 6u8 778 77c 77c 77m 77m 77m 77m 77m 78q 8pj

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 58o 58o 58o 58o 58o 58o 58o 58p 58p 596 596 596 596 596 596 59c 59c 59c 59c 5j2 5j2 77e 77e 77e 77e 77e 77e 7hi 7hi 8pp

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 4sm 4sm 55t 55t 58o 58o 58o 59c 59c 59c 59c 59c 5aa 5aa 5aa 5aa 5aa 745 745 745 745 77e 77e 77e 77f 77f 78q 78q 78q 8pl

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vh 4vj 4vj 4vj 4vj 4vj 4vj 55t 55t 55t 58o 58v 58v 590 590 590 590 590 595 5aa 5aa 5c1 71a 77c 77e 77e 77e 77e 77e 7th 8pl

    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    58o 58o 58o 58o 58o 58o 58o 58o 58o 58o 595 595 5aa 5aa 5aa 5aa 5v1 5v1 77a 77a 77a 77a 77a 77a 77s 77s 7t9 7t9 7tb 7tb 8pt

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 4vh 4vj 4vj 4vj 4vj 4vj 4vj 55t 55t 58o 58o 590 590 590 590 590 595 595 5c1 5oi 61q 77a 77a 77e 77e 77e 77f 77f 7tb 8pl

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 55t 55t 55t 58o 58o 58o 59c 59c 59c 5aa 5aa 5aa 5aa 5aa 745 745 745 778 77a 77a 77a 77e 77e 77e 77e 77f 77f 78q 78q 8pl

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 58o 58o 58o 58o 58o 58o 58o 58o 590 595 595 595 595 5aa 5aa 5aa 5aa 5rk 5rk 5rk 5rk 6rk 77a 77a 77g 77g 77g 77g 77g 8ps

    Spoiler for Round 3:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    58p 58p 58p 596 596 596 596 596 596 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5ib 5ib 5j2 77e 77e 77e 77e 77e 77e 7hi 7hi 8pp

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sm 4vh 4vj 4vj 4vj 4vj 4vj 4vj 4vl 4vl 4vl 4vl 58o 58o 5c1 778 778 778 778 77a 77a 77a 77a 77g 77g 77g 77g 77g 7dm 7dm 8pj

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    58s 58s 595 595 595 595 595 595 5aa 5aa 5up 5up 5vi 5vi 5vi 5vi 5vi 5vi 78q 78q 78q 78q 78q 7tb 7tb 7tc 7tc 7tc 7tc 7tc 8pt

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    595 595 595 595 595 59c 5bs 5c5 5c5 5c5 5c5 5c5 5c7 5c7 5c7 5de 5de 5de 5de 5de 7b0 7bu 7bu 7bu 7bu 7n2 7n2 7n2 7n2 7n2 8pm


    :life Life  :life
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5bs 5bs 5bs 5c5 5c5 5c5 5c5 5c5 5c5 5c7 5c7 5c7 5c7 5c7 5c7 5og 5oi 5oi 5oi 5oi 5oi 5oi 7ac 7ac 7ac 7ac 7ac 7ac 7ac 7ac 8pr

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 61o 61q 61q 61q 61q 61u 61u 61u 622 622 622 7ae 7ae 7ae 7ae 7ae 7ae 7ak 80i 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 61q 61q 61q 61q 61u 622 622 622 7ae 7ae 7ae 7ae 7ae 7ae 7ak 80i 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4ve 4ve 4vj 4vj 4vj 4vj 4vj 4vj 4vl 4vl 5bs 5bs 5c0 5de 5de 6u5 6u5 7ac 7ae 7ae 7ae 7ae 7ae 7ae 7ag 7bu 7bu 7dm 7dm 7t9 8pj

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sn 4vp 4vp 4vp 4vp 5bs 5bs 5bt 5bt 5c5 5c9 5c9 5cq 5cq 5cq 5cq 5cq 5cq 5de 5de 5on 5on 61q 61q 61q 621 621 7aj 7aj 7aj 7al 7n7 7n7 80a 80a 8pn

    Spoiler for Round 2:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vj 4vj 4vj 4vj 4vj 4vj 5bs 5bs 5bs 5bs 5cg 5cg 5cg 5de 5de 5f6 5og 61q 7ac 7ae 7ae 7ae 7ae 7ae 7ae 7hi 7hi 7tb 7tb 80a 8pn

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4vp 4vp 4vp 4vp 5bs 5bs 5bs 5de 5de 5de 5c5 5c5 5cq 5cq 5cq 5cq 5cq 5cq 5bt 5on 5on 61q 61q 61q 7aj 7aj 7aj 7aj 7n7 7n7 80a 80a 8pn

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5de 5de 5de 5de 5de 5de 5de 5de 5de 5c5 61t 61t 61t 61t 61t 7bu 7bu 7bu 7bu 7bu 7ae 7ae 7ae 7ae 7ae 7ae 80i 80i 80i 80i 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52q 52q 534 534 534 534 5cq 5cq 5cq 5cq 5cq 5cq 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 718 718 718 718 7ak 7ak 7ak 7ak 8pk

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 4vp 4vp 4vp 4vp 5bs 5bs 5bs 5c5 5c5 5cq 5cq 5cq 5cq 5cq 5cq 5de 5de 5de 5f6 5f6 5fb 5fb 5fb 61q 61q 61q 7aj 7aj 7aj 7aj 7ak 7ak 80a 80a 8pn

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    595 595 595 595 595 59c 5bs 5c5 5c5 5c5 5c5 5c5 5c7 5c7 5c7 5de 5de 5de 5de 5de 7b0 7bu 7bu 7bu 7bu 7n2 7n2 7n2 7n2 7n2 8pm

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5bs 5bs 5bs 5bs 5bs 5bs 5bs 5bs 5bs 5bt 5bt 5cg 5cg 5cg 5cg 5de 5de 5de 5up 5up 5v1 5v1 7ae 7ae 7ae 7ae 7t9 7tb 7tb 7tb 8pt

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    596 596 596 596 596 5bs 5c1 5c1 5c1 5c1 5c1 5c1 5c9 5c9 5j2 5j2 5j2 5j2 77e 77e 77e 77e 77e 77e 7bu 7bu 7bu 7bu 7bu 7bu 8pp


    :fire Fire :fire
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f4 5f4 5gi 5gi 5gi 5gi 5gi 5gi 5om 5om 5om 5om 5om 7dn 7dn 7f2 7f2 7f2 7f2 7f2 7ms 7ms 7n6 7n7 7n7 7n7 7n7 7n8 7n8 7oe 8pr

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f6 5f6 5fu 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 61o 63a 7dp 7dp 7dp 7ds 7ds 7ds 7ds 7ds 7ds 7f2 80i 80i 80i 80i 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52o 52o 52o 52o 52o 52o 52q 52q 52r 52r 52r 542 542 542 542 542 542 5f4 5f6 5f6 71a 71u 71u 71u 72i 72i 72i 72i 72i 72i 8po

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5fc 5fc 5fc 5fc 5fc 5fc 7dm 7dm 7dm 7dn 7q4 7q4 7q4 7q4 7q4 7q4 8ps

    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4so 4so 5c2 5c2 5c2 5c2 5c2 5c2 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5f7 5f7 7ak 7ak 7bu 7bu 7dk 7dk 7dk 7dk 7dk 7dk 8po

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f0 5f0 5f0 5f6 5f6 5f6 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 622 7ds 7ds 7ds 7ds 7ds 7ds 80d 80i 80i 80i 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4so 4so 4so 5f0 5f0 5f0 5f0 5f3 5f6 5pa 5pa 5pa 5pa 6rk 6u2 6u2 6u2 6u2 6u2 7ds 7ds 7ds 7ds 7ds 7ds 7mt 7mt 7mt 7mt 7mt 8pj

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5f0 5fc 5fc 5fc 5fc 5fc 5fc 7dg 7dg 7dg 7dg 7dm 7dm 7dm 7dn 7q4 7q4 7q4 7q4 7q4 7q4 8ps

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52g 52r 52r 542 5fu 5fu 5fu 5fu 5fu 5fu 5gi 5gi 5gi 5gi 5gi 5gi 71b 71b 71u 71u 71u 7f2 7f2 7f2 7f2 7q9 7q9 7q9 7q9 7q9 7q9 8pk

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4so 4so 4so 5c2 5c2 5c2 5c2 5c2 5c2 5c4 5de 5de 5de 5de 5de 5de 5de 5de 5de 5de 5f7 5f7 7bu 7bu 7dk 7dk 7dk 7dk 7dk 7dk 8po

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f0 5f0 5f6 5f6 5f6 5f7 5f7 5f7 5fb 5fb 5fb 5fb 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5gi 5lm 5lm 5lm 5lm 5lm 5lm 7dk 7dk 7dk 7dk 7dk 7dk 7f2 7f2 7f2 7k2 7k2 7k2 8pq

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f0 5f0 5f0 5f0 5f2 5f2 5f2 5f2 5f2 5f2 5f6 5f6 5fb 5fb 5fb 5gi 5gi 5gi 5gi 5gi 5op 5op 7dg 7dg 7dg 7f2 7n8 7n8 7n8 7n8 7n8 7n8 8pr

    :water Water  :water
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sa 4sa 4sa 4sa 4sa 58v 58v 5i4 5i4 5i4 5ig 5ig 5ig 5ig 5ij 5ij 5ij 5io 5io 5jm 5jm 5lg 6qq 6qq 6qq 6qq 7gk 7gk 7i6 7i6 8pp

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sp 4sp 596 596 596 596 596 5i4 5i4 5ib 5ib 5ib 5ib 5j2 5j2 5j2 5j2 5jm 6r9 77e 77e 77e 77e 77e 77e 7gk 7gs 7gs 7gs 7i6 8pp

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    55k 55k 55k 55m 55m 55s 55s 55s 55s 561 561 561 576 576 5i7 5i7 5jm 5jm 5jm 5jm 5jm 5jm 7gn 7gn 7gn 7gn 7n2 7n2 7n2 7n2 8pl

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5i4 5i4 5i4 5i4 5i4 5i4 5ie 5ie 5ie 5ig 5ig 5jm 5jm 5v1 5v1 7gk 7gk 7gk 7gk 7gm 7gm 7gm 7gm 7gm 7i6 7t9 7t9 7t9 7tb 7tb 8pt

    Spoiler for Round 2:

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    52r 5i4 5i4 5i4 5i5 5i5 5i5 5i5 5i5 5i5 5ib 5ib 5ib 5ib 5ib 5j2 5j2 5jm 5jm 5jm 5jm 5jm 71a 71a 71b 71b 7gk 7i6 7i6 7i6 8pk

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5ih 5io 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5li 5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5m6 7gp 7gp 7gp 7gp 7q9 7q9 7q9 7q9 8pq

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5if 5j2 5j2 5j2 5j2 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5lk 5lk 5lk 61o 7i6 7i6 7i6 7i6 7jp 7jp 7jp 7jp 7jp 7jp 808 80i 80i 80i 80i 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5i4 5i4 5i4 5i4 5i4 5ib 5ib 5ib 5j2 5j2 5j2 5um 5um 5um 5um 5um 5um 5up 7gk 7gk 7gk 7gr 7gs 7gs 7gs 7um 7um 7um 7um 7um 8pm

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    596 596 596 596 596 5i4 5i4 5i4 5ib 5ib 5ib 5j2 5j2 5j2 5j2 77e 77e 77e 77e 77e 77e 77m 78q 7gk 7gk 7gk 7gk 7gs 7gs 7gs 8pp
    [/li][/list]
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5ih 5io 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5jm 5li 5li 5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5m6 7gp 7gp 7gp 7gp 7q9 7q9 7q9 7q9 8pq

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5i4 5i4 5i4 5i4 5i4 5ib 5ib 5ib 5j2 5j2 5j2 5um 5um 5um 5um 5um 5um 5up 7gk 7gk 7gk 7gr 7gs 7gs 7gs 7um 7um 7um 7um 7um 8pm

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    596 596 596 596 596 5i4 5i4 5i4 5ib 5ib 5ib 5j2 5j2 5j2 5j2 77e 77e 77e 77e 77e 77e 77m 78q 7gk 7gk 7gk 7gk 7gs 7gs 7gs 8pp


    :light Light  :light
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    592 594 594 594 594 594 594 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5aa 5lc 5lc 5lc 5lc 5lc 5lc 5li 5li 5li 5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5m6 78q 78q 78q 78q 78q 78q 78q 78q 78q 78q 8pq

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5c9 5c9 5c9 5c9 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5ld 5ld 5ld 5mq 5mq 5mq 5mq 5mq 7ju 7ju 7ju 7ju 7ju 7ju 7k2 7k2 7k2 7k2 8pn

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5l8 5lh 5lh 5lh 5lh 5lh 5lh 5mq 62m 62m 62m 62m 7jo 7jo 7jo 7jo 7jo 7jo 7jo 7k2 7k2 7la 7la 7n2 7n2 7n2 7n2 7n2 816 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5l8 5la 5ld 5ld 5ld 5lh 5lh 7jp 7jp 7jp 7jp 7jp 7ju 7ju 7ju 7ju 7ju 7k2 7k2 7k2 7k2 8pq

    Spoiler for Round 2:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5bt 5bt 5bt 5bt 5bt 5bt 5bv 5bv 5bv 5bv 5bv 5bv 5c9 5c9 5c9 5l8 5l8 5l8 5l8 5l8 5l8 5li 5li 7jo 7jo 7jo 7jo 7jo 7jo 7jo 7jo 8pn

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5l8 5l8 5l8 5l8 5l8 5l8 5ll 5ll 5ll 5ll 5ll 5ll 5m6 5m6 5m6 5m6 5mq 5mq 5mq 5mq 5mq 6u5 6u5 6u5 6u5 7k2 7k2 7la 7la 8pj

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5la 5li 5li 5li 5lk 5lk 5lk 5lk 5ls 5ls 61o 622 622 622 622 63a 7jp 7jp 7jp 7jp 7jp 7jp 808 808 808 808 808 81q 81q 81q 81q 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5l8 5l8 5l8 5l8 5mq 5mq 5mq 5mq 5lf 5lf 5lf 5lf 5lf 5lf 5on 5on 5on 7jo 7jo 7la 7la 7jr 7jr 7jr 7jr 7jr 7k2 7k2 7k2 8pr

    Spoiler for Round 3:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5l8 5l8 5l8 5l8 5l8 5l9 5li 5li 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5m6 5mq 5mq 5mq 5mq 5mq 5rg 5rg 5rg 5ro 5rp 5rp 7k2 7k2 7k2 7k2 7q9 7q9 7q9 7q9 8pq

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5j2 5j2 5lh 5li 5li 5lj 5lj 5lj 5lj 5lj 5lk 5lk 5lk 5lk 5rg 5rg 5rg 5rg 5rg 5rh 5rh 5rh 5rh 5rh 7hi 7hi 7jp 7jp 7jp 7jp 7jp 7jp 8pp

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5l8 5ll 5ll 5ll 5ll 5ll 5lm 5lm 5lm 5lm 5lm 5oh 5oh 5oh 5pu 7jo 7jo 7la 7la 7la 7la 7la 7la 7la 7la 7n5 7n5 7n5 7n5 7oe 8pr

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    55k 55k 55p 55p 55s 55s 55s 55s 55s 561 561 561 576 576 5mq 5mq 5mq 5mq 5mq 5mq 5mq 5mq 7k2 7k2 7k2 7la 7n2 7n2 7n2 7n2 8pl


    :air Air  :air
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5oc 5oc 5oc 5oc 5oc 5of 5of 5oo 5oo 5oo 5op 5pu 5pu 5pu 5pu 5up 5up 5v1 7mt 7mt 7mt 7mt 7mt 7mu 7mv 7mv 7t9 7t9 7tb 7tb 8pt

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5oc 5oc 5oc 5oc 5oo 5oo 5oo 5pu 5pu 5pu 5pu 5pu 5pu 621 621 621 621 62m 62m 62m 62m 62m 7ms 7mu 7mu 7mu 7mu 7mu 7oe 816 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sr 4sr 4vj 4vj 4vj 4vj 4vj 4vj 55t 55t 590 590 590 590 5f6 5oc 5oe 5oe 5og 5og 5ol 5ol 7hi 7hi 7mt 7mt 7mt 7mt 7mt 7mt 8pm

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    55t 55t 55t 560 5oc 5oc 5oc 5oc 5oc 5oc 5oc 5oc 5oc 5og 5op 7ms 7ms 7ms 7ms 7mu 7mu 7mu 7mv 7mv 7mv 7mv 7mv 7mv 7n5 7n5 8pl

    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sr 4sr 4sr 5oc 5oc 5oc 5of 5of 5of 5og 5og 5pa 5pa 5pa 5pa 5pa 5pa 5pu 5pu 5pu 7mt 7mt 7mt 7mt 7mt 7mt 7mu 7mu 7mu 7n5 8pr

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5oc 5oc 5oc 5oc 5oc 5oc 5of 5of 5of 5on 5on 5on 5oo 5oo 5oo 5pu 5pu 5up 5up 5v1 7mt 7mt 7mt 7mt 7mt 7mt 7mu 7mu 7tb 7tb 8pt

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vj 4vj 4vj 4vj 5f6 5f6 5f6 5oc 5oc 5oc 5oc 5oc 5oc 5oh 5oh 5oh 74d 7ms 7ms 7ms 7ms 7ms 7ms 7ms 7ng 7ng 7ng 7ng 7ng 7th 8po

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5mq 5og 5og 5on 5on 5on 5on 5vi 5vi 5vi 5vi 5vi 5vi 7la 7la 7ms 7ms 7ms 7ms 7ms 7ms 7ms 7n5 7n5 7q9 7q9 7q9 7q9 7q9 7q9 8pt

    Spoiler for Round 3:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5lk 5lk 5lk 5lk 5p0 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 7jp 7jp 7jp 7jp 7jp 7n4 7n4 7oe 7oe 808 80i 80i 80i 80i 81q 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sr 5oc 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 621 621 621 621 62m 62m 62m 7mu 7mu 7mu 7mu 7mu 7oe 7oe 7oe 7oe 816 816 816 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vj 4vj 4vj 4vj 4vj 4vj 595 5f6 5f6 5f6 5oc 5oc 5oc 5oc 5oc 5oc 5p0 5p0 5p0 5p0 5p0 5v1 74d 74d 74d 7ms 7ms 7ms 7ms 7ms 8po

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5li 5li 5lm 5lm 5lm 5lm 5lm 5lm 5og 5og 5og 5oh 5oh 5oh 5oh 5oh 5ol 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 5pu 7n1 7n7 7n7 7n7 7q9 7q9 7q9 7q9 8pq


    :time Time :time
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4ss 4ss 4ss 5rg 5rg 5rg 5s4 5se 5se 5se 5se 5se 5se 5t2 5t2 7q0 7q0 7q0 7q0 7q0 7qc 7qc 7qc 7qc 7qc 7qc 7ri 7ri 7ri 7ri 8ps

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4ss 4ss 4ss 5rg 5rg 5rg 5rg 5rg 5rg 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5ro 5ru 5ru 61o 63a 61t 61t 61t 61t 61t 622 622 7q0 7ri 7ri 7ri 7q5 7q5 7q5 7q5 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5rg 5rg 5rg 5rg 5rg 5rg 5rj 5ro 5se 5se 5se 5se 5se 5se 5t2 5t2 5t2 5t2 5t2 7q0 7q0 7q0 7qc 7qc 7qc 7qc 7qc 7qc 7ri 7ri 7ri 8ps

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4sa 4sa 4sa 4sa 4sa 4sa 4sa 4sa 560 5c9 5rg 5rg 5rp 5rp 5rp 5rp 5rp 5rp 5se 5t2 5t2 61r 6qq 6qq 6qq 7n9 7q5 7q5 7q5 7q6 8ps

    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5lk 5lk 5lk 5ls 5ro 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 61o 622 622 7jp 7jp 7jp 7jp 7jp 7jq 7q5 7q5 7ri 7ri 80i 80i 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5lf 5lf 5lf 5li 5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5ro 5ro 5rp 5rp 5rp 5rp 5rp 5rp 5rt 5rt 5rt 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 7k0 7k0 7q5 7q5 7q5 7q5 7q5 7q5 8pq

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5c9 5c9 5c9 5cq 5cq 5cq 5cq 5cq 5cq 5rg 5rg 5rg 5rg 5rg 5rg 5rg 5rg 5rg 5rg 5rk 5rk 5rk 5ro 5ro 5s4 5s4 5s4 5s4 5se 5se 5se 5se 5se 5se 5t2 5t2 5t2 5t2 5t2 5t2 7ak 7ak 7q5 7ri 7ri 7ri 7ri 7ri 8pn

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5rg 5rg 5rk 5rk 5ru 5ru 5s4 5s4 5t2 5up 5up 5up 5v1 5v1 5v1 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7qk 7qk 7ri 7ri 7ri 7ri 7tb 7tb 8pt

    Spoiler for Round 3:

    • L
      Hover over cards for details, click for permalink
      Deck import code : [Select]
      5lc 5lc 5lc 5lc 5lc 5lc 5li 5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5rj 5rj 5rj 5rl 5rl 5rl 5rl 5rl 5rl 5rp 5rp 5rp 5rp 5rp 5rp 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 5t2 7ri 7ri 7ri 7ri 7ri 7ri 7ri 7ri 8pq
    • W
      Hover over cards for details, click for permalink
      Deck import code : [Select]
      4ss 4ss 5rg 5rk 5rk 5rk 5rk 5rk 5ro 5s4 5s4 5t2 5up 5v1 5v1 7n2 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q8 7qk 7qk 7ri 7t9 8pt
    • W
      Hover over cards for details, click for permalink
      Deck import code : [Select]
      4ss 4ss 5rg 5rk 5rk 5rk 5rk 5rk 5ro 5s4 5s4 5t2 5up 5v1 5v1 7n2 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q0 7q8 7qk 7qk 7ri 7t9 8pt
    • L
      Hover over cards for details, click for permalink
      Deck import code : [Select]
      5rg 5rg 5rk 5rk 5rk 5rk 5ro 5ro 5s4 5s4 5s4 5s4 5se 5se 5se 5se 5t2 5t2 7n2 7q0 7q0 7q0 7q0 7q0 7qu 7ri 7ri 7ri 7ri 7ri 8ps

    :darkness Darkness  :darkness
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    • Hover over cards for details, click for permalink
      Deck import code : [Select]
      4st 4st 4st 5uk 5uk 5uk 5ul 5ul 5up 5up 606 606 61q 61q 622 622 7t4 7t4 7t4 7t8 7tb 7tb 7tc 7tc 7tc 7tc 7um 80a 80a 80a 80a 8pu
    • Hover over cards for details, click for permalink
      Deck import code : [Select]
      5rg 5rg 5rg 5rg 5rp 5rp 5rp 5rp 5rp 5rp 5t2 5t2 5t2 5t2 5t2 5uo 5uo 5us 5vi 5vi 5vi 5vi 7q5 7q5 7q5 7q5 7tb 7tb 7u2 7u2 8pt
    • Hover over cards for details, click for permalink
      Deck import code : [Select]
      5uk 5uk 5uk 5uk 5uk 5uk 5ul 5ul 5ul 5ul 5uo 5v1 606 606 606 606 606 606 7t4 7t4 7tb 7tb 7tf 7tf 7tf 7tf 7tf 7tf 7um 7um 8pt
    • Hover over cards for details, click for permalink
      Deck import code : [Select]
      50u 50u 50u 50u 50u 4vh 4vh 4vh 4vh 4vh 4vh 4vl 4vl 4vl 4st 5uk 5v1 5v1 5v1 5up 5up 5uv 6ve 6ve 6ve 6u9 7tf 7tf 7tf 7tf 8pt
    Spoiler for Round 2:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    606 606 606 5um 5um 5um 5um 5um 5um 5up 5up 5up 61o 61o 63a 622 622 622 622 622 7um 7um 7um 7um 7um 7um 7um 7td 7td 7td 8pu

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5uk 5uk 5uk 5uk 5uk 5uk 5ul 5ul 5ul 5v1 606 606 606 606 606 606 7t4 7t8 7tb 7tb 7tc 7tc 7tc 7tf 7tf 7tf 7tf 7tf 7tf 7um 8pt

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5v1 5um 5um 5um 5um 5um 5um 5ut 5ut 5ut 5ut 5ut 5ut 7hi 7hi 7hi 7hi 6rd 6rd 6rd 6rd 6rd 7t4 7t4 7t4 7t4 7tb 7tb 7t8 7t8 8pp

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5li 5li 5li 5lm 5lm 5lm 5lm 5lm 5m6 5m6 5m6 5m6 5m6 5uo 5uo 5us 5us 5us 5us 5us 5us 606 606 606 606 606 606 606 606 606 606 606 606 606 606 606 7q9 7q9 7q9 7q9 7q9 7q9 7t8 7tb 7tb 7tb 8pq


    Spoiler for Round 3:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4vj 4vj 4vj 596 596 596 596 5j2 5j2 5j2 5j2 4st 5uk 5uk 5um 5um 5um 5um 5um 5um 5ut 5up 77e 77e 77e 77e 7um 7um 7tb 7tb 8pp

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5lk 5lk 5lk 5ls 606 606 606 606 606 606 606 606 606 5up 5up 7jp 7jp 7jp 7jp 7jp 7jp 7kc 7um 7um 7tb 7tb 80i 80i 80i 80i 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5rg 5rg 5rg 5rp 5rp 5rp 5rp 5rp 5rp 5t2 5t2 5t2 5t2 5t2 5t2 5uo 5up 5us 5vi 5vi 5vi 5vi 7q5 7q5 7q5 7t8 7tb 7tb 7u2 7u2 8pt

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5uk 5uk 5uk 5uk 5uk 5uk 5uk 5uk 5uk 5uk 5uk 5up 5up 5up 5up 5up 5v1 6u2 6u2 6u2 6u2 6u2 6u2 7tb 7tb 7td 7td 7td 7td 7td 8pj

    :aether Aether :aether
    Decks Used
    Spoiler for Hidden:
    Spoiler for Round 1:
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5lk 5lk 5lk 5lk 5ls 5ls 61o 61o 61o 622 622 622 622 622 625 63a 63a 63a 7jp 7jp 7jp 7jp 7jp 7jp 7k2 808 808 81q 81q 81q 8pu

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 4su 4vj 4vj 4vj 4vj 4vj 4vj 55q 61r 61r 61r 61r 61r 61u 77g 77g 77g 77g 77g 7dm 7dm 808 808 808 808 808 808 808 80k 8pm

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    55k 576 5ia 5ia 5jm 5jm 5jm 622 622 622 622 63a 63a 63a 63a 63a 63a 63a 63a 63a 63a 63a 745 745 745 747 81q 81q 81q 81q 8pl

    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 4su 4su 4su 4su 4su 5f6 5f6 5f6 61o 61o 61o 61o 61o 61o 61q 61q 61q 61q 61q 622 622 622 622 624 808 808 80g 80g 80g 80l 80l 80l 8po

    Spoiler for Round 2:
    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5op 61o 61o 61o 622 622 622 622 62m 62m 63a 63a 63a 63a 63a 63a 63a 63a 7n9 7n9 808 808 808 808 809 809 809 809 809 809 8pr

    L
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 4vl 4vl 4vl 50u 50u 61o 61o 61o 61o 622 622 622 622 625 625 625 625 63a 63a 63a 63a 6ve 6ve 6ve 6ve 80g 80g 80g 80l 8pu

    • W
      Hover over cards for details, click for permalink
      Deck import code : [Select]
      5li 5li 5lm 5lm 5lm 5lm 5lm 5lm 61q 61q 61q 61q 61q 61q 61t 61t 61t 61t 61t 61t 61u 61u 63a 63a 63a 63a 63a 63a 63a 63a 63a 63a 7q9 7q9 7q9 7q9 81q 81q 81q 81q 8pq
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 4su 4vj 4vj 4vj 4vj 4vj 4vj 55q 61r 61r 61r 61r 61r 61u 77g 77g 77g 77g 77g 7dm 7dm 7th 808 808 808 808 808 808 80k 8pm

    Spoiler for Round 3:
    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5uk 5um 5um 5um 5um 5um 5ut 5ut 5ut 606 61o 61o 622 622 622 622 63a 63a 63a 63a 63a 63a 7ta 7ta 7tb 7tb 81q 81q 81q 81q 8pt

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    5f6 5f6 5f6 61o 61o 61o 61o 61o 61o 61o 61o 61q 61q 61q 61q 622 622 622 622 624 808 808 808 808 808 808 80g 80g 80g 80g 80g 80g 8po

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 4su 4su 4su 4su 4su 61r 61r 61r 61r 622 624 624 624 624 808 808 808 808 80g 80g 80g 80g 80l 80l 80l 81q 81q 81q 81q 8pu

    W
    Hover over cards for details, click for permalink
    Deck import code : [Select]
    4su 61o 61o 61o 61o 61o 61o 61q 61q 61u 61u 622 622 622 622 624 624 63a 63a 63a 63a 63a 808 80g 80g 80g 80g 80l 80l 81q 8pu


    except gravity. Those are secret
    :gravity War 12
    :darkness War 13
    :fire War 14
    Credit to Wyand for Profile Picture

    Offline TheonlyrealBeef

    • Master of Darkness
    • *
    • *
    • *
    • Posts: 4058
    • Country: nl
    • Reputation Power: 61
    • TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!TheonlyrealBeef shines with the light of the Morning Glory!
    • Do not underestimate the power of the dark side!
    • Awards: War #14 Winner - Team Aether14th Trials - Master of Darkness2019 - PvP World ChampionSlice of Elements 11th Birthday CakeWar #13 Winner - Team Darkness13th Trials - Master of DarknessWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament Winner4th Grandmaster Battle Winner - DarknessGold DonorSlice of Elements 10th Birthday CakeWar #12 Winner - Team DarknessWeekly Tournament Winner12th Trials - Master of DarknessWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 9th Birthday Cake2017 - PvP World ChampionWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 8th Birthday CakeWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerBattle League 3/2016 2nd PlaceWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 3rd Birthday CakeTeam PvP #4 Winner5th Trials - Master of Darkness4th Trials - Master of Darkness3rd Trials - Master of DarknessWeekly Tournament WinnerMS Paint Card Art #2 Winner
    Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286797#msg1286797
    « Reply #43 on: March 08, 2019, 09:35:34 am »
    We usually have vault stuff done by now, but eh... we still have last round's stuff showing? When can we expect to get our vaults operational? I do not have a lot of time tomorrow...

    EDIT: For the record, it's not the absolute time I am worried about. If wms need rest of the month to get it done, so be it. Just let me know when it's done and give me 2-3 days afterwards. My current projections estimate we'll have less than 24 hours before deckbuilding deadline.
    « Last Edit: March 08, 2019, 09:55:12 am by TheonlyrealBeef »

    Offline worldwideweb3

    • Master of Air
    • *
    • Posts: 3414
    • Country: gb
    • Reputation Power: 63
    • worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!worldwideweb3 shines with the light of the Morning Glory!
    • Awards: Slice of Elements 12th Birthday CakeWeekly Tournament Winner (2021.01.03.)Weekly Tournament Winner (2020.11.22.)14th Trials - Master of AirWeekly Tournament Winner (2020.06.28.)Weekly Tournament WinnerWeekly Tournament Winner (2020.05.03.)Elements League 3/2019 2nd PlaceSlice of Elements 10th Birthday CakeElements League 3/2018 1st PlaceWinner of Team PvP #812th Trials - Master of AetherElements: Academy WinnerWeekly Tournament WinnerWeekly Tournament WinnerElements League 2/2017 3rd PlaceWinner of Draft #4 - PvP Event11th Trials - Master of FireBattle League 1/2017 1st PlaceWeekly Tournament WinnerBattle League and Championship League 3/2016 1st PlaceChampionship League 2/2016 1st Place10th Trials - Master of GravityChampionship League 1/2016 2nd PlaceWeekly Tournament WinnerChampionship League 3/2015 3rd PlaceWeekly Tournament WinnerChampionship League 1/2015 1st PlaceWar #8 Winner - Team FireBattle League 2/2014 2nd Place
    Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286801#msg1286801
    « Reply #44 on: March 08, 2019, 04:26:48 pm »
    We usually have vault stuff done by now, but eh... we still have last round's stuff showing? When can we expect to get our vaults operational? I do not have a lot of time tomorrow...

    EDIT: For the record, it's not the absolute time I am worried about. If wms need rest of the month to get it done, so be it. Just let me know when it's done and give me 2-3 days afterwards. My current projections estimate we'll have less than 24 hours before deckbuilding deadline.

    Asking for a week extension (to keep up with the normal DB/battle phase schedule). Tomorrow ill be busy and i cant do any docs stuff rn as they havent been updated. Thanks!
    First player to become master of 3 different elements.
    WC 2016 - #2. WC 2015 - #3 Devil's gate, Trinity, War #10, 12 lives - #2.
    Avvy by rob77dp
    Rightful winner of war #14 - Team Air

    Offline kaempfer13

    • Legendary Member
    • ******
    • Posts: 2099
    • Country: de
    • Reputation Power: 44
    • kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.kaempfer13 soars like the Phoenix, unable to be repressed.
    • Awards: There Can Only Be One - 2020 WinnerSlice of Elements 11th Birthday CakeOEtG Rags to Riches WinnerWeekly Tournament WinnerElements League 3/2018 2nd PlaceWeekly Tournament WinnerWeekly Tournament WinnerThere Can Be Only One - 2018 WinnerWeekly Tournament Winner12th Trials - Master of TimeSlice of Elements 9th Birthday CakeWeekly Tournament WinnerElements League 2/2017 2nd PlaceWeekly Tournament WinnerWinner of Draft #4 - PvP EventSlice of Elements 8th Birthday CakeWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerDeckbuilding Competition: It's Greek to MeWeekly Tournament Winner
    Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286802#msg1286802
    « Reply #45 on: March 08, 2019, 05:39:42 pm »
    Yh, we need more :time (not purely a joke, also a request)
    :gravity War 10
    :death and tied for master of STANDIN War 11
    Master of :time War 12

    Offline JonathanCrazyJ

    • Legendary Member
    • ******
    • Posts: 4216
    • Country: gb
    • Reputation Power: 65
    • JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.JonathanCrazyJ walks among the Immortals, legends and guardians of all time.
    • Top-Decking Words
    • Awards: Slice of Elements 11th Birthday CakeSlice of Elements 10th Birthday CakeWar #12 Winner - Team DarknessWinner of Team PvP #812th Trials - Master of WaterSlice of Elements 9th Birthday CakeDeckbuilding Competition - Hierarchy11th Trials - Master of WaterSlice of Elements 8th Birthday CakeCard Competition - Idea Factory EspionageForum Brawl #6 Winner - The Tentacle's GripChampionship League 3/2016 2nd PlaceWar #10 - Sportsmanship AwardWeekly Tournament Winner	 Writing Competition: Elemental Rap WarBattle League 2/2016 1st Place10th Trials - Master of WaterWeekly Tournament WinnerSlice of Elements 7th Birthday CakeDeckbuilding Competition - No Matter How Many Times You Save The World2015 - PvP World ChampionForum Brawl #5 Winner - Abyss BrawlersBattle League 3/2015 1st PlaceWeekly Tournament WinnerCompetition - Result ModifiersSolved the Ruby Mansion MurderBattle League 2/2015 3rd PlaceCard Competition - When Life Gives You Art...Writing Competition - 6th Birthday PartySlice of Elements 6th Birthday CakeBattle League 1/2015 2nd PlaceSilver Donor
    Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286803#msg1286803
    « Reply #46 on: March 08, 2019, 06:23:51 pm »
    Cheeky week off works for me
    Competitions!
    Competition Mailing Lists are a SERVICE TAILORED FOR YOU!
    If you like any Competitions at all, check them out, we are here for you!

    Offline Wyand

    • Tournament Organizer
    • *****
    • ******
    • Posts: 2254
    • Country: hu
    • Reputation Power: 36
    • Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.Wyand is a Gargoyle, dangerous and everlasting.
    • Not So Young Elemental
    • Awards: Slice of Elements 14th Birthday CakeSlice of Elements 13th Birthday CakeSlice of Elements 12th Birthday CakeWeekly Tournament Winner (2020.12.27.)Weekly Tournament Winner (2020.11.15.)Weekly Tournament Winner (2020.10.11.)Weekly Tournament Winner (2020.10.04.)Weekly Tournament Winner (2020.09.14.)Weekly Tournament Winner (2020.09.05.)Slice of Elements 11th Birthday CakeWeekly Tournament Winner 2020.1.1913th Trials - Master of EntropyWeekly Tournament WinnerWeekly Tournament WinnerWeekly Tournament WinnerElements League 2/2019 3rd PlaceWeekly Tournament WinnerWeekly Tournament WinnerSlice of Elements 10th Birthday CakeWeekly Tournament WinnerArt Competition - Winter Paint With Elements WinnerTeam Deckbuilding/Writing Competition - A Matter of Logistics WinnerArt Competition - Definitely A Card Design CompetitionSlice of Elements 9th Birthday CakeWeekly Tournament Winner
    Re: War #12 - General Discussion https://elementscommunity.org/forum/index.php?topic=66454.msg1286805#msg1286805
    « Reply #47 on: March 08, 2019, 07:06:38 pm »
    I admit it is not a bad idea having a week rest, but it would have been better to know it already at the start of the round...

    (Though having 1 day extension is good, too.)
    <---- A nice purple pie, shiny cups and a trio of cakes on a red platter, a box of candies and an ice cream cone on chocolate! :) Bon appétit!

    "It's hard to detect good luck - it looks so much like something you've earned." - Frank A. Clark

     

    anything
    blarg: DoubleCapitals