Jump to content

[Finished][Leaderboard] Season 14 Postseason


Flash Flyer - Sakura

Recommended Posts

Welcome to the second Postseason tournament of 2016.

 

[spoiler=Rules]
1. All YCM, section, and Leaderboard rules apply.

2. All matches will be hosted in the 1v1 by me. 

3. Top 8 in regular season may enter. (If you are in the top 8, you should have received a PM notifying you in advance). If you do not respond to the PM by the deadline (either to accept or decline), it will be assumed that you do not wish to participate.
 
If a spot is not taken, then it is opened up for anybody (including those ranked lower for the season). Those of you interested should post in here otherwise. 
 
4. Deadline to enter is August 17th, 2016 @ 9 pm HST (GMT -10:00), however I reserve the right to close this early once eight participants are confirmed (either from the qualifiers or a combination of both them and general)

5. Tournament is single elimination this time around; this means no loser brackets and if you lose once, that's it.

 

6. Cards for each round are due two days after the card requirements are posted (all times will be 11:59 pm HST). However I will grant a maximum of two days if you are busy with coursework, lack of internet or other issues beyond one's control (including schedules at work).

 

Please make sure you convert the deadline to the appropriate time in your respective areas.
 
7. All cards must be PM'd to me.

8. The winners of each round get a rep from the losers.

9. The brackets shall be done through Challonge; see brackets.

 

10. Seeding shall be based on regular season standings. If a member not registered on the Leaderboard enters, they will be classed as being at the bottom. 

11. Participants may vote on the other contests that don't have their entries in.



[spoiler=Card Requirements]
All of the card requirements will be listed here.

 

Round 1: WIND Wyrm-Type Synchro Monster

Deadline: 8/18/2016 @ 11:59 pm HST

 

Round 2: Make a new support card for the U.A. Archetype

Deadline: 8/25/2016 @ 11:59 pm HST

 

Round 3: Make a new monster for Majespecters (either a Main Deck or Extra Deck; your choice)

Deadline: 9/1/2016 @ 11:59 pm HST

 


 
[spoiler=Prizes]
1st: 10,00 points, 3 Reps, Award Logo
2nd: 7,500 points, 2 Reps
3rd: 5,000 points, 1 Rep



[spoiler=Contestants]

  1. Yuuji Kazami
  2. Tori-kun
  3. Dragon Sage / Spindad
  4. Brimtosis
  5. ~ nya ~
  6. Dova
  7. Rainbow Quasar
  8. Rowling

(Please note that if any competitors decide to drop, the remaining spots will be filled in order by application. The quicker you submit an intent to enter, the more likely you will be in this tournament should a space be available.)

 

 

 

 

[spoiler=Bracket]
http://challonge.com/leaderboard2016_s14

 

Will be added later

 

 

 

----

Good luck!

Link to comment
Share on other sites

Alright, registration is closed now as the Postseason now has the required eight members. In case you all have not been a warning about this earlier, this time, the Postseason will be single elimination as opposed to the usual double one, due to the timing of this event. This means no second chances if you don't win your matches.

 

(There will be a match for third place that will take place the same time as the final)

 

As such, the round 1 theme will be this:

Create a WIND Wyrm-Type Synchro Monster

 

You have until 8/18/2016 @ 11:59 pm HST (GMT - 10:00) to submit an entry.

 

----

Please refer to the bracket to check whom you will be facing.

 

[spoiler=Coding for the randomizer used to generate theme]

import java.util.Random;

