About Adam Lutton

Game Designer / Programmer

Global Game Jam 2023: SICKHACKS.root

This image has an empty alt attribute; its file name is SickHacksLogo_bigger.jpg

Global Game Jam happened again, and this year’s theme was “Roots”. I started pretty early on this one, basically the day after the theme announcement, which happened on the 28th of January. To be honest, the theme kinda stumped me a bit at first, partly because I was doing some prep work prior to the jam that was focused on a hoverboard mechanic.

A small test of the hoverboard stuff.

Eventually, myself and my friend struggled so much for ideas that we just looked up the definition of “Roots” to if there was anything that would give us any inspiration. And I happened to stumble across the following:

ROOT
COMPUTING: A user account with full and unrestricted access to a system.

Putting 2 and 2 together, I suggested making a hoverboard game in cyberspace.

First downhill test.

Early on the idea was to have a player constantly go forward down a track, avoiding obstacles. That was a pretty general core plan. Problem one: downhill movement. As you can see in the video above, it kinda works but it’s slow and stutters a lot. Furthermore, the original turning code from the previous prototype would go against the constant downward trajectory I was looking for. But more importantly, the track I made wasn’t straight, so the constant forward force I was applying would send the player off the track soon after.

There was one solution I knew would work well enough to keep the player on track, and that was to place waypoints along the surface of the track and aim the player along those, while maintaining a forward force in relation to their rotation.

My first implementation was pretty horrible. A lot of stuttering movement and the player curving into the waypoints excessively hard, killing the speed and handling. My first implementation relied on rotating the player’s forward using Vector3.RotateTowards(). After some changes, I switched it to Transform.LookAt(), and that worked significantly better. But there was still a problem. In the original test, from the video above, the board would match the downward slope of the map and match the slopes on the side. With the new implementation, the downward slope is matched, but now the player stays upright when on the sides. There’s also still the issue of the player turning into the waypoints themselves, but it’s pretty rare.

The curved/uneven map used in the first level ended up being a real pain for me, partly due to the restrictions I placed on myself. The waypoint system was just the first problem, the second issue was scaling. Simply put, importing the level directly from blender was too damn small so I had to scale it up, and then rotate it a bit. But when it came to placing objects on it, that was just a crapshoot. Every obstacle on the first level is placed and rotated by hand, and each one has different values for rotation due to the unevenness of the model. It’s way the placement is so messy.

Gravity was the big issue. The short of the issue is that the player cannot get down the slope on their own gravity fast enough. So I did two things, added the forward force (Previously mentioned) and a downward force. This kept the player moving at a good speed and stop them from going flying off when they hit a ramp. It isn’t perfect though, it’s still very much possible to go absolutely flying.

There was something I discovered while rewriting the code, and well here’s a video of it.

Rewrote the code and made some changes so I could perform tricks.

While I was adjusting some code, I was looking at my turning code from my original hoverboard code from the first video on this post. It works by applying torque on a specific axis, the Y axis (Or Vector3.up). As a bit of a fool around, I changed that axis, and noticed that it that it would make the board flip around as if I was doing tricks. But with the first implementation of my code, I knew it wouldn’t be possible to do. So when I rewrote it, I made sure to accommodate this feature. As you can see, it really elevates the gameplay. It’s my favourite feature.

I previously mentioned that I was working with my friend on this, well that isn’t strictly true. Most of the game is a one-man-army effort on my part. Although we started early, my friend decided that his contributions to the game would be minimal until the absolute last minute, so in the extra week or so that we had, he spent 4 or 5 days doing nothing. This was a problem, because my friend and I have an arrangement where we switch roles for each game jam we take part in. This time it was me on the programming and him on the art. Unfortunately, when you require specific assets, like a track or obstacles, and the person in charge of that isn’t making them, it slows down development.

So I made most of the assets myself. Which was interesting. I’m not a great modeller, and you can tell that the assets below are pretty simple. What I have been getting good at is the material work. So despite the low detail look, the materials look pretty good.

I know it seems like I’m moaning about my friend here, but I was very frustrated at the time and I’m still upset about it because I think I could have done more if I wasn’t forced to spend my time generating art stuff.

After learning some lessons from making the first level, I decided that the second level should be a flat plane. There’s only one waypoint, right at the end of the map, so the camera no longer breaks and stutters trying to follow each waypoint. It also fixes a small issue with the lateral movement occasionally being slower than it should.

The big benefit though is significantly easier placement of obstacles. I no longer need to adjust each object individually to fit it correctly to the level’s surface, and additionally, I can bulk edit large amounts of obstacles easily. Level generation become much easier once I switched to this model.

But, it is less interesting to look at. With further experimentation, I might be able to find a good middle ground to have interesting downhill tracks but with the ability to add obstacles to it much easier. That said, I really can’t say enough how much better the second level feels to play compared to the first.

The last level is just a cutscene due to a lack of time. It’s also the only real contribution my friend made to the game. And it was a massive pain in the arse to implement. In fact, I actually finished the last level before making the second level.

But let’s get into what it is and the implementation, it’s quite a story.

The level is a rail going up a tree root. Not interactable at all, more-or-less a cutscene. The rail is a normal mesh and on top of it is a bezier curve. Here’s the problem, Unity doesn’t recognise a bezier curve as a mesh. So I had to find a script to export the curve as a series of coordinates into a CSV file, load it into the game as a text file via the resources folder, convert those coordinates into Vector3 data, making sure to swap the Y and Z axis for each one. After that, I then can to scale the vectors based on the scaling of the objects it needed to be planted on, and then convert it into world space.

Now, all of that is easier said than done, but it took me a considerable amount of time to get working. It was worth it in the end, but I really should have figured it out days prior. I had to make it with less than 24 hours before the deadline.

I like to say that a lot of what I do is a “Learning experience”, and that gives me some motivation to challenge myself during these events. And this was a pretty big learning experience. I learned a lot of manipulating the physics system, generating assets and models for a game (Moreso than the 7DFPS jam), and generally how to build this type of game.

Since GGJ ended, I’ve had this game on my mind and I want to keep working on it weirdly enough. At the very least, I want that first level to play smoother and fix the issues with the waypoint system, or find a better solution to the problem. Perhaps I’ll experiment a bit.

Anyway, that was the game and some of my experiences with GGJ this year. All in all, probably the most productive GGJ so far. If anyone reading this thinks I should continue developing this game, let me know. I would love to get more feedback.

That’s it for this post, bit a long one. Till the next one.

-Adam

The Den: July – December 2022

Another year goes by, and another post looks back at the latter half of it.

As per usual, I write this post over a period of months, it can affect the writing style or flow. Please forgive any inconsistencies.

Killer7

Where does one start with Killer7? I restarted this for my Twitch streams and it’s a really interesting game in places. Let’s get the bad news out the way first, the gameplay is pretty crap and the controls are even worse. The hit boxes for shooting are pretty bad too, I often ended up missing shots I thought were dead-on and sometimes getting headshots despite aiming for the chest.

The game takes place is a few different places, sometimes an apartment building, sometimes a school, and even a small town. Nothing crazy, but the layouts and how you get around them are a bit bizarre. In one of the boss fights I was running circles around the boss in a series of interconnected ambulances.

Speaking of boss fights, they’re probably the highlight of the game. The first one is pretty normal, shoot bad guy in the weak point type of thing. Then later I’m fighting a woman in a schoolgirl outfit and anime girl head mask in an empty car park.

I don’t really know how to explain the story. You’re just gonna have to play it. I will say that I didn’t like either ending. Nothing is particularly well explained. Maybe that’s for the best.

I wouldn’t say I like Killer7, but I think people should play it. Much like Drakengard.

Phantasy Star Online 2 – New Genesis

I liked the original PSO2 but there was a lot of bullshit in it. Minerals, random crap in my inventory, difficulty scaling not actually making any damn sense and just killing you instantly despite being a higher level than what you’re fighting, no real exploration, and so on. But there was a charm to it.

New Genesis fixes somethings and keeps a lot of the bullshit. There’s more exploration now because I can actually explore the world and get all those minerals and fight the same enemies over and over. To be fair, I’m spending a lot less time in loading screens and more time playing. In base PSO2 I spent most time wondering around the hub doing random crap or playing in the casino. And the missions I did were mostly the EXP boosting ones you got from the dailies. I’m still doing dailies in this, but there’s more interesting things to do and I can get side quests done in the process.

