Slow Rush Studios logo,
    depicting an apprehensive-looking snail rushing forward

Slow Rush Studios

◂  Three Shears
News index
Ability Subroutines  ▸

Spellcasting 3.0: Perks

Contents

I wasn't happy with the current spellcasting system, so I tried something totally different.

You stack perks and the combination of perks determines what spell gets cast.

It's just a prototype, but you can do some neat things with it already.

Spellcasting Problems

My original game pitch called for a "sweet magic system" to use for attacks, and I've had 2 cracks at that:

But I am still not happy with that v2, because:

  1. It's too slow to swap spells in the heat of combat. 3
  2. Most people summon one spell and stick with it - which leads to boring gameplay.
  3. There's no "progression": you can use all the elements from the start - so there's little motivation to keep playing. 4

Spellcasting 3.0

My mind kept wandering back to the game feel from just before I implemented spellcasting v2:

Footage from nine months ago: you just click to shoot a fireball.

That's the fast pace I'm aiming for! Why did I scrap that and then spend 9 months doing other stuff!?

Well, because click to shoot seemed repetitive and uninteresting. But maybe spellcasting could be fast-paced like that, without those negatives?

Inspired by my favourite number-go-up perk-stacker games,5 I added a "Perk system": a standard mechanic in rogue-like games6 where you collect upgrades that change your character's innate abilities or attacks in some way.

And then I made a new click-to-shoot spell that was affected by those perks:

Holding left click to shoot projectiles affected by the Wild Shot (more damage but less accuracy), Destroy Terrain, and Knockback perks.

That felt like great fun!

But just running around spamming one attack is gonna get old, so I wanted to add a right click spell too.

Only... having each perk apply to both left and right click would be very same-y, so I decided to let acquired perks be assigned to different buttons.

Left click shoots as before, but now right click triggers a level 2 Explosion perk.

Getting blasted around by your own explosions is a fun way to move around, but maybe it'd be better if your explosion could be triggered by your projectile hitting an enemy.

That sounded dangerously like Noita's insanely baroque spell-casting mechanic, which I am a little wary of. But I figured: why not, let's try it and see what happens:

Noita-esque ability perk assignments: shooting a normal bullet that, when it hits something, will shoot other bullets (themselves infused with Big Shot).
(The Level 5 On Hit perk causes the first Bullet to fire 5 other Bullets infused with Big Shot, some of which immediately hit terrain.)

This isn't really like Noita: perks increase their effects as they are leveled up and you can assign a perk to an ability as many times as you want.

Aside: in fact, the implementation of how perks modify each other is not like Noita's approach at all; instead I designed a new system inspired by stack-oriented programming languages and my existing element-mixing spellcasting. I might write more about it later, but the gist of it is that some Perks do things (like shoot a bullet) and other Perks just modify a doing-things Perk placed to their left.

And, inspired by the earlier explosion-powered locomotion, I realized that I could go further and have abilities triggered by any event!

Three more abilities: one that heals on a timer, one that automatically shoots a retaliatory exploding bullet when damage is taken, and one that triggers a large explosion on death.

Now that is interesting!

Players could maybe collect perks as they progress in the game, and maybe also collect different abilities, then use those perks in each of those abilities.

Open Questions

This is only just over a week of prototyping,7 so I still need to figure a lot of things out:

And, most importantly, how do I stop your mate Tim from spending forever optimizing his abilities when you just want to play this damn game with him?

Still, I'm excited!

Playable web build‎

Here you can use the (placeholder) loadout-editor window to customize your abilities:

Here's how you use the abilities:

  1. Click the little arrow on the top left of the loadout window to minimize it and actually see your character.
  2. Shoot Ability 0 Gatling Gun by holding left click (it has a small windup period).
  3. Shoot Ability 1 Revolver by right clicking (it has a small cooldown).
  4. Abilities 2, 3 and 4 are triggered automatically: every 3 seconds (Autotimer), when you get damaged (On Damage), and when you die (On Death).
Press F1 for help, including to see keyboard/mouse controls. Mobile devices probably won't work! By playing you agree to our Privacy Policy and Terms of Service.

Known issues:

Obviously it'd also be nice to have more than like 10 perks to play with.


6

Sure, this isn't a rogue-like game today, but maybe it will end up one? Who knows.

(Though I think making it a rogue-lite is more plausible, where some form of progression persists even when you die, since indirect friendly fire will always be a thing).

1

It was (unintentionally) a lot like how DOTA2's Invoker casts spells, except instead of choosing two elements from three elements, I had planned for choosing from five or six elements.

(My original inspiration was actually the Gauntlet Wizard's spellcasting system, but more people know DOTA.)

2

It is (intentionally) a lot like how Magicka's spellcasting works, though I never got around to implementing casting spells on yourself.

3

Unlike the games that inspired these spell systems, in this game (when playing with mouse and keyboard) you move with your left hand and also select spells with your left hand - so it's hard to move while casting a spell.

I could slow enemies down, but I want this to be a fast-paced game - not a tactical shooter experience like Noita.

4

I considered slowly drip feeding content, like limiting to only 2 elements at the start (boring), granting new spell elements over time (too limiting - part of the fun is in reactions between spell elements), or adding a bunch of new elements (too much work - new elements cause a combinatorial explosion because they need an interesting effect in each spell) - but none of those options seemed great.

5

Risk of Rain 2 and Crab Champions are my personal favourites. I wish there was an agreed-upon sub-genre to refer to these? They're sort of "action-roguelikes" but gamers interpret that as "Vampire Survivors clone", so I'm just calling them "perk stackers".

7

You might think it should have been 2 full weeks of prototyping based on last week's words, but unfortunately I spent a good chunk of this week recovering from a certain daycare's latest bio-experiment.

◂  Three Shears
News index
Ability Subroutines  ▸