Flash Flyer - Sakura Posted August 16, 2016 Report Share Posted August 16, 2016 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 MonsterDeadline: 8/18/2016 @ 11:59 pm HST Round 2: Make a new support card for the U.A. ArchetypeDeadline: 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 Logo2nd: 7,500 points, 2 Reps3rd: 5,000 points, 1 Rep[spoiler=Contestants]Yuuji Kazami Tori-kun Dragon Sage / Spindad Brimtosis ~ nya ~ Dova Rainbow Quasar 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 More sharing options...
Rowling Posted August 16, 2016 Report Share Posted August 16, 2016 I'd like to apply, if that's ok :) Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 16, 2016 Author Report Share Posted August 16, 2016 That's fine, but just keep in mind that if the other three qualifiers take those spots, you won't be able to compete. Also a sidenote that unlike previous tournaments, this will be a single elimination tournament due to how late this is coming up. Link to comment Share on other sites More sharing options...
Brimtosis Posted August 16, 2016 Report Share Posted August 16, 2016 Just going to confirm my entry here in a far more co-ordinated and less paniced state than the PM, just in case. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 17, 2016 Author Report Share Posted August 17, 2016 Well, you confirmed via PM anyway so good enough. Gadjiltron dropped, so Rowling, you're in. At this time, Yuuji has not yet confirmed/declined; if no responses by then, it will be considered as the latter. -----Anyone else who wishes to compete otherwise may still request entry. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 17, 2016 Author Report Share Posted August 17, 2016 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 More sharing options...
Northern Sage Posted August 17, 2016 Report Share Posted August 17, 2016 Card sent. Good luck Dova. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 17, 2016 Author Report Share Posted August 17, 2016 Can confirm that I have received Tori and Spindad's cards; everyone else, you have another 36 and a half hours left (give/take 10-15 minutes). Link to comment Share on other sites More sharing options...
Dova Posted August 17, 2016 Report Share Posted August 17, 2016 Also submitted, and same to you, Spindad. Link to comment Share on other sites More sharing options...
Bellringer Angel Posted August 18, 2016 Report Share Posted August 18, 2016 submitted Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 18, 2016 Author Report Share Posted August 18, 2016 At the present time, I have not received a card from either Tori, Rainbow Quasar or Rowling; please make sure you guys submit an entry by the end of today or request an extension if you need to. Right now, it's 12:09 am 8/18/2016 Link to comment Share on other sites More sharing options...
Bellringer Angel Posted August 24, 2016 Report Share Posted August 24, 2016 Please update the contest. Link to comment Share on other sites More sharing options...
Yuuji Kazami Posted August 24, 2016 Report Share Posted August 24, 2016 It'll be really helpful to know the date of when the next round's starting. Uni's coming up, and I can't be online every single day to check on YCM. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 24, 2016 Author Report Share Posted August 24, 2016 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. ArchetypeDeadline: 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 More sharing options...
Flash Flyer - Sakura Posted August 30, 2016 Author Report Share Posted August 30, 2016 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 More sharing options...
Yuuji Kazami Posted August 31, 2016 Report Share Posted August 31, 2016 I might need an extension because of orientation and the first day of classes happening right after. Also, I'm curious if I can know the date for when the prizes for the last leaderboard season will be distributed. I've only received this title, and nothing else. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted August 31, 2016 Author Report Share Posted August 31, 2016 Striker was supposed to have given your award points and reps by now, but assuming he has his own college stuff to contend with as well. But yeah, I can give you an extension for this one. Will confirm that I've gotten Dova and Tori's entries. Link to comment Share on other sites More sharing options...
Flash Flyer - Sakura Posted September 3, 2016 Author Report Share Posted September 3, 2016 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 repsTori 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.