Project Summon by Krash01
OVERVIEW Project Summon places you underground, you must destroy the caves that the monsters emerge from. You do this by spawning goblins to take the fight to them, destroying their spawners stopping them.
NOTE: I do plan on turning this into a full game. Please leave any comments about experience, good or bad, as it will help will help greatly. Thank you.
CONTROLS Movement-WASD Jump-Space Spells-1,2,3 Raise Hand-Right Click Draw-Left Click
GUIDE Your goal is to destroy the enemy spawners. You do this by summoning both Miner Goblins and Warrior Goblins.
The Miner Goblin finds and extracts mana from the rocks around the mana container.
The warrior Goblin is your main line of defence against the monsters, you summon them to both defend against the monsters and attack the spawners.
You win by destroying the caves. You lose when the monsters destroy your mana container.
SPELLS 1-Miner Goblin: These goblins mine the mana crystals and provide you with energy to spawn other goblins. 2-Warrior Goblin: These are your main fighter goblins, you use them to take down the enemy forces and destroy their spawner. 3-Rally: This spell is used to position your warrior units to a place of your choosing.
| Link to source's Github Page | https://github.com/fossyman/Project-Summon-Source-Code-Game-Jam-Version- |
| Original URL | https://ldjam.com/events/ludum-dare/55/project-summon |
Ratings
| Given | 8🗳️ | 5🗨️ |
Drawing a spell is a fun mechanic, but I have a couple of issues with your implementation:
I find it too strict, which gets very annoying when you seemingly need tens of warriors to defeat a single monster.
I should be able to draw it anywhere on the screen rather than just the small image on the corner.
Given that you are drawing the spell, maybe we don't need a spell selector - we could just draw the shape.
I couldn't figure out what the green spell does.
The game crashed on me after some time, so I couldn't reach the end.
From the little taste I had, there's a good game to be had. Good luck on your future work!
That spell was created as a Rally spell, it lets you position your created warriors to a point of your choosing.
Thank you both for the bug/crash reports as well.
I did find though that the actual drawing of the spells was a bit unforgiving. It often failed even when it looked as if I'd done it correctly, and I didn't find the gameplay particularly intuitive (even after reading the tutorial in the description).
I also found that there was never really much incentive; there was never really a sense of panic (I know it's just a demo), but once you defeated the first few enemies, the game felt kind of empty. Of course you'd have difficulty ramping and a reason to progress, but there was no sense of urgency - no time limit or anything.
Definitely a fun concept though - good luck with the game!
The spell drawing system is rather simplistic in its backend setup, so a lot of issues still stem from it. This can and will also be improved once I get back on to the project.
Thank you for your feedback :slight_smile:.
As others have said, the drawing is a bit unforgiving, but I really, really like that idea.
I like the music, but the end of it makes the loop a bit jarring.
But it has the following problems:
1. The game seemed to only have round1.
2. The mana UI had bug and it was frozen.
3. The third spell was a bit unclear -- due to the color I thought it was a pastor, and due to the icon I thought it was a stronger soldier, but it was only a pointer. Maybe you can set a flag planting animation to hint.
4. The summoning interaction was interesting at first but later it was getting tiresome. Maybe you can summon 2-3 Goblins once.
5. The camera was a bit difficult to move(small problem).
I hope you do better next time:)
You picked the perfect symbol for the #1, so fluid, feels great to execute. To sfx are lovely, the little characters adorable, and the resource gathering is a surprisingly complex model.
Unfortunately, nothing happened after I beat round 1 - I was really wanting to play more!
Some tips:
* I think the player should have a small cadre of spells to assist in defending (a melee blast, a fireball, whatever). Of course, you wouldn't have had time to do this in a jam - but for a later release.
* Of course, I'm sure you thought of having turret summons as well
* Would be cool to have utility spells, perhaps for creating things like lamp-posts, fences, roads for you minions, etc
* I think the 2 unconnected dots on the green spell were confusing - I prefer what you were going with as far as single, continuous sweeping shapes for the spells
Sorry, much of those suggestions may be obvious, I'm just excited to see where you go with this!
BTW Spell-drawing is also something I had in my godot game! May I ask, how did you do yours? Mine ended up requiring multithreading, and per-pixel comparison on the CPU (not the best way of doing it - I thought of a dozen different approaches, but had to go with what I could code up fastest). How does yours work under the hood?
Regarding my spell system, I created nodes that I placed around the path of the spell. I then used an Area node that I placed on the player's finger to detect when overlapping, if an overlap occurs, it increases an integer value to detect how many parts of the spell has been touched and its only if that number is above a threshold that the effect happens.
Simple effect with downsides, like not having to actually follow the spell pattern, but worked for the jam.
Definitely needs instructions in game, I had to come back and read this page a few times before I figured out what to do.
Interesting art style for the creatures, the black legs are hard to see because it is so dark though.