I do not know what the story is about. I don’t give two shits about it. So that’s all I’m gonna say on that.

My character transferred just fine, although I made a lot of changes.

Gameplay wise, I’m playing a Ranger and the archer classes, I did have Gunner as a subclass but switched for variety sake; and it’s pretty boring. There’s a lot of the same enemies and the amount of attacks I have is very limited. I’m not sure if I’m understanding the systems poorly but I don’t unlock any new attacks or abilities from the class menu. Maybe I need to fuck around with the other classes and see if that changes anything.

The streamlining isn’t all bad though. I no longer need to go to a bunch of different parts of a hub to do different things and can instead do them from a menu or just a single NPC. There isn’t a casino yet though. I suspect it’s gone. But the item enhancement is much better. No more secret items you need to reveal or multiple version of the same item to upgrade stuff. But there’s still a limit.

Welcome to the paywall. Want to upgrade your gun more? You need this specific item that you can only get via recycling a crap load of other items, the login bonus, or by buying it. Want to change the colour of your outfit? You need a Colour Pass which you get from Scratch Tickets, login bonuses, or buying them. And so on. The most annoying one is storage though. New Genesis shares storage with the original, so if you have a bunch of crap in there from base PSO2 so you’re very limited with what you can throw in there. Unless you pay, of course.

Last point, which isn’t as true now as when I was making notes for this post, there’s a lot of grinding to be done. Story content is gated off unless you obtain a certain combat level, which is a number that represents your level, upgrades, weapon potential, etc. in a general way. Think Light Levels from Destiny. I ended spending a couple of weeks doing dailies and side missions to boost my level up to where it needed to be so I could get to the next story part. Upgrading your weapons and unlocking class skills boosts that number considerably, as I found out at the end of those couple of weeks. Since then though, I’ve become over-levelled doing repeats of daily quests that give you a crap load of EXP.

New Genesis is alright. I’ll probably stop playing it soon though, unless something happens that grabs me. As of 7th of January 2023, I have uninstalled the game.

Final Fantasy X

I’m still pretty early into this. I stream this game with my friend while we chat about it. The HD Remaster is a bit of a mess and requires a mod to work the way I want. So I have PlayStation button prompts and Japanese voice acting enabled, making the experience a bit more bearable. However, the visuals a bit of a mixed bag.

The backgrounds look pretty good, especially the pre-rendered ones, but the characters look weird. Like their eyes are popping out and their face is rigid. Another issue is that various FMV cutscenes break and get replaced with a green screen, which is a problem with the PC port that is unfixable.

The combat is OK, it’s normal turn based stuff, no bullshit ATB system. I’m not super into the story yet, like I said I’m pretty early. I do like Lulu and Rikku though, but maybe for the wrong reasons. Blizball is fucking terrible, just layers of complicated statistical bullshit for something that really didn’t need it. Just make a handball game, don’t add all this crap.

God speed, kid.

I think Yuna sucks. And that’s all I have to say on the matter.

Shadow Of The Colossus

I started playing this again when I was doing research for that action game idea I’ve mentioned on this blog previously. I wanted to get a good idea for how the character moves and interacts believably with the world and the giant enemies. There’s a lot of animation systems at play here and to properly explain everything I learnt would take a blog post of its own. I’ll probably do that once the side project reaches a good point.

Anyway, I kinda got addicted to playing again and wanted to Platinum it on PS3, which was the version I was playing. It was going fine up until I had to do all the hard mode time attacks. Basically, the physics are bugged on the PS3 version due to the slightly higher framerate and some other changes. So movement on the Colossi causes the main character even more than in the PS2 version. This makes a handful of Colossi significantly more difficult that they should be, and it’s very frustrating. I’m struggling with the 3rd, 4th, 6th, and 15th colossi’s time attacks because I unable to get a good foothold to attack them with.

For the time being I’m playing other things, but I do intend on finishing those time attacks.

Splatoon 2 – Single Player

I liked Splatoon 1, but felt the single player portion was a bit lacking, but it wasn’t terrible. Splatoon 2 fares better in its offering content wise, but the quality of that content may vary depending on your tolerance for bullshit.

The single player works by having a bunch of different hubs with multiple levels and a boss. However, first time through each level you’re forced to use a different weapon. And this is where the problems begin. If there’s a particular weapon you hate using, you’re probably gonna have it force upon you for some really crap level.

The gunplay is fine, but the movement is slow and when using some weapons it’s slowed down even further. And then to top it off, there’s an alarming amount of platforming to do, especially if you’re weirdo like me that wants to find every collectable first time through. And if you suck at the platforming, even more bad news, you’re on a lives system. Die 3 times, and you have to start the level again.

The music is still good and there’s a lot of charm in the game. I did play the multiplayer a bit and even won a few matches. I did not play the expansion pack, not sure if I ever will.

Bayonetta 3

I would not call Bayonetta 3 disappointing. But I would say some of it’s ideas are really bad.

To start off with there’s multiple characters now, alongside Bayonetta there’s Jeanne and Viola. They both have their different playstyles, and in the case of Jeanne, a completely different genre for her levels. Bayonetta still plays pretty well, I can muscle memory the dodges most of the time but as I got further in it became more of a problem as I was rushing to just finish the damn thing and having timing issues due to the differences with Viola. But I’ll get to her in a minute.

There’s a good amount of exploration in this one, lots of branching paths leading to challenges, items, and so on. In one level there was a whole mini-dungeon hidden away. And all the collectables are stuff like music, models, things like that. Decent stuff.

A new thing they added, most likely nicked from Astral Chain, are monster companions during fights. They’re fully controllable and do quite a bit of damage, they add quite a bit to your combo. But much like Astral Chain, you’re completely vulnerable while controlling them and it’s awkward as Hell to use. The bigger problem is that they balanced the game around it, if you want high combos and high tier awards for each encounter, you have to use them. There’s also a fuck load of them, like 6 monsters or so. Each have different attacks and powers, so there’s a lot of experimentation to be had. Or you’ll just stick to a couple like I did.

Speaking too much stuff, there’s just as many different weapons to use and most of them are kinda awful. You get to preview them early in the game too, various challenges in the levels will often provide weapons that aren’t available at those points in the story on your first time through. Again, there’s too much and I ended up just sticking to the default weapons most of the time, although I did like whip.

Right, Viola. Absolute trash. The biggest problem in terms of gameplay with her are the major differences in controls and timings for dodges and Witchtime. The biggest control issue being that pressing block in time to parry causes Witchtime, and dodge doesn’t. For further annoyance, it’s on a different button. So my muscle memory for Bayonetta is useless. The dodging itself isn’t particularly effective either, mostly being more of a side step than an actual dodge. I’ll get back to the Witch Time problem in a moment. Her ultimate attack form thing plays a lot better than her base from at any rate.

Her personality is also a sticking point. She’s a bit of a whiny git, even in Japanese. She also does stupid things often to the point where I wonder if she’s taken one-too-many hits to the head.

Back to Witchtime, I’m not sure what they’ve done, but it seems very inconsistent. Often I would go into Witchtime and try and land an attack and half way through the animation it would just wear off. This is especially irritating during challenges that explicitly set that you can only cause damage during Witch Time. It’s not as bad with Bayonetta but with Viola it feels outright broken. There were challenges that were outright impossible because I simply couldn’t get Witch Time to work.

Last negative point, I wasn’t a fan of the ending. Looking at other people talking about the game, it seems like I wasn’t the only one.

I like the game overall, and I think it’s better than 2, but Platinum need to stop adding gimmicks for gimmicks sake.

Call Of Duty: Modern Warfare Trilogy (Original)

It has been a while since I last played a COD game, and two of these I already played. Now I only played the single player obviously, because the multiplayer is either dead or a Hell hole. The campaigns are still very fun although there’s a clear shift in scope between COD4 and MW2 & MW3.

Before I get into that though, one small note. A had a weird application duplication bug that would occur when I changed my settings in-game. It would cause the game to open multiple instances of itself on my desktop and I literally could not end the process because I would get stuck in each instance. The only way I could close them was my logging out and logging back on again which would close most applications. This happened in all three games. But my settings did save so I didn’t need to re-do it again and risk the same bug.

