top of page
clouds.png
clouds.png
cat in the sky2.png
  • Writer: Toby the Cat
    Toby the Cat
  • May 19, 2024

Time: 19:02


Getting ever closer to finishing up all of the game features for this project. Todays job is sorting out the village shop, a nice little place for the player to spend all those coins that have been falling into the players pockets. Sadly this mean no more free handouts when it comes to ammo for the player! However on the bright side find enough of those coins and you'll be able to upgrade your health all the way up from one to five bars.

Got a very basic version of the shop up and running pretty quickly but wanted to make it easier to expand if extra weapons were introduced or if I wanted to change the cost or how many items were given etc. Final thing I want to do is have the ability to upgrade the ammo limit. The pieces are all there I just need to throw together the last little bits of code. Not sure the game will be long enough for all these extras though but it's a good learning experience.

As for the game itself it's going to have a very simple structure of item collecting, each new quest completed will unlock a new item which will allow the player to complete another quest and eventually find the final item. There will be a few hidden spots dotted about with some extra money in it for getting upgrades. I would like to have some boss fights chucked in for variety and as an extra programming challenge, see how far I can I can take the state machine system.

Some of the graphics still need a little more looking at, I need to build an underground cave tile set. Not on this current project as it stands but would like to look into some advanced lighting tricks in the future and other more advanced things as I've only just touched on what it possible.

The final parts of this project are getting a title screen, a save / load system and some kind of intro and ending.



As for longer term plans I plan to revisit another top-down style engine, this one is was more arcade shooter but I would love to combine ideas from the two styles. There's still a third similar tutorial series I want to go over. I don't intend to follow these exactly one for one and will be bringing in all the bits I have learned to give it a bit of my own flair.



 
  • Writer: Toby the Cat
    Toby the Cat
  • May 18, 2024

Time: 16:36


Not going to lie, lost a bit of motivation recently on where I wanted to take things and what I wanted to do next but I'm back at it. The first issue I had was the issue of thrown items... Yes I want a thrown item to hit a solid wall, and yes I want the item to pass through empty space.. The issue however was what happens when the thrown item interacts with a pass over space, such as a hole? An arrow would fly right over this without stopping, which is fine, a thrown item on the other hand can land in this space and become stuck on top of water or a hole. The first solution was just to have water act as a solid barrier that thrown items would collide with, this causes an issue with bombs exploding when they hit the water line since it shares the same behaviour. The solution I went with in the end was to have the items check where they were upon landing, if they were out of bounds they now respawn back to where they started. I like this and although it took a bit of sorting I think works best. I had to create a new type of area though for places the player might not be able to reach, such as behind transition areas.


The main change though is I've now turned off the player starting with all items unlocked and having allot of health. Once I get the shop up and working wither the player will be able to rebuy extra health blocks or maybe I'll have them as hidden items... more decisions. For the time being I've moved the quest items back into the town area. Returning the shades will unlock the BOW weapon... but wait whats this? Talk to Froggie again and he'll mention he might have something else to ask of the hero. Leave the building and go back and he now has a SECOND quest, he's lost his little pot. Go find it for him and you'll be rewarded with BOMBS, now we're talking. Further conversations with him will give you 15 ammo for your BOMB and BOW weapon for the time being.




 
  • Writer: Toby the Cat
    Toby the Cat
  • May 12, 2024

Time: 19:47


Added, what I think is at least, a rather cool water wave effect to the edges of the land. Think it give the "sea" a bit more realism. Been playing with layers a bit more and trying to give the world that little bit more 2.5D effect. Started rework on the outside town area, made some changes to the enemy spawner so that once it has spawned so many enemies it will become inactive and the "magic crystal" that can be seen below the grate goes out. Thinking about adding in some kind of teleport effect when enemies are spawned this way. Still need to make a little tweak to the way spawned enemies are counted so I can mix better pre placed and random spawned enemies on the same level. Not going to lie been a little slow going recently, been putting allot of thought into some other stuff recently.




 
bottom of page