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

DarkophobiaView game page

A shadow has darkophobia
Submitted by Ibrahim208 — 2 days, 13 hours before the deadline
Add to collection

Play Rickroll

Darkophobia's itch.io page

Results

CriteriaRankScore*Raw Score
Enjoyment#982.2502.250
Use of the Limitation#982.5002.500
Concept#1042.6252.625
Overall#1132.3132.313
Presentation#1271.8751.875

Ranked from 8 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Team members
Ibrahim208

Software used
Scratch Game Engine, Turbowarp Packager

Use of the limitation
You are a shadow... Who is afraid of the Dark (ie. Shadow)

Cookies eaten
0

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

Very sneaky pun with the original song name there.

Submitted(+1)

This is a nice short game to distract from some of the behemoths in the jam. It's not needlessly complicated, but it's uber simple and the music is nice to listen to while dodging the darkness. Good game!

Developer

Thanks for your feedback

(+1)

Nice little game that could maybe be a minigame inside another bigger game. Make a better character and ramp up the difficulty as the score goes up. Besides that the games works perfectly as intended so nice work.

Developer

Thanks for the feedback!

(+1)

It gets boring after a while, mostly because the difficulty always stays the same. The music is pretty good. I find it pretty fun that before getting to the light the only visible part of little shadow are his eyes. Not bad but could be better.

Developer

Thanks for the feedback!

Submitted(+1)

Cute and clever. Smooth controls. I like the personified shadow main character.

It took me a few tries to figure out what I was supposed to do (in the beginning, I just kept dying!). But I got the hang of it soon.

A few small suggestions:

1. Sound. This seems minor but it really does help immersion, and it doesn't take much.

2. A button to restart the game after dying, without having to refresh the page.

3. An onscreen indicator of how close the shadow is to "losing."

4. A scaling difficulty scale, so that it starts easy-ish, but later rounds are harder. (If you were already doing this, apologies; it was too subtle and I missed it.)

Developer(+1)

Thanks for the feedback. Love your suggestions. will try to implement them. also, i didn't add any difficulty scale  as i dont know how to make one. 

Submitted

Here is a simple way to scale the difficulty. Of course, there are many others, but I'm just sharing a simple idea to spark your interest.

You have a variable you use to control how much time the player has until they reach the light, right? Let's call that variable X.

Well, you can scale the difficulty from one round to the next by making sure the time slightly decreases each round. The first round, it can be X... the second round, X * 0.99... the third round, X * 0.98... the fourth round, X * 0.97... in other words, each round the time limit will be equal to X * (100 - Y), where Y is the number of the current round. This is of course a very subtle slope, which would take a long time for the player to notice; I'm just giving this as an example of how you can build a scale.

Happy building!

Developer (1 edit) (+1)

Thanks for sharing this idea. I have now built a Restart button, and an indicator to show how much time the player has left before 'losing'

Will add this feature