Call Of Duty 4 is my clear favourite of this trilogy, it’s still incredible and very chilling in places. “All Ghillied Up” is still a fantastic mission, the levels are surprisingly challenging even on the normal difficulty. One thing this game does that the other two didn’t was unlock cheat codes for collecting the intel laptops. The other two don’t give you anything for getting them other than an achievement.

Modern Warfare 2 is still entertaining, but I always felt it was a little too short. A lot of the levels go by at a breakneck pace. But looking at my highlights from when I streamed it, it apparently was about the same length as COD4. But the levels are way more bombastic and absurd than anything in the previous one, and that makes it a little less memorable in my view. Not to say that levels like the oil rig and prison aren’t cool as Hell. But it’s also an easier game overall.

Modern Warfare 3 is the one game in this trilogy that I hadn’t played until this point. Just from the opening alone, it sets a very different precedent. There’s no training mission, no tutorial about how to shoot your gun and throw grenades, just straight into the meat grinder. In terms of pacing it works well and certainly makes a statement in terms of story that “Shit is fucked” and World War 3 waits for no man.

In terms of levels, I’d say it’s about on-par with MW2, although there are a lot more gadgets and in-game cutscenes. On that first note, there’s a level where you pilot a small robot tank thing that’s got a whole array of weapons attached to it and just riddle any poor sod daft enough to be in-front of it. That’s a semi-new gameplay idea.

The story is alright, can be a bit hard to follow what the Hell the overall world situation is. You’re getting thrown about all over the place and playing multiple characters, some of which only for a single level. The ending is satisfying, although it is a QTE sequence, but everything up to that point is a full guns blazing experience.

Something did irk me while playing through it, and that’s just the current state of the world. Tensions are very high right now, and the strong WW3 themes in this stated to make me feel a little uncomfortable. But that feeling has eased a little bit as of late. I’d glad I finally finished trilogy off though.

ANNO: Mutationem

When I first saw this game, it was on Indie LIVE Expo. A little while later, a demo for it appeared during one of Steam’s Next Fests. Something about the demo intrigued me so I wish listed it and waited for a sale because I couldn’t afford anything. Once it was cheap enough, I picked it up. And my general opinion on it is that it good.

The art style is on point and it nails the cyberpunk look. The sprite animations look pretty good, although a lot of it seems to be using 2D bone animation rather than sprite sheet, but I think it works well. The outfit selection stuff is nice, it has a couple of gameplay related events too. But dressing up the main character as a maid or office lady is pretty great.

CORN MAN

Combat is alright. You get handful of different weapons, I mostly used dual-blades because I prefer fast attacking weapons and the katana wasn’t doing it for me. There’s a ranged weapon and a greatsword too. It got a bit repetitive about mid-way through the game as you get stuck in this underground section for quite a while and I eventually just teleported out of there and did side quests for awhile just to stop myself getting burnt out. Crafting is a element of this game, but it doesn’t really factor in until much later as you can’t really get the money or materials easily till you get to a harbour town nearing the latter part of the game.

I can’t say I cared much for the story though. The main premise is that the main character has a illness that causes her to become violent and uncontrollable, and her brother is looking for something to cure her. He ends up going missing, so you spend the rest of the game trying to track him down. A lot of the details of the background lore and explanations about what the main character is suffering from is mostly told through text documents and things you find around the environment. I’m not really the type of person to read that stuff, so I mostly skimmed through it.

This looks familiar.

The game is full of stuff reminiscent of Evangelion is you’re into that. Lots of crosses and large underground labs and such. It made me roll my eyes a lot.

It’s a good game, I’d check it out if you got the time.

Other Stuff I Played:

SkyGunner

Short little flight game. Like a light Ace Combat. Cute art style. The controls are fine, although the emulated performance isn’t great. The auto-targeting has no bias, so trying to target your actual objective can be a pain. And the actual mission objectives aren’t all that fun. A bit of a disappointment unfortunately.

GTA III & Vice City

I hadn’t finished either III or Vice City until this point, I kept losing my saves. The first issue I have is the game logic being tied to FPS, so I had to hard-limit to 60FPS via the drivers. I installed Silent Patch and the Widescreen Patch to make the game more playable.

The story was more disjointed in III than I remember. You meet a lot of characters and then they often die soon after and you meet some new ones. The driving isn’t good, I flipped my car so many damn times. A lot of the missions are escort quests, which suck. The AI are very aggressive, and by the end of the game I couldn’t drive through many of the streets without getting shot at. Despite my complaints, the game was OK. I’m glad I finished it.

As for Vice City, I installed the same mods again. I played the whole game without its soundtrack, which is a depressing experience, but necessary for streaming on Twitch. The cars feel better, plus there’s bikes. There’s a few more weapons to use. The story is better told and follows the characters in a more sensible way, I had a much better understanding of what I was doing and why. The story does feel a bit short though, or at least it would do if not for the last part of the game being a massive slog because of all the business missions. It’s a real kick to the pacing. Better than III, but San Andreas still reigns supreme.

Call Of Duty: Black Ops II

Another game I never finished. The game has a bunch of story choices and branches, but I honestly didn’t enjoy it at all. Once you get to the end those story choices sort of play out in a disjointed manner. There’s a lot of gadgets and different guns, but I just stuck to the “Old reliables” of AR-15 style rifles and regular grenades. There’s no real reason to use them, which I guess is a downside of selectable loadouts is that the levels can’t be balanced towards certain tools.

The RTS/Tactical missions you have to do on the side are really half-arsed. It’s just a horde mode with a bit of objective defense ones. But the story around it doesn’t make sense and there’s no real reward for doing it. I’m not sure why it’s there.

Other than that, pretty standard COD campaign otherwise. Still a good amount of fun set pieces and missions.

HYPER DEMON

HYPER DEMON. That’s a title. It’s from the same guy that did Devil Daggers, so you should know what to expect. It’s a very similar game, including the replay system. It’s a pretty fun game, but I’m really bad at it. Also my eyeballs start burning while looking at it. It’s fucking cool though.

A replay I made as a test.

Anime Corner:

Cyberpunk: Edgerunners

I haven’t played the game, but I enjoyed this. The soundtrack is good, especially the opening song. The aesthetics are on point with the game. The characters are fun bunch, the story around them is interesting enough to watch it play out. And a lot of characters die in some really fucked up and gruesome ways, which is always nice to see.

Lycoris Recoil

Do you like girls with guns doing anti-terrorist things? You’ll probably like this. I know I did. There hasn’t been much in the “Girls with Guns” genre in anime for a while, so this and Maid Wars was nice to see. The main two girls have a dun dynamic, Chisato is basically an S-tier murder robot who refuses to use lethal weapons and Takina is a shoot first, ask questions later type.

The episodes are fun, a good amount of action and slice of life. The actual plot though probably could have done a bit more or gotten a bit more focus at times. It is elevated by a pretty good villain though who plays off Chisato very well. It’s good watch, I hope they make more of it.

Akiba Maid Wars

Speaking of girls with guns, I was not expecting this show to be anywhere near as violent as this was. The first episode is an incredible ballet of gratuitous murder, featuring a cross-cut between a song performance at the maid cafe and a maid shooting dozens of maids in a shootout on the streets of Akiba. It is quite the sight. I know the maid cafe scene in Akiba during the 90s was competitive, but bloody Hell.

The plot overall is fairly typical of something who’d find in a Yakuza film. Extortion, protection money, rival gangs, etc. But it’s all maids, and animal themed maids at that. The characters dedication to the cafe themes make me question whether they have any humanity left. Great show.

Yojouhan Time Machine Blues / Tatami Time Machine Blues

As a fan of Tatami Galaxy is was nice seeing these characters again. As you can guess the plot this time involves a time machine. They find it in a closet and use it to go back in time an steal a remote for the air conditioning unit in the main character’s room. There’s a crapload of foreshadowing for the time travelling shenanigans they’ll undertake, including something involving a Kappa statue. It actually does a pretty good job and tying up the loose ends caused by the time travelling nonsense and looping back on itself. Great show, I hope it gets a Blu-Ray release so I can keep the physical collection going.

