Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

Strike Them DownView game page

Spin to charge and throw lighting at your enemies
Submitted by PilotTK — 1 day, 8 hours before the deadline
Rated by 9 people so far
Add to collection

Play game

Strike Them Down's itch.io page

Rate this game

In order to rate this submission you must be logged into itch.io and have submitted your own entry. Anyone with an account can leave a comment.

How does your game represent "Power"?
You spin to increase the charge of your electric power and the higher charge the more powerful the blast.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

Really liked this little lightning god simulator

Submitted

I had fun! I love the little guys walking around, it made me feel like an evil god striking them down hehe

Submitted

This is a pretty interesting system you've built here! I can't say I've seen a game do anything too similar! It reminded me a bit of pokemon ranger which was fun, I think the game especially got moving once enemies with guns showed up. Good job!

Submitted

What a creative mechanic. I haven't seen anything like it before. I'm not sure if I was good at implementing the mechanic, but it was fun trying to figure it out. I loved the unexpected chaos of the enemies suddenly appearing everywhere. I also appreciated the chiptune music and how it frequently key changed, which I felt added to the chaos in a good way. Nice work!

Submitted

A pretty fun little game! I really enjoyed dodging the bullets while also trying to charge up the laser. Pretty hectic but fun. The laser was awesome xD

Submitted

Really creative base mechanic, something I haven't seen in a game before. Timing the hits after a big spin was satisfying and the laser is super cool. Always down for a good smiting. Curious how you implemented the charging in GDScript, seems like a problem that could have a lot of creative solutions.

Developer

Thanks for playing! Glad you liked it!

I am sure how I did it is not the best way, but it was the only way I thought of doing it.
Here is a quick explanation for how I went about doing it:

When you Hit left click it starts collecting the location of the mouse and getting the average value. This average value is essentially the middle of the circle, as the average of points on the edge of a circle should be the middle of the circle. This list of locations is reset if the player:
a) Lets go of the mouse
b) Goes in the opposite direction
c) A full circle is created
It also keeps track of the direction from the first value(Location of mouse when you hit left click) to the average value calculated earlier. 
Then it checks 4 things
a) Their have been more then 10 locations tracked
b) The current angle of the mouse to the average is near the angle from the first position to the average.
c) Are their 3 points in the circle that differ from the first position by at least 90 degrees

d) Are these 3 points far enough away from the center.

If all of these things are true then it counts it as a circle having been completed and the list is reset.

This is frankly a finicky system but for a game jam it tracked circles well enough.

Submitted

Very unique and fun concept, I like games where you are the bad guy. :D

Spinning the mouse got tiring on my wrist quite quickly tough, I think the game would work best on touch-screen

Submitted

pretty cool concept! very cool electric mechanics, only wish the first level was shorter so the action could start earlier

Developer

Glad you liked the idea. I think your right, maybe halve the enemies on the first level...or remove that level when it is not the tutorial.

Submitted

I like the controls and the presentation a lot, struggled to actually hit much but that  could be a skill issue.

Developer

Thank you! I don't think its a skill issue, I think the system could use some work. If I had more time, or maybe I will add it after the jam I would prob add some system to 'cheat' aiming a bit, where if you are close, you instead just hit.

Submitted

I wish there was more feedback on the charging movement, feel like I'm not quite getting it. Love the little animations of the people and enemies though, neat idea!

Developer(+1)

Thanks for playing! Yeah its kinda a finicky system, I thought that process was gonna be a lot easier! Essentially. to charge you have to hold left click and spin somewhat tightly and quickly then when you are charged enough you release while moving in the direction you want to throw your lightning.