Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

What a lovely, mysterious story - with a heart-warming ending. You've gone for a different angle on the Christmas theme and it works very well;  having the pagan festival as the focus allows you to avoid most of the standard Christmas tropes while still conjuring up an appropriately wintry and magical feel. Puzzle-wise the difficulty level is quite easy, which feels right for this jam, and the code-breaking element was a pleasant diversion (nostalgic of the kind of thing that used to be included in every Christmas annual). Having the archaeologist character on-hand to help with the puzzles is an effective way of integrating assistance into the game without reverting to a blunt 'help' command,  and provides a satisfying denouement at the end. The low-res graphics (reminiscent of 'Over Here' from the last jam) are perfect for this, I think.

There aren't many bugs in it: I spotted a miscapitalisation and a missing word or two in your prose, and 'put x on altar' produced the standard 'the altar is not a container' response that you might want to override. Also, I'd suggest some sort of acknowledgement when you cross the ice.  I confess that I found the means to cross it and did so without even realising that I had done it - it took me a while to realise that the location I was then in was on the island.

Overall this is a great effort and I really enjoyed playing it.

Thanks for the detailed feedback and the kind words!

My aim was to make a not too difficult, child-friendly game with a Christmassy feeling even if it’s not strictly-speaking Christmas-themed. So I guess I succeeded? :)

Regarding putting things on the altar, containers/supporters are not well supported (pun non intended!) in Adventuron (and not well documented), as are complex commands, so I think I’ll have to do with the issue. I added a note in the help to say that you just have to drop the thing if you want to put it on something else. And the game specifies at the beginning that you have to use 2-word commands anyway. I hope it’ll be enough.

I also added a message when you go to the island for the first time, as you suggested.

Regarding the miscapitalisation and the missing words, since you haven’t told where they are, I didn’t correct them.

Anyway, thanks again!

(1 edit)

You definitely succeeded - my nearly 8-year old loved it.

With the altar: containers are difficult, but you could anticipate someone not noticing the 2-word restriction and deal with it in on_command with something like:

 : match "put _"  {
   : if (is_carried (s1())) {
      : if (noun2_is "altar"&&is_at "stone_circle") {
         : print {("You put the "+s1()+" on the altar.")} ;
        : drop quiet = "true" ;
      }
      : else {
         : print "The altar is not here." ;
      }
}
: else {
   : print "You are not carrying it.";
}
}

(or do the same as above but print "You only need two words in this game - just drop it" or something as the response, if you want to be strict about that).

With the typos - sorry, should have noted them as I went along. Another quick run through reveals:

(at stone circle): "in the centre of the circle, ['stands' or 'you can see'] what seems to be an altar"

and there is definitely an errant capital that I spotted somewhere but can't find it now... If I see it again, I'll let you know.

Thanks a lot for taking the time to write this code.

Unfortunately, I was a bit away from Adventuron and the jam (I had other priorities), so I didn’t have time to add it to the game. I’ll keep it under my belt for next time, whenever there is one!