On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Absolute unique idea. Great and funny visual. With a simple AI logic it would be better, but I really enjoyed it. I'm curious about the card deck shuffle, it's random or use some math behind it, how did you balance?

... and I can still attack! No more questions, I'm in.

(2 edits)

Yeah, unfortunately AI was out of scope. It is a simple method that shuffles the body parts (I don't know why I made it public :P):

public IEnumerable<BodyPart> Shuffle()
    {
        var rnd = new System.Random();
        var newList = new List<BodyPart>(BodyParts.bodyParts);
        return newList.OrderBy(x => rnd.Next());
   }

The balancing is mostly done by giving everyone the same deck. We tried to balance the heal, attack and durability but didn't spend too much time on it. It is probably very unbalanced. 

We didn't thought about Monty Python! He should now say "it is merely a flesh wound".  What a missed opportunity :(