Chainsaw Man

Let’s get this out of the way, Chainsaw Man is not the second coming of Christ. That said, I did like it. Some of the animation sequences are very well done, especially some of the character animation. The gore and violence are as visceral as you would want it. Power is hilarious and easily the most fun character in the show. Makima is good as a character, but I’m not sure they got the right voice actor for her.

All the episodes have wildly different ending sequences and although I like the first few endings more than the later ones, they’re all pretty well done and visually interesting to look at. The ED about Power is especially well done.

I really hope they continue the show though, because I think it ends just as it was starting to get interesting.

Bocchi The Rock

Well this show became a hit out of nowhere. I went into it with the mindset of it being a discount K-On. It’s not. It’s a premium product that is vastly superior. Cloverworks really outdid themselves with this. The animation styles are completely insane, with a good amount of stop motion, non-standard art styles, and real world images superimposed in. Completely insane. The music is top notch, the album that released after the show has become a best seller and I’m still listening to the songs even weeks after.

Bocchi’s reactions and faces are a real highlight. My favourite reactions being her just fucking exploding and lying down in her bed staring at a room covered in the same photograph and just cackling. The other characters are great too, I really like Hiroi. An absolute drunken train wreck full of best girl energy.

It’s an absolute must watch.

My Top 10 Games Of The Year

Released Games That I Wanted To Play Or Play More Of

AI: THE SOMNIUM FILES – nirvanA Initiative
Koumajou Remilia Scarlet Symphony
Stranger of Paradise: Final Fantasy Origin

I wanted to play these, but couldn’t afford it. I did play the demo for Stranger of Paradise on PS4 though and had a pretty good time, but I wanted to play it on PC for better performance, unfortunately (As of time of writing) it’s still an Epic Games Store exclusive.

Worst Game Of The Year

Trek To Yomi

The art style could not save this one. The combat felt bad, it was really repetitive, and the story was nowhere near as good as it could have been. Thankfully I played it on Game Pass rather than buy it outright. Saved myself a bit of money.

And without further ado, the Top 8. Yes, 8. I didn’t play that many new games this year.

8. Forgive Me Father

7. Neptuna X Senran Kagura: Ninja Wars

6. DRAINUS

5. HYPER DEMON

4. ANNO: Mutationem

3. LEGO Star Wars: The Skywalker Saga

2. Bayonetta 3

1. Windjammers 2

If I had more money to spend, I would have played more games. But to be honest, this year was kinda week. Windjammers 2 is a fantastic game, but should it really be my number one? Well for the time being, it is.

Let’s actually give it some credits. It’s classic Windjammers gameplay, snappy, responsive, super fun. It’s got rollback net code, bonus modes, some single player content, and it’s reasonably priced. It’s a damn fine game and I struggle to find fault with it.

Just to answer a question; Yes, I played Elden Ring. No, I did not enjoy it.

And now for the other Top 10 list.

My Top 10 Anime Of The Year

Special Mentions:

Spy x Family & Koi wa Sekai Seifuku no Ato de

Worst Anime I Watched:

Hoshi no Samidare

And now the top 10.

  1. Koukyuu no Karasu
  2. Kawaii dake ja Nai Shikimori-san
  3. Birdie Wing: Golf Girls’ Story
  4. Chainsaw Man
  5. Kakegurui Twin
  6. Sono Bisque Doll wa Koi wo Suru
  7. Lycoris Recoil
  8. Akiba Maid Sensou
  9. Kaguya-sama wa Kokurasetai: Ultra Romantic
  10. Bocchi the Rock!

I bet you didn’t see this one coming. Shit year for games, but a pretty good year for anime. And Bocchi The Rock is one Hell of a show. It’s the kinda show that you watch and then every other anime after just looks like a pile of crap. It’s 10/10. Easily. The characters are great, the animation is great, the music is great. And it was blast to watch and talk to other people about it and see it just absolutely set the anime community on fire.

Watch this show. It’s fantastic.

And that’s your lot. 2022 is over and 2023 is now in full swing. Sorry this post took until late-January to get done. It was longer than I thought and I started working on it much later than I should have. I will try harder next time.

Hopefully things will get better this year.

ADMAN

18/12/2022: 7 Day FPS Jam

I made another game for another game jam, check it out.

It’s not a great game, but it’s my third attempt at a first person game, and my first attempt at an FPS. Unfortunately the date snuck up on me quicker than I expected, and I spent late November and early December being unwell to the point that affected my productivity. So a lot of the ideas and mechanics in this are a little rushed and half-arsed. But as a proof-of-concept, it has some charm. If nothing else, I made a Liminal Space Meme Game with guns.

As I said, I was sick at end of last month and the beginning of this month. Literally the day of the last blog post was when I started to feel poorly. By the evening, I had a really bad fever and even vomited. Very unpleasant. It ended up lasting for about a week, although the coldsores lasted a little longer.

Well from one depressing thing to another, England got beaten by France in the World Cup. I really am not going to live to see the day they’ll win again. I could complain more, but it’s not really worth it.

Now for something completely unrelated; I’ve been getting a considerable amount of Blender tutorial videos from YouTube’s recommendation algorithm. Mostly ones about materials. I’ve been thinking about getting into making textures and stuff, maybe try and sell them as asset packs for Blender/Unity. That said, I probably need to find some unique ideas of things to make to compete with all the existing stuff out there. Maybe I’ll make some assets to use in Godot as well.

I might harvest the stuff I made for the recent jam game and sell off some of that. I imagine there would be a market for the guns in there. But I will need to split the profits with the friend who made the models. Although first we need to improve and fix the models a bit, give them correct sights and improve the animations and such.

Right, last thing: Rotaction is 25% off until the 2nd of January. Feel free to grab it at the reduced price if you want to support me.

I am working on the year end blog post with all the games I played and the top 10s, so look forward to that. Later.

-Adam

28/11/2022 – Analogue Pocket GET

Hello again. A thing I bought a year ago finally arrived, and it’s pretty sweet.

The Analogue Pocket is an FPGA emulation device that specifically plays GameBoy and GameBoy Advance games. FPGA is hardware emulation, not software, so it leads to greater accuracy in terms of emulation. This generally means less visual glitches but also has the downside of emulating the slowdown in games that would suffer it on real hardware.

Although you can play real cartridges on this thing, the OpenFPGA side is the most interesting part. You can just load FPGA cores made for it and then boot games off the Micro SD card. I have Neo Geo, NES, SNES, and Mega Drive cores on mine. Pretty much all the games I’ve tried have worked perfectly, and GameBoy games especially look gorgeous on the screen.

My major issue with the thing is that I don’t find it particularly comfortable to hold for long periods of time. Much like actual Nintendo handhelds. It’s not as bad as the 3DS or Switch JoyCons, which cause literal circulation problems for me, but there’s still things I would have changed.

I mean there is one more issue; the price. I think I’ve spent £400 on the thing all-and-all. It was £300 for the thing and dock, plus shipping, then the FedEx tax was £70 (Customs charges are a fucking scam), and then another £40 for a Micro SD card and UK USB-C plug. Yeah, it comes with a US plug. Be fair warned.

But I like the thing, and I’m gonna enjoy playing it. I actually did a stream soon after I got it where I played a bunch of games, check it out:

In other news, Indie LIVE Expo is happening soon. Why am I bring up here? Well Rotaction is going to appear during the first day when they discuss currently released games, so keep an eye out for it. But this is the first time one of my games has appeared at a major event, although it’s the second time it’s been promoted. The event will be streamed on the 3rd and 4th of December. Check it out, there’s loads of cool games.

Now, I’m going to talk about what I’m currently working on.

7DFPS (7 Day FPS) Jam is coming up in December, and I’ve decided that I want to take part. So I’m putting together a few things to practice and learn how to make stuff for it. I’m looking at stuff like Probuilder and Pro Grids for fast generation of levels, and learning how to do raycasted bullets with appropriate effects, as you see in the video above.

Now I know what you’re thinking, the Jam hasn’t started yet and I’m over here making stuff. Well, there’s no rule that says I can’t work on stuff a little early and most of this work isn’t going to be used in the Jam game. But it’s better I figure out these problems now, rather than during the Jam.

