Critters, Conjure, Cannonade! by PureGarlic 2024-10-10T12:16:54Z
This is probably the most addictive game here. Good work!
Foon → Ludum Dare Explorer → Users → mymdz
| Year | LD | Theme | Game | Division | Rank | Ov | Fu | In | Th | Gr | Hu | Mo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2024 | 56 | Tiny Creatures | π₯ | TinyWar | jam | 527 | 3.57 | 3.25 | 3.16 | 3.72 | 4.06 | 3.70 | 3.63 |
This is probably the most addictive game here. Good work!
Poor wolf, but it's the wolf's problem π In our game there are also fleas that bring suffering, but not to the wolf but to the dogs. Paper art is also very cute
It has a good atmosphere and sound. But the control is hard, as it requires accuracy from the player
Very interesting mechanics, ideas and art. I'd like to play more, but the game freezes in this state every time, immediately once blue guys meet the red ones, and only page reloading helps (Chrome, macOS). Both on Ludum and itch.io
Π‘Π½ΠΈΠΌΠΎΠΊ ΡΠΊΡΠ°Π½Π° 2024-10-12 Π² 16.01.21.png
I really like how it looks, but didn't like mechanics as my index finger was terribly tired and it was cramping π₯²
That's something new, a cross-platform game with super-optimised performance π
Visual stuff looks great!
the first time it was annoying to get stuck in a drawer Π‘Π½ΠΈΠΌΠΎΠΊ ΡΠΊΡΠ°Π½Π° 2024-10-09 Π² 16.49.05.png
And disrespect to your team for spamming comments like "I really liked this game! It's awesome!" without playing the game, speculating on karma. This is absolutely obvious from your statistics. Π‘Π½ΠΈΠΌΠΎΠΊ ΡΠΊΡΠ°Π½Π° 2024-10-09 Π² 17.01.03.png
Love ending in paradise! And music choice for the hell
Very nice art!
But it's not obvious that the player should press twice W or space to jump higher. Also, returning to the menu is impossible without reloading the page, that's a little frustrating.
Looks cute :)
The game is incorrectly scaled in the browser window. In GameMaker it can be easily fixed by adding a persistent object to the home room, like obj_display_manager. Here is my compilation of what can be found on the internet.
obj_display_manager / Create event: ``` base_width = room_width; base_height = room_height; width = base_width; height = base_height;
current_scale = 1; ```
obj_display_manager / Step event: ``` var _new_width = browser_width; var _new_height = browser_height;
if (_new_width != width || _new_height != height) { width = _new_width; height = _new_height; var _aspect = (base_width / base_height);
if ((width / _aspect) > height) { window_set_size((height *_aspect), height); } else { window_set_size(width, (width / _aspect)); } current_scale = window_get_width() / base_width; display_set_gui_maximize(current_scale, current_scale, 0, 0); window_center(); } ```