ADVERTISEMENT

Best Games of the Year 2017

Published Jan 14, 2018 12:00 am

By Adlai Rosh

2017 was an amazing year for games. Though, every year is an amazing year for games in my opinion. Through the ups and downs, the successes and controversies, you can’t deny that many amazing games came out this year. I’m going to be listing my personal favorites of the year. Keep in mind that this is purely my opinion, and I’m not going to mention games that I haven’t personally played.  It’s also numbered, but not in any particular order, because numbered lists are aesthetically pleasing and mentally stimulating.

game

 Night In The Woods

Of all the games on this list, the one I felt the most emotionally attached to is the one where every character is a talking cartoon animal. Make no mistake – despite the storybook-like visuals and aforementioned talking cartoon animals, Night in the Woodsis a gripping story-driven game. I’m not usually one to meticulously pursue side content but I fell in love with the dying town of Possum Springs and the colorful characters therein, and I spent quite a while meandering about the town talking to everyone and advancing their little storylines in between each plot hook. Night in the Woodsmay be about animals, but it felt more human than most games released this year.

Nier: Automata

Remember Nier, the strange RPG on the PS3? Nobody really did until its spinoff made waves earlier this year with its masterful storytelling so intimately entwined with the gameplay, and not to mention the sexy robot women. Set in a future where machines have taken over the earth, you play as 2B on a mission to liberate the planet for the remaining humans who fled to the moon. Tight combat and charming characters make Nier: Automata an experience that is as awesome as it is gut-wrenchingly emotional.

Persona 5

Full disclosure: I am an SMT fanboy. After YEARS worth of delays (“Coming Winter 2014 for PS3”, anyone?) it seemed difficult for the game to live up to the hype that it was building for itself. When release day rolled around, Persona 5 did not disappoint. From the battles, to the shops, to even the freakin’ pause menu, Persona 5 oozes style and class. Despite some rough patches when it comes to storytelling, the tale of a rag-tag bunch of misfits looking to become modern-day Robin Hoods delivered a 60+ hour epic experience that had me nodding along to the beat of every encounter.

Destiny 2

Despite issues plaguing its launch, and the controversy surrounding many of its design choices and divergence from the first game, I genuinely enjoyed Destiny 2. Though I won’t lie – some parts of it truly did suck, at launch. With the release of Curse of Osiris, a lot of the game’s opened up somewhat, but as it stands it’s a rather incomplete experience… But an incomplete experience that I enjoyed playing with friends. I had second thoughts about putting this on the list, but when I realized just how much time I spent on the game… Well, it would be a shame not to mention it here at least.

Honorable Mention: A Game Not Released In 2017 But I Want To Give A Shout-Out To Anyway

The final entry in Arc System Works’ BlazBlue series of 2D fighters, Central Fiction ties up every spinoff into the main storyline – literally. With characters from side-materials showing up, it’s incredible to me that they managed to fit and weld so much spinoff material into the main plot just in time for it to end. With a robust roster of characters, each playing differently, Central Fiction delivered a fun, stylish 2D fighting game that made me feel like a badass for executing even the simplest of combos.

ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.