As for the side project I’ve been working on:

Well, progress is slow. I can shoot a bow now, but it’s a giant mess. Unity’s Rig Builder tool is such a giant mess to use that making it this far is generally surprising for me. But to explain the issue, layers upon layers upon layers. At some point I had to undo a lot of work and replace it with a canned animation, which is how I got the bow aiming and firing to work. Although I can explain some of that as well. When I started with the rigging, I was basing it on the idea of driving the player animation in relation to the bow. That was dumb, now I’m driving the bow animation in relation to the player, which is simpler to implement and has lead to better results.

Well that’s it from me for this time. Now I have to publish this before my power goes out. Which is a thing that’s happening today. Fun times. At least I have some books to read.

Till next time.

-Adam

09/10/2022 – The Blog Is 10 Years Old Today

10 years ago today, while I was at University, after 4 days of trying to link up my domain to my hosting; this website was born.

And that’s all I have to say on the matter.
I’m kidding.

I don’t really know what to say. My situation is very different these days, arguably worse. The MyGamingCommunity forum died, MoA moved to Discord, GameTrailers died, I got way into anime and started learning Japanese, I finished Uni in a horrible state, started becoming an indie dev, and then I started streaming again. Sometime after that, the COVID bullshit happened, it fucking made everyone’s lives Hell including me. Then I got a dog and my depression lessened.

She’s 2 years old now.

This would usually be the point where I would go on about what I’m currently doing and things for the future. But you already know what I’m currently doing and I have no idea what the future holds. I do know I’m gonna need to start earning some money. I’ve been thinking about stuff like Patreon and Ko-Fi lately, but I don’t know if it’s a good fit for me and the things that I do.

I’ll work it out.

Anyway, in other news, I took part in another game jam and made this thing:

Basically a Katamari-lite. Give it a go if you want.

As for the side project, well I’ll be getting back to that either next week or the week after. So keep an eye out on Twitch for it.

Anyway, 10 years. Hopefully I can get the funds to keep it running for another 10.

-Adam

27/09/2022 – 7 Years Late

Well the weather is getting colder, so I guess summer is finally over. The season that is, my dog of the same name is doing fine.

7 years after graduating university, I have finally updated the “Uni work” pages of this site. Better late than never I guess. Annoyingly, there’s still a lot of stuff missing from the pages because there’s stuff I just don’t have anymore, or can’t post. There’s also things like documents and such that aren’t programming related.

Either way, it’s something off my whiteboard.

Anyway, you might be wondering what’s going on with my side project. Well you’ll have to keep waiting because I’m working on something else now. A certain place I hang out on, on a certain anime image board started a Asset Jam, a two part game jam where the first part has users submit assets for games, and then the second part has users make games with those assets. Well I didn’t make any assets for the first part, but I am making a game.

Behold.

The beach ball of doom.

It’s a game I’m titling “I MUST CONSUME”, and it’s basically Katamari. But instead of gathering items in a massive ball, you absorb them instead. I’m using the game as an excuse to get familiar with Cinemachine and a few other things. I was thinking of migrating the camera system in my side project to Cinemachine, and used this project as a test bed for it. I’m fair happy with it here, so I think I will be doing the work needed to switch.

I’ve got until the morning of October 15th to finish it. Hopefully I can get it done by then. As usual, I’ll be streaming development on Twitch.

Nothing else is going on really. Still trying to find a game industry job, at least they’re actually replying to me now, even if only to reject me. I’ve started uploading some of my regular gameplay streams to my YouTube channel, and getting some decent view numbers. I think I’ll be doing more of that, especially for the demo & VR streams I do on occasion. Maybe some highlight compilations at some point too.

I was warned that gaining viewers solely on Twitch was a fool’s errand, and they were right. So maybe I’ll try this method. On that note, I am thinking of streaming my game dev stuff to YouTube as well, although I don’t know what the state of restreaming is these days. Maybe I’ll take a look at Restream.

That’s it from me. I’ve got a busy few weeks and maybe months ahead, I’ll try and post when I can. Later.

-Adam

09/09/2022 – ROTACTION IS OUT!

Get it on Google Play

After 5 or so months of development, Rotaction is available for purchase. I hope you guys enjoy it.

Long Live The King

The Queen died yesterday. Although it’s likely you already know that. 96 years is a pretty good run, and a lot of people would consider her to be the rock that held the UK together.

It’s a new era. I’ve not a fan of Charles, but I can’t give him too much grief considering the size of the shoes he now has to fill.

I kind of wish I wasn’t releasing Rotaction literally the day after all this. But it can’t be helped.

Side Project Progress

It’s coming along. Slowly but surely. Learning a lot about inverse kinematics, Unity’s animation system, and more. Gonna be learning the animation rigging system next to get this bow working and fiddle around with the animations more. I still haven’t got far enough with it to show off yet, but hopefully I’ll have something soon.

Hell of a week. Play Rotaction, enjoy it.

-Adam

02/09/2022 – Rotaction Is Complete! Release Date!

After 5-6 months of development, Rotaction is complete and ready for release on September 9th!

It will be available for Windows, Linux, and Android. You can buy the game from the Itch.io page or the Google Play Store page once it is available.

It’s been the most fun project to work on so far. Probably because there were few issues that I needed to deal with or just the fact that the overall complexity of the game was relatively low. That said, rarely ever does a game go from being an idea in my head to being a full product, and retains the art style and gameplay that I originally imagined.

I’m happy overall.

Yet Another Side Project

Having fun with Blender

Over the past few months, the YouTube algorithm has been continuously feeding me various tutorials for things. It started with Blender tutorials for modelling, then shaders. The image above being a tease of the thing I’m working on. After that, the Unity tutorials starting coming. However, these were all about one subject: procedural animation.

I got interested, and decided that I want to make a playable prototype of a game idea using these techniques. However, I’ve underestimated the complexity of this project. To start off with, I have to build a 3rd person character controller with various movement options, and the have it interact with various objects and the large monster I’m going to put in it. This monster will be driven mostly by procedural animation.

The player was originally going to be driven by this system, but then I discovered Unity’s Animation Rigging tools that allow me to use IK targeting in tandem with the animations I already have. I haven’t started using these tools yet, but it should be interesting.

I’m going to try and document the development of this prototype, showing all the different systems and how things work. I’ll be streaming development on Twitch and posting it to my new game development YouTube channel.

That’s all for now, I’ll leave you with this.

-Adam

The Den: January – June 2022

It’s time for my thoughts on video games and anime that I’ve played through the first half of this year. Keep in mind that I work on this post over these months and sometimes it causes the flow of the text to be very inconsistent.

Days Gone

Stop me if you’ve heard this premise before. An open-world zombie apocalypse survival game with crafting elements. And you have a motorcycle. That’s Days Gone in a nutshell.

When I first saw this game I was skeptical about the zombie stuff. A giant horde is cool and all, but I wondered what else it had going for it. Once it started getting reviews though, it seemed like reviewers were really disinterested with it, but the actual player response was mostly positive. It’s that latter aspect that got me interested in playing this once the PC version came out.

After a good few hours of it though, I just found myself in a similar place to the reviewers. The protagonist is pretty boring and not interesting to listen to at all. The NPCs are worse, and are constantly yapping at you on the radio. One particular character runs a radio show called “Freedom Radio” or something to that effect, and spend the time complaining about how the American government are a bunch of incompetent ass-hats who sell out the American people at every opportunity. Even if he isn’t wrong, it’s the preachiest bullshit I’ve heard. Thankfully you can skip every piece of radio dialogue.

The main story itself is about the protag and his buddy living in this post-apocalyptic world, and reminiscing about the old days. Specifically thinking about his supposedly dead wife. I haven’t gotten too far with the story, the game is such a drag.

The resource and fuel management in the game is just the complete antithesis of things I enjoy doing in open world exploration games. It limits how far I can go, constantly makes me micromanage and stop constantly so I can go search for fuel or ammo. Some people might enjoy this, but I find the whole thing a pain. Plus the shooting controls aren’t great, so wasting ammo becomes more of a problem than I’d like.

I am not very far into the game, but I’ve completely lost interest in it. It’s just tedious and boring.

A Plague Tale: Innocence

