FoonLudum Dare ExplorerLD43 → The Offerings

The Offerings

By blackshadow1games

View on ldjam.com

CategoryRankScoreCount
Overall3.0011
Fun2.9411
Innovation2.4411
Theme3.1111
Graphics2.0011
Audio2.5511
Humor3.3311
Mood2.7211

Comments

mortifix 2018-12-04 03:25

I enjoyed that alot more than I should have. 11/10

blackshadow1games 2018-12-04 22:22

Thank You! I'll make sure to play your game. @mortifix

adventureislands 2018-12-05 00:55

Solid game, the controls were fine and I was surprised how easy it was to manage the animal usage. I played it for a while but I'm not sure if the game was getting any harder. it would be better if more and stronger enemies kept spawning the further you got, as I found it pretty easy to keep the sacrifice timer up while barely taking damage. You should also have some kind of score system for slaughtering the goblins.

The story about going back in time to give goblins hoverboards was funny.

blackshadow1games 2018-12-05 01:04

@adventureislands Thanks for the help and I definitely should have kept making it harder. I'm not that good at balancing stuff like that.

frostbyte4k 2018-12-05 02:13

Your pixel art is fuzzy I also had this problem when I was first starting out to fix it left click the art in the project menu and set filter mode to point filter. And before you spawn an enemy try:

RaycastHit2D hit;

if(Physics2D.SphereCast(randomPos, playerSize/2, Vector2.zero, out hit)){ if(hit.collider.name == "Player"){ //pick a new random position and try again } }

with some tweaking of this code this will make it to where the enemy won't spawn on the player and will make it a bit more fair. and if want to make the game slowly get harder just have the enemies come in waves and add a few more enemies with each new wave. But besides that the game is great it was fun and was explained well in the tutorial. Great gob!

Since you offered here's the link to my game if you'd like to check it out: https://ldjam.com/events/ludum-dare/43/blood-for-blood

hitchh1k3r 2018-12-28 03:41

:thumbsup: The intro story was funny, and the graphics definitely supported the silly nature of the game.

:point_right: This game was rather hard to play on a laptop track pad, I imagine it would be much easier to click my animals if I had a mouse. I could not figure out how to eat animals to hear (the help suggested I could do that). I found the hit-boxes on the enemies to be a bit big, they tended to kill me while I was trying to skirt around them.

:star: Overall good job, and thank you for making this.