public class Randomizer {
    public static void main(String[] args)
    {
        // RNG
        Random rand = new Random();    

        // stuff
        int type = rand.nextInt(22)+1;
        int attribute = rand.nextInt(6)+1;
        int summon = rand.nextInt(7)+1;

        // printing the type
        switch (type)
        {
        case 1: System.out.println("Aqua-Type");
        break;
        case 2: System.out.println("Beast-Type");
        break;
        case 3: System.out.println("Beast-Warrior-Type");
        break;
        case 4: System.out.println("Dinosaur-Type");
        break;
        case 5: System.out.println("Dragon-Type");
        break;
        case 6: System.out.println("Fairy-Type");
        break;
        case 7: System.out.println("Fiend-Type");
        break;
        case 8: System.out.println("Fish-Type");
        break;
        case 9: System.out.println("Insect-Type");
        break;
        case 10: System.out.println("Machine-Type");
        break;
        case 11: System.out.println("Plant-Type");
        break;
        case 12: System.out.println("Psychic-Type");
        break;
        case 13: System.out.println("Pyro-Type");
        break;
        case 14: System.out.println("Reptile-Type");
        break;
        case 15: System.out.println("Rock-Type");
        break;
        case 16: System.out.println("Sea-Serpent-Type");
        break;
        case 17: System.out.println("Spellcaster-Type");
        break;
        case 18: System.out.println("Thunder-Type");
        break;
        case 19: System.out.println("Warrior-Type");
        break;
        case 20: System.out.println("Winged Beast-Type");
        break;
        case 21: System.out.println("Wyrm-Type");
        break;
        case 22: System.out.println("Zombie-Type");
        break;
        }

        // printing attributes
        switch (attribute)
        {
        case 1: System.out.println("DARK-Attribute");
        break;
        case 2: System.out.println("EARTH-Attribute");
        break;
        case 3: System.out.println("FIRE-Attribute");
        break;
        case 4: System.out.println("LIGHT-Attribute");
        break;
        case 5: System.out.println("WATER-Attribute");
        break;
        case 6: System.out.println("WIND-Attribute");
        }

        // print primary method
        switch (summon)
        {
        case 1: System.out.println("Normal");
        break;
        case 2: System.out.println("Tribute");
        break;
        case 3: System.out.println("Flip");
        break;
        case 4: System.out.println("Ritual");
        break;
        case 5: System.out.println("Fusion");
        break;
        case 6: System.out.println("Synchro");
        break;
        case 7: System.out.println("Xyz");
        break;
        case 8: System.out.println("Pendulum");
        break;
        }
        
        System.out.println(+type + " " + +attribute + " " + +summon + "\n");
        System.out.println("Enjoy your cardmaking!\n");
    }
}

 

 

Link to comment
Share on other sites

Realize that I also have things to contend with offline (including university stuff, given that I started this week); that, and I have to grade the CC monthly. But yeah, here's your theme.

 

Round 2: Make a new support card for the U.A. Archetype

Deadline: 8/25/2016 @ 11:59 pm HST

 

If you need an extension, make sure you PM me ahead of time. Also note that you all can vote in the 1v1s that you are not participants in.

 

----

The final theme will need to be determined soon.

Link to comment
Share on other sites

Just as a reminder that this is still going, even though I have been busy with other things and didn't update this soon after Round 2. So yeah, for the final round, this will be a Pop Culture themed one (or rather, something that may be familiar to you in terms of concept).

 

Final round (and bronze match) theme: Design a new monster for Majespecters (Main / Extra Deck)

Deadline: September 1st, 2016 @ 11:59 pm HST

 

-----

As usual, if you require an extension, please let me know ahead of time. Once I get both members' cards for either the finals or the bronze match, that one will go up right away.

Link to comment
Share on other sites

So yeah, the Postseason tournament is over and Yuuji won this one (Dova is runner-up and Tori gets the bronze). 

I know I gave Striker his "pay check" for the quarter, so he should've awarded the Season 14 winners for their performances by now. 

 

Yuuji gets 10k, 3 reps and the award logo. Either I need to PM Rai to do it, or I end up having to make one if he's busy.

Dova gets 7500 points and 2 reps

Tori gets 5000 and 1 rep. 

 

----

Thanks to all of the participants who made cards in this tournament, and congratulations to the winner. Now you all need to wait until Striker opens the Preseason for Season 15 (I think this is it, right?)

 

[Now I need to grade the other tournament; I haven't forgotten about you guys in there, but rather that having to host two tournaments in addition to offline matters doesn't leave me a lot of time]

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Guest
This topic is now closed to further replies.
×
×
  • Create New...