I originally heard of this game when journalists were praising it from the rooftops, and quickly assumed that it was some dumb walking simulator. Some time later, and after subbing to Game Pass, I saw that this game was on the list and decided to give it a go.

Surprisingly, it isn’t a walking simulator. It’s actually third-person stealth action game with crafting elements and a lot of escort segments.

It’s set during the plague era in France where the church was killing anyone who was diseased, burning the bodies, and attracting rats. Anyway, you play some girl whose family is attacked because her younger brother has some kind of special blood. I won’t spoil what makes him special, but it affects gameplay late in the game.

Main girl’s weapon of choice is a slingshot, and the previously mentioned crafting elements improve that by speeding up the time between shots and providing more ammo. There’s a lot of killing with that thing anyway, along with some light puzzle solving.

But the thing this game is absolutely full of is rats. A lot of fucking rats. It’s as technically impressive as it is terrifying. I’m not really that scared of rats in real life, but the damn horde of them in this game is quite unsettling. The overall graphic presentation is fairly impressive, although the game is very linear, so it doesn’t need to make the same compromises that massive open-world games do and can probably hide its blemishes well.

Last point I’d like to make is that I played the game with the French voices instead of the English. I did look into the English ones and saw that everyone had a really shit accent, so I think I made the right choice. That said, some things in the game require you to pay attention to the dialogue, and if you miss those points you may find yourself wondering what it is the game wants you to do. Thankfully, in my playthrough this only happened a couple of times. So keep that in mind.

I hope the sequel expands on the ideas here.

Windjammers 2

The original Windjammers is a brilliant competitive game that is still really fun today. Windjammers 2 iterates on that and adds a couple more mechanics on top.

It’s still a 4 button game for the most part. It plays super well. They even have rollback netcode.

The only problem is that it basically requires friends. But if you have those and they’re willing to play, then you’ll have a great time. Me though, I need better convincing skills.

Drakengard

Having Nier Replicant and Automata, I decided that I should finally check out the games that spawned them. And so I played Drakengard.

Jesus Christ this game is rough. Even by the standards of the time, the combat is pretty dreadful and slow. There’s a lot of very rigid, deliberate animation that you can get thrown out of very easily when attacked and can get stunlocked pretty badly. The game isn’t difficult, but you can get caught up unless you know how to counter it properly.

It’s not all bad news though, the Dragon combat (Although I would call Angelus a Wyvern based on their anatomy) is actually alright. There’s still some roughness with the controls and precision of movement, but it’s definitely more playable than the ground combat. The lock-on fire attack helps considerably. Unfortunately, when playing on maps with ground and air combat, which are most of them; Dragon combat often gets curbed frequently as ranged enemies can get you thrown off after only a couple of hits from either magic or arrows. The magic enemies are especially irritable.

The combat isn’t the only thing that’s terrible. The soundtrack is ear-bleedingly bad and often contains tracks that sound like the music is skipping due to a disc error. It’s a real headache to listen to, but at the same time, it makes sense considering the concept of the game.

Drakengard is not a happy game. The characters experience constant suffering and pain, and all their efforts to stop the events of the game from happening are futile more often than not. The basic story is that Caim makes a pact with a dragon to gain more power and loses his voice in the process. His sister is a “Goddess” who acts as a seal to some kind of ancient magic that could destroy the world. It takes quite a while before it starts making any sense, and only starts to come together once you go through the multiple story branches. Needless to say, it doesn’t end well in any of the 5 endings.

Ending A is fairly standard and the most normal. Re-sealing the magic and continuing on the world. All the endings after that though are completely insane. Including an ending where time itself is frozen, and of course Ending E that leads into the events that creates Nier.

Before I continue, I’m going to make it obvious that I’m trying not to spoil specific events in the game.

But I’ll just say one more thing about the story: GIANT BABIES THAT EAT PEOPLE.

Now before you can get to the final chapter of the game, the player needs to collect every single weapon in the game. All 65 of them. And you have to do it on normal difficulty, so don’t even think about changing it. The problem with this, is that the prerequisites for obtaining these weapons are obtuse to say the least.

Most weapons require the player to go to a specific part of the part, or defeat a certain enemy. Several of them require the player to beat a mission with a certain amount of health or within a specific timeframe. But there are more bizarre requirements, like following a specific path through a level, or touching particular items in the level in a certain order, or the most annoying; waiting 5-20 minutes for a chest or enemy to spawn. And there’s no in-game hints about any of this, so you have to rely on a walkthrough to know what you’re doing.

In relation to Nier, the game doesn’t really answer my questions with the series. I understand where the magic comes from in Nier now, but I still don’t know who the Watchers are, or the origins of the supposed “Red Eye” disease. Are the Watchers the people behind all the “Beyond the plane of existence” nonsense in Automata? Is there any relation at all with that?

Anyway, Drakengard is a terrible that’s very interesting. Should you play it? Depends on your tolerance for bullshit I suppose.

Tales Of Arise

I fell off Tales Of Berseria really hard. I disliked the characters and found the story to be really boring. I didn’t get very far with it either. Tales Of Arise is an improvement in the sense that I stuck around to the end of it.

I like the characters a little more in this, specifically the main two; Shinnone and Alphen.

Shinnone is a tsundere-type character. She’s described in game as a Renan, which are people that originally come from the bigger of the two planets that the game is set on. She does have a strange quirk though; touching her will cause extreme pain to the person doing the touching. To be more exact, she extrudes thorns when touched.

Alphen spends most of the game without his memories and unable to feel pain. And until the first Renan lord boss, his face is completely covered with a mask. As a counter to Shinnone, he is completely unable to feel pain.

The dynamic between these two is probably what kept me interested in what was going on. Their interactions were generally the most enjoyable part of the story. I don’t really want to spend this whole part of the post describing the other characters, so I’ll just say I don’t like them that much. Especially Law, he sucks.

The real-time combat the game is has is pretty good. You can switch out the move sets to give greater control over your combos. And combos really are the name of the game here, as most enemies have a limit bar attached and if you attack them enough in a sequence, you can perform a Break move on them for massive damage. It becomes doubly necessary when you get later into the game and it starts throwing enemies at you that are clearly under-levelled for.

I spent a lot of time in the game underleveled and it was as tedious as it sounds. Fights took much longer to get through, and sometimes you would fall into areas or encounters that could wipe your party in a few hits.

As for the story, well I hope you like fantasy racism, because it’s a lot of that. And honestly, it’s a bit too peachy for its own good. Most of the arguments in this game amount to dumb squabbles about classism or why slavery is bad. I’ll spare you the details because quite frankly, I don’t really want to go on about it.

It does do the JRPG thing where you think you’re nearing the end of the game, only for the game to turn around and throw a couple dozen more hours of gameplay at you. To add to this, the game adds another anime sequence showcasing what’s coming up in the 2nd half of the game, and also replaces the anime opening that plays when you start the game with this new one. And the second half is considerably different to the first half visually, going more into the sci-fi that it teases you with earlier.

However, my problem with all of that is it just makes the game longer than I wanted it to be, and when I did finish it I was more glad it was over than being excited for anything to do with the end game, of which there are a handful of new quests and dungeons. Compared to something like Scarlet Nexus, where I’m looking forward to playing through Kasane’s campaign.

Good game, but a bit too long and preachy.

Taiko No Tatsujin: The Drum Master

This probably doesn’t need a full post on here, but I’m doing it anyway.

Taiko is one of the few rhythm games that I actually enjoy playing. There’s only two notes you need to hit, Don or Kan. Simple, right? Unfortunately not, the series is notorious for its difficulty and precision. Easy and Normal are fun enough, but once you get into Hard and Extreme, you basically need a drum controller to keep up.

There’s quite a few anime songs and video game tracks in there, and that’s kept my interest for the most part. The Namco originals are mostly great too. Playing the game daily and doing specific songs nets you some extra points for customisation items and additional songs, although it’s still very grindy.

That said, as much as I like the game, there are a number of technical issues. First of all, it drops inputs frequently. There’s a Unity wrapper working around the game, so that might be the culprit, but it could also be my keyboard. Or both.

