Muster my Monsters now available on the App Store!

Finally! Muster my Monsters is now available on the App Store for FREE as an Universal app!

MmM-slide_800x400

New Sokoban

Have a blast fighting in the arena of this hilarious 4-player party game. To deal with this bunch of monsters, the key is to have rapid reflexes, good intuition and master the art of bluffing. And mocking at your rivals! Muster my Monsters basic rules are similar to Rock-Paper-Scissors, but in Muster my Monsters we have ruder actions: Attack beats Mock, Mock beats Dodge and Dodge beats Attack. And this is called “balance”.

Features

  • A modern twist on the classic rock-paper-scissors game featuring funny monsters, crazy attacks and lots of different ways of mocking at your rivals!
  • Solo to up to 4 players (up to 4 players on iPad and up to 2 players on iPhone & iPod Touch)
  • Play versus the AI to improve your skills
  • Two different game modes (Normal and WIFI) that require completely different play styles and skills
  • Win battles to unlock new monsters. Every monster has its own personality!
  • Power-ups
  • High quality visuals with detailed characters and smooth animations
  • Simple controls
  • A good time with friends and family

Enjoy it! “:^]

Guest post: Making Objecty an app for 2D game developers: The short story version

Hey there,

So Toni has let me write a guest blog post so I thought I would share with you a little of my experience over the last year and a half. I will also post this on my own blog for future reference!

My name is Jon and I run a small indie game company called SKN3. I do the majority of the work at SKN3 with assistance from a few others for certain tasks. We are a new company running just over a year and we are excited to show you what we have been doing.

I have been creating games since I can remember, whether it be a text adventure on a vic20 or a snake clone written on a Psion PDA (remember them?). I love making games; it gives you such freedom to create an idea that can eventually be enjoyed over and over. However there is one part of making games that I find incredibly tedious; getting your content into them!

Objecty

Continue reading

Muster my Monsters: Procedural Animations Model

One of the most important aspects of Muster my Monsters is the animation system. Muster my Monsters is a semi-interactive game in the sense that you do not control directly the characters in the game but chose the actions they will execute. In some sense, it is like choosing the cinematic sequences that will be played in a while.

Muster my Monsters is a social/party game featuring terribly horrible and ridiculously weird fighting-monsters.

So, the quality of those cinematic sequences is critical. They need to be very visually appealing and, most important, they need to communicate the state of the game precisely to the player.

Muster my Monsters’ basic rules are similar to the rock-paper-scissors game, but in MmM we have ruder actions: Attack wins Mock, Mock wins Dodge and Dodge wins Attack. And this is called “balance”.

Chuck, Muster my Monsters' character

Continue reading

Guest post: Sonic like game demo made in Moscrif SDK

Moscrif logoThis simple game was made to demonstrate how to save time when developing a game for several different mobile platforms like iOS, Android or Bada. Because the number of mobile platforms is raising and the developers want to reach the largest possible audience, developing the game several times for every single platform separately is not an option anymore.

sonic game with Moscrif SDK

Continue reading

Custom cocos2d Action for rotating a sprite around an arbitrary point

Cocos2d is and excellent framework. It has saved me tons of time during my game projects. It offers almost everything I need. However, sometimes there are some features that are not supported by cocos2d.

This is the case of rotating a sprite around an arbitrary point. Rotation in cocos2d is based on the concept of anchor point. This is ok on the 99% of situations, probably. However, during the development of Muster my Monsters I need to perform rotations around arbitrary points. The idea is to have an sprite “orbiting” around another sprite or some defined point in the space.

cocos2d rotation around arbitrary point

Continue reading

Sprite sheets. Managing them easily on Cocos2d

In today’s post I would like to share with you a handy piece of code to manage sprite sheets. I have called it TSSpriteSheetManager.

TSSpriteSheetManager is a singleton cocos2d class that allows for easily manage sprite sheets. You just add sprite sheets to the manager and then request a sprite or frame automatically batched for you. The manager will search for the sprite in all the added sprite sheets and if it is not in any of them, it will search for individual files on your project.

You have the entire source code for this project at the end of this article.

Sprite sheet Muster my Monsters

Continue reading