Skip to content

Commit

Permalink
+ homecoming, bustered out
Browse files Browse the repository at this point in the history
  • Loading branch information
pkzstar committed Sep 2, 2024
1 parent 7899b26 commit e0fd37f
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
39 changes: 38 additions & 1 deletion Calendar/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1750,6 +1750,24 @@ function showCalendar(month, year) {
fadeInOut(image); // Start fade-in/out animation // Start cycling events



//Bustered Out
} else if (month === 9 && (date === 19) && year === 2024) {


let link = document.createElement("a");
link.href = "https://www.start.gg/tournament/bustered-out/details";
link.target = "_blank";

let image = document.createElement("img");
image.src = "https://www.bing.com/th?pid=Sgg&qlt=100&u=https%3A%2F%2Fimages.start.gg%2Fimages%2Ftournament%2F703739%2Fimage-37259456efe40fdef53a88c108f61736-optimized.png&ehk=BeB8DjJp5ZmXStsCqSKmFtIEfHIqDl7UUDZv2fdRuU4%3D&w=280&h=280&r=0";

image.classList.add("calendarImg");


link.appendChild(image);
cell.appendChild(link);

//Tussleopolis
} else if (month === 9 && (date === 26) && year === 2024) {

Expand All @@ -1767,8 +1785,27 @@ function showCalendar(month, year) {
link.appendChild(image);
cell.appendChild(link);


//Homecoming
} else if (month === 10 && (date === 9) && year === 2024) {


let link = document.createElement("a");
link.href = "https://smashboards.com/threads/homecoming-p-hdr-nov-9th-2024.523550/";
link.target = "_blank";

let image = document.createElement("img");
image.src = "https://github.com/pkzstar/plus-side/blob/main/images/upcoming%20events/homecominglogo.png?raw=true";

image.classList.add("calendarImg");


link.appendChild(image);
cell.appendChild(link);
}

//BL9
} else if (month === 10 && (date === 16 || date === 17) && year === 2024) {
else if (month === 10 && (date === 16 || date === 17) && year === 2024) {


let link = document.createElement("a");
Expand Down
22 changes: 22 additions & 0 deletions index js/indexEventsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,17 @@ const eventsData = [
trailer: "https://www.youtube.com/watch?v=mEsQ1_rF7gM&feature=youtu.be",
stream: "https://www.twitch.tv/AZPM"
},
{
name: "Bustered Out",
date: "10/19/24",
location: "Nashville, TN, USA",
description: "Welcome to Bustered Out! This is a Melee/P+ Regional event located in the Opry Mills Mall Dave & Busters. All registration will include entry to the event as well as an all-you-can-eat catered buffet.",
imageUrl: "https://www.bing.com/th?pid=Sgg&qlt=100&u=https%3A%2F%2Fimages.start.gg%2Fimages%2Ftournament%2F703739%2Fimage-37259456efe40fdef53a88c108f61736-optimized.png&ehk=BeB8DjJp5ZmXStsCqSKmFtIEfHIqDl7UUDZv2fdRuU4%3D&w=280&h=280&r=00",
link: "https://www.start.gg/tournament/bustered-out/details",
rankImg: false,
trailer: "",
stream: ""
},
{
name: "Tussleopolis",
date: "10/26/24",
Expand All @@ -239,6 +250,17 @@ const eventsData = [
trailer: "https://youtu.be/VY6JO0mD0po",
stream: ""
},
{
name: "Homecoming",
date: "11/9/24",
location: "Cincinnati, OH, USA",
description: "A reunion tournament celebrating the 10 Year Anniversary of Project M's heyday in Southwest Ohio! Now featuring HDR Singles and a Cobalt X side bracket, with P+ characters banned",
imageUrl: "https://github.com/pkzstar/plus-side/blob/main/images/upcoming%20events/homecominglogo.png?raw=true",
link: "https://smashboards.com/threads/homecoming-p-hdr-nov-9th-2024.523550/",
rankImg: false,
trailer: "",
stream: ""
},
{
name: "Blacklisted 9",
date: "11/16/24 - 11/17/24",
Expand Down

0 comments on commit e0fd37f

Please sign in to comment.