The second, more troubling problem is the lack of high refresh-rate support. It’s locked to 60Hz. Playing a game at that speed on a 144Hz screen causes a lot of problems, most notably, blurry motion on screen. The notes can move so fast that it becomes near impossible to focus on them, and it causes eye strain on my part. I hope they add support for higher refresh rates in the future, but I’m not holding out hope here.

But to not end on a low note, here’s a picture of Don-chan as a food item.

Elden Ring

Oh Elden Ring, oh Elden Ring. What a pile of terrible ideas.

It reminds me of Dark Souls 2, in the worst way imaginable. It mostly aimless, (Yes, there is a main path through the game, but if you follow it exclusively, you will have a bad time) large swaths of land will emerge before you, but there’s often not as much to do there as you think. What content there is outside the mainline quests is often repetitive. Most of the underground dungeons even have the same visuals and enemies.

Once you get into the world a bit, there’s some interesting things out there. I found a tower with a mage at the top that I had to fight, I also found some dude boiling crabs in a pot. And then I found a dude that was a giant pot.

Combat is such a regression from Sekiro. Everything feels floatier and less in impactful. Also, enemies can attack you through walls, still. It’s been a problem since Demon’s Souls and they still haven’t bothered to fix it. Surely some raycasted prediction attached to the animation would fix that, no?

PC performance is terrible. It stutters like mad. Basically unplayable at times.

I only managed to put 15 hours into it as of the time I’m writing this, and I haven’t actually touched the game much since it came out. But I really haven’t enjoyed my time with it. I might keep it installed just to see if my friend wants to try the seamless co-op mod, maybe that would improve my view of things.

Wild Arms

I’ve yet to finish the game as of time of writing, so expect a follow up in the new year, hopefully finished.

I quite like the game though. It’s got a lot of quirkiness, Jack’s intro is especially fun with all the intro text playing over him running away from various things.

The battle system is simple but functional. Typical turn-based battles, each turn causes a power up for the characters which unlocks additional abilities for use, including a summon. Rudy is the only character that can use ARMs though, which are this game’s name for firearm type weapons. My gripes are that the animations and time between actions are really slow, and the random encounters happen a little too frequently.

The soundtrack has been pretty good so far, although I think their homages are little on the nose. Some of these themes sounds like downright plagiarism. They’re still pretty good though.

I have been using a walkthrough, albeit sparingly. A lot of the puzzles have their solutions revealed to you only if you talk to specific NPCs in specific towns, and sometimes only after getting specific items. But I also like making sure that I don’t miss anything major, which is something that can happen in old RPGs like this. That said, exploring would be more fun if the random encounters were less frequent.

Guardians Of The Galaxy

I’ll be quite frank, I’m sick to death of Marvel. Between the movies and all the nonsense that they’ve done to the comics; I cannot stand anything from that brand any more. So why did I play this? Well, everyone who played it kept praising it, and it was on Game Pass. So I figured it was worth at least looking at.

Think of it as a Mass Effect light, but without as much exploration and a much more linear story. There are choices to be made, but how big of an impact these choices have I don’t know. One of the early choices you make is whether or not you keep a Space Llama on board your ship. For the most part, the thing is a nuisance and the root cause of many issues for the characters, but late into the game, its shenanigans end up getting Starlord out of some tight spots.

Gameplay wise, it’s serviceable. It’s a 3rd Person Shooter with some AI direction mechanics. I’m not the biggest fan of it, much like I wasn’t a fan of it with Mass Effect. The weapon you use gets a handful of elemental effects, but with some enemies, they’ll often have a weakness that you can’t exploit because you don’t have the element unlocked yet. When that happens, those enemies essentially become bullet sponges and make the combat encounters much more tedious than they need to be.

I mentioned how this game doesn’t have a ton of exploration. Well to add to that, whenever you do go exploring, your teammates will often berate you saying how you’re wasting time or getting lost. It’s really annoying. That said if you do explore, you’ll be rewarded with materials for craft and even get new costumes for the characters.

Going back to the dialogue, I am getting rather sick of modern games feeling the need to have the characters constantly be talking. This game is no exception. The characters never shut up, and are often talking about extended universe stories that I have zero context for as I do not have even an ounce of knowledge of the source material. This complaint is more aimed towards modern games in general though. Talk less, say more.

To end of a good note with this game, the licensed soundtrack is pretty good. Although “We Built This City” should be removed from existence.

Drakengard 3

Drakengard 3 is a strange one. The first game was very dark. A lot of killing, monsters, betrayal, and even incestual undertones. And to complete that package a utterly horrendous soundtrack that makes you think the game’s audio is broken. But 3 is far more slapstick, especially early on.

Past the opening, one of the first scenes you’ll see is Zero’s dragon (It’s technically a Wyvern) companion rolling around in mud, and then pissing like a firehose. From there it gets weirder, and the 4th wall gets knocked down a few times in the process. It’s definite tonal shift.

It does improve some things from the first game though. The soundtrack is actually good now, it’s coherent and not a mess that sounds like your disc tray is broken. And includes remixes of some of the better songs from the first Drakengard as well as some songs from Nier.

The combat is the second improvement, although it’s still awful. Or rather, the only weapons you’d actually want to use are the light and medium swords and bracers. Spears take a lot of build up to use and are mostly piercing focused, and the chakrams are only really useful for distant enemies and occasionally groups of lesser enemies.

The performance is dreadful. Most of the game is 20FPS on PS3 if that. I think they were using a much earlier build of Unreal Engine 3 which exhibited many problems early on in the 7th gen. The art style isn’t great barring some of the character designs and the higher quality models used for the cutscenes.

Anyway, the story. Well Drakengard 3 is a prequel to Drakengard 1. Zero and her sisters are intoners. Their songs bring about magic. Zero is trying to stop them for reasons that are considered to be spoilers. However, after the first level, she loses one of her eyes and her arm, and they get replaced by a flower and prosthetic respectively. The flower is interesting though. If Zero is dealt a mortal wound (Albeit in the cutscene), the flower will grow and she’ll be rebirthed from it in a rather bloody manner.

The endings are certainly strange. They’re not good endings, but they feed into Drakengard 1 pretty well. Although they still don’t answer my previous questions about who The Watchers are. Although the Red Eye disease is somewhat explained as originating from the flower in Zero’s eye. This is also the very rare flower that blooms in Nier if you’re willing to put in all the work.

Speaking of work, getting the final ending requires getting all the weapons again. Thankfully this is a much less tedious process. Most of the levels have gold chests scattered about, some hidden, some less so. More often than not they just contain money, but a good amount have weapons in them. On top of that is Accord’s Requests. This is where the real tedium is.

Most of those missions are just battle arenas with massive waves of enemies trying to give you a hard time. The actual mission goals can vary though, sometimes you have to kill all the enemies in a set time, gather resources from chests, gather resources from killing enemies, and so on. But with the combat being as crap as it is, and these sequences usually having a time limit, frustration was a very prominent emotion during my time with them.

The final request was such a pain that I gave up on it in favour of finishing the game and upgrading all the weapons. Doing the latter rewarded me with an outfit for Zero that refills the Itoner gauge instantly and lets me go berserk on the enemies.

Weirdly, the game’s notorious ending isn’t as difficult as that last request. Don’t get me wrong though, it is hard, very hard; but not impossible. It took me about a week of continuous playing to get past the final part of the game, but I felt like I was making progress that whole time. The last request however just kept killing me in the same spot each time and often with the same cheap, undodgeable attack. Hell, even with the Infinite Itoner Gauge outfit, I get died to an attack in the last part of it.

The final thoughts on it; You should play it, but don’t be surprised if you hate everything about it.

Trek To Yomi

This game might end up being my most disappointing game of the year. The visual style and atmosphere are mostly spot-on. They’re going for that Kurosawa vibe, and it hits the mark fairly well.

Unfortunately, everything else about the game is dreadful. The story is about a man who starts off the game as a boy fighting to save his village from bandits, and watches his master get killed. Following a time skip, he’s now helping defend the village as an adult, and gets led out into an ambush that doubles up as a diversion to get troops out of the town so the bandits can attack easier. Just to add to it, there’s also a love interest involved.

An interesting idea the game tries is killing the player, and then having them spend a large chunk of the game in the afterlife. However, this idea is hampered by the sheer awfulness of the game and just a very underwhelming execution.

