Wednesday, November 1, 2023

Abilities Interface and Rogue - Shadows

I've been finishing up all the tables in the database for Abilities, and the supplementary live tables to store what character has what abilities, and as I'm about to go diving into finishing up all the app code to handle all the things that I think the game will need to do, I wanted to make my life easier by finishing up the editor interface for Abilities. So I created all the various types of inputs to let me enter in the various abilities with all their nuances, set up the code to save them to the DB, manipulate them as needed and connected them to skills that can enable them.

When I start putting together the code that loads it all up in the app, I realised that I'd botched it. So, going back to the start, and making an adjustment in all the code I'd written so that it had an extra (needed) field that I'd not thought of, and I was finally up and running.

I've also been adding in code that handles proper skill requirements, so you need to develop some skills in particular order, or at least open them up. For example, in the example shown from the Rogue Shadows Tree, the opening skill here is Backstab, but once that is active, you can spend points into Unseen Hand or Melt Away and so on.

You can also see that skills show an A, P or U - which shows what type of skill they are. Active skills are skills that need to be used, whether in combat or outside to provide a benefit. Passive skills are simply always on and will generally give a continuous buff of sorts, Lastly, Unlock skills merely unlock an ability type, and you will need to learn abilities that use this slot. A good example is these are in the Mage trees. Unlocking a type of spell class, for example "Elemental Fire" spells won't grant you the ability to cast anything on it's own, but if you find, buy or quest for spells in that category, you'll be able to cast them - so a single skill can unlock MANY different abilities.

The code for these is taking some time to write, and I've been quite busy of late,m so my normal programming hours are being cut into as it is, so I'll probably be able to do some updates here speaking to the various classes and skill trees more!

No comments:

Post a Comment

Character and Item Stats

It feels like I've renamed a thousand thousand properties in classes, updated a myriad of methods across the database, the editor and th...