So what’s so bad about it? Well the controls for one thing. They’re very unresponsive. Even blocking is a toss up as it to whether or not it wants to work properly, and parrying only works half the time on top of that. The timing for it is also sporadic. It presents a large variety of combos and moves, but they’re so difficult to perform consistently that the basic Square, Square, Triangle combo is what I ended up using for most of my playthrough.

It’s very repetitive on top of that, there’s some enemy variation, but the whole game is just a slog and just keeps going on and on, even though in reality it’s about 4-5 hours long. Adding to that, the difficulty is all over the place. Most of the game is a cakewalk, but occasionally there are sequences that I had to replay over and over because I was getting killed very quickly. As I got towards the end, it got worse. Near the end of the game, I switched the difficulty down from normal to easy just because I was sick of the damn thing and wanted to move on.

And on a final note, there’s a bunch of collectables in the game, and they’re worthless crap. No real rewards for getting them. Glad I played it via Game Pass instead of paying for it outright.

Lego Star Wars: The Skywalker Saga

I haven’t played a Lego Star Wars game since the release of the Complete Saga on PS3. I love those original two games to bits, so I was looking forward to this.

The first problem comes with Rey being front and centre everytime you start the game. I hate Rey, she’s a terrible character and doesn’t need to exist. And that little intro in unskippable. After that though, you get into the episode selection and you’re presented with little dioramas of all the different movies, and that’s great. So that’s a good point.

I’ve been playing this game with my friend via Steam’s Remote Play Together feature. There’s no online co-op so local multiplayer is the only option. Unfortunately, that takes the form of vertical split-screen, and absolutely no option to change it. Performance also takes a hit during this mode, although performance overall is fairly underwhelming. I’ve had multiple glitches, soft-locks, and many crashes to desktops. It’s a pretty big stain on my experience.

Just one example of soft-locking.

That’s a shame, because the environments are quite large and filled with collectables and quests. Even better is that you can fudge your way through a lot of puzzles if you’re clever enough. There’s a collectible Brick in Episode II that’s floating above a part of the city and would usually require the player to use a savagener type character and finish the tutorial for that type of character (Which you only get in Episode VI and VII, which if you’re playing from Episode I is a VERY long way into the game) and use the glider. My friend and I came up with an alternative solution of stacking a bunch of boxes on top of each other and exploiting some of the janky collision boxes on parts of the environment, and then I force lifted my friend to the brick for him to collect it.

On the note of the scavenger classes, once we did unlock their potential, my friend and I back-tracked through all the previous stuff we’d done and mopped up all the missing collectables and quests that were now fully available to us. There’s quite a lot to go back to as well, plenty of new ships and characters to get.

Overall, I am enjoying it (Still haven’t finished it, on Episode VII) but the technical issues and problems are a pain. I think I prefer the charm of the originals, but it’s not bad.

Other Stuff I Played:

Ridge Racer Type 4

I’ve wanting to play this game for a while now purely for the soundtrack. The car handling is a little rough these days, but it’s still quite fun. But Goddamn if the soundtrack isn’t one of the best.

Ridge Racer 2 (PSP)

Another Ridge Racer game I wanted to play, but this time it was from my experience with a demo from when I originally got a PSP. I never got around to buying it back then, but I can play it now. And it still plays great and is absolutely filled with content and a really jam packed soundtrack selection.

Voice Of Cards: The Forsaken Maiden

I really enjoyed the first Voice Of Cards game, but I’m really struggling to get through this one. The story isn’t gripping me at all, and going back to the starting area after each chapter hurts the pacing a bit, because I don’t feel like I’m progressing as much. Exploring the areas is still rewarding, but getting money is tedious, and battles are varied in terms of difficulty. I’m near the end of it, but I’m lacking the motivation to finish it.

Baba Is You

Fun little puzzle game. It’s more difficult than you think, and scales up very quickly. Baba is cute though.

The Lab & Aperture Desk Job

A couple of small games from Valve. The Lab is a fun little VR toy box. Bunch of small games and experiences to check out. Unfortunately, the Robot Repair Station game causes the game to crash for me, so I never got to check that out.

Desk Job is supposed to be a thing to check out the capabilities of the Steam Deck, but you can play it on PC with a controller. It’s a pretty neat thing that explores the lore of a very iconic character of the Portal games. It’s pretty funny and worth checking out.

Pistol Whip

Ever wanted to be John Wick in VR with some banging tunes? Well this is pretty close. Also pretty tiring. I do like the customizability of the weapons and playstyles. There’s a good few mutators that let you make it more or less difficult. I turned off dodging obstacles personally just so I didn’t knacker myself at as much. That said, as much as I like it, don’t pay full price for it.

Neptunia X Senran Kagura: Ninja Wars

I actually finished this, but it’s not worth a long winded paragraph. It’s disappointing, and mostly mundane and uninteresting cutscenes. The gameplay isn’t bad conceptually, but gets repetitive quite quickly, and the difficulty spikes for no discernable reason at points. As a fan of Senran Kagura, I can’t recommend this. At the same time, I can only hope buying it renews some hope that we’ll get SK7 that was teased years ago. But I’m not holding my breath at this point.

Eiyuden Chronicles: Rising

Played through a good chunk of the opening, found it to be really damn boring. I hope it gets more fun later, but the first impression is bad. I played it on Game Pass, not sure if I’d buy it.

Drainus

This was a birthday gift from a friend. It’s made by the same guys that made the Lodoss War Metroidvania. I got through the first 3 or so levels. I like it quite a bit, but I’m not great at Shmups. The lack of ability to freely shoot stuff behind you kinda sucks, and it’s something I’ve always hated about the genre. You can get a ship upgrade that fixes that, but said upgrades are tiered based on your performance. I’ll try and finish this one.

Vagrant Story

I started this on stream. It’s full of weird and very poorly explained systems, especially the additional attack timings that’s ask you to press the attack button again after attacking to perform an additional attack, but the timing for it is based on a on-screen prompt that appears for about a millisecond. The combat is some odd mix of real time and turn based, possibly even some weird ATB system under the hood. The cutscene direction is certainly punching above its weight, using a lot of close ups and advanced camera work, but because it’s a PS1 game, it all looks pixelated as fuck. I’ll get back to this once I’m through with Wild Arms.

Vermintide 2

Left 4 Dead, but Warhammer, but also Destiny-style loot and convoluted menus. I played a couple of levels of it with my friend and was turned off from it. There’s a whole lot of equipment leveling nonsense and microtransactions. I don’t want to deal with that kind of crap anymore.

Anime I Watched:

Sono Bisque Doll wa Koi wo Suru

Perverted gyaru that wants to get into cosplay meets a dude that makes traditional Japanese dolls and then has him make outfits for her. And then there’s a buttload of romantic comedy shenanigans on top. It’s hard not to like Marin, she’s great. She ends up being cute without needing to be a generic moeblob. And then outfits, level her up a bit. Great show, enjoyed it greatly.

Shenmue The Animation

Surprisingly, not a terrible adaptation. It covers the first two games pretty well, although it does skip over or change a few things for the sake of pacing and not taking too much time on things. There’s also some extra scenes that give some much needed backstory to Ryo’s character. The fight scenes are decently animated as well. They did skip some moments from Shenmue II, particularly some events at the end of the game, but it can’t be helped due to time constraints.

Birdy Wing: Golf Girls’ Story

I was expecting a golf anime, instead I got a battle shounen crossed with a underground mafia ring, crazy characters, and a good amount of sexual tension. It’s getting a second season early next year and I’m wondering where the Hell it’s going to end up.

Spy X Family – Part 1

Much like everyone else, I watched and enjoyed this show. Drunk Yor is a miracle of the universe, and the dynamics of all the characters is fun to watch. I do think it focuses too much on Anya though, you don’t get to see Yor do her assassination jobs at all past the first episode. Loid’s stuff is fun, but only gets a few select episodes. I hope the second season addresses those issues.

___

Alright, that’s it. This took a little longer to finish writing due to various things. But it’s also one of the longest posts I’ve ever done as well. I’m looking to rename this style of blog post as well. “The Den” doesn’t really have a good ring to it any more. I’ll rethink it.

Anyway, the next time you see a post like this will be in the new year with my GOTY views and such. See you then.

ADMAN