Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Wendel Scardua

62
Posts
1
Topics
152
Followers
99
Following
A member registered Dec 13, 2016 · View creator page →

Creator of

Recent community posts

gracias :)

Vocês poderiam corrigir as tags? O jogo tá marcado como "NES ROM" mas não é uma ROM de NES de verdade. Se quiserem podem usar a tag "NES" que abriga tanto jogos de verdade quanto os jogos que só são inspirados na mesma estética.

¿Puedes arreglar las etiquetas de tu juego? Lo has etiquetado como "nes-rom", pero no es un juego de NES. Puedes usar la etiqueta "nes" si solo quieres decir que estás inspirado en NES.

You mention it freezing on the browser, but for me (using Firefox on Windows) it doesn't freeze: instead the game ends instantly when I walk my first step, saying I got all the 8 lizards 🤔

Thanks for your comment; and yes, we do have some plans for the unicorn that we couldn't do during the compo, which touch on some points you've mentioned:

  • a score multiplier tied to the energy, which becomes x0 when it's empty; this would make hunting energy more worthy
  • allow the push to work on a block behind a wall (the flavor being that the vibration from the impact on the wall is pushing the block on the other side), which makes it more viable on some mazes..
  • ... and also apply block gravity to the pushed block (and blocks above it), so it becomes a bit more useful (we've noticed that sometimes the pushed block was more of a hindrance than a help)

About the rate of the spawning blocks, it's tied to the game "level" (which currently increases every ~50 points); but we do need to balance this and many other constants (because, for example, once we have a multiplier the blocks may start spawning too fast too soon).

To add to M-Tee's comment, we do want to add at least one final stage to story mode (which is locked in the compo version) where the titular Miroh Jr. appears as a rival, so there's that :)

I like the idea and some details like the tumbleweed that can be either harmful or helpful... But I agree with another comment below, I really wish there was any sort of warning of where a new block will drop, otherwise it feels kinda unfair to lose the game in a way that can't be prevented.

RIP Rani (I wanted to say I liked that, for such a short demo, you even squeezed in a different dialogue path for when using an item at a specific moment)

No updates yet. On my free time I'm still working on another full game with two other people (*) but this is one of my jam games that I do want to revisit at some point - and comments like yours make me more likely to do it, so... thanks! The problem with participating in game jams is that I end up with too many prototypes like this one 😅.

(the game I'm working on is a remake of this one: https://wendelscardua.itch.io/trinca, but with a whole different theme, better graphics, soundtrack, story mode, etc; some work-in-progress pictures/video: https://twitter.com/mteegfx/status/1587402686059536385?s=20, https://twitter.com/wendelscardua/status/1572728055797514240?s=20)

I give this <3 a <3 out of <3

Joguei agora há pouco, e adorei tudo - inclusive a descrição das pessoas na sala de aula me pegou bastante. Eu queria ser melhor com as palavras porque você e a demo merecem mais do que isso aqui 😅

Vi pessoas falando que não conseguiram jogar no celular, mas no PC eu também não consigo prosseguir. Só abre essa tela e parece ter mais texto cortado embaixo, mas não dá pra rolar nem nada (se ajuda alguma coisa, o navegador aqui é o Firefox)

Oh no, you shouldn't have said that, I already have to work on 3~6 other NES games in the near future 😅 (starting with some QoL updates and fixes to https://wendelscardua.itch.io/phutball). But if I find the time I do want come back to this someday, thanks for your comment :)

So, for the layout of the dungeon I wanted to have some walls between the rooms, but not for it to be a full maze, which would make it too hard to navigate around. Every technique I've found seemed to be focused on mazes... But then I remember some article about an old Atari game where each screen was a small maze itself. So at first I basically did this, except for the walls between rooms, instead of inside a screen:

But after I while the penny dropped: this technique on the original game ensures each "exit" is reachable from one another... But it doesn't stop from making closed rooms in the middle.

So, the real interesting tech is in the second step (in hindsight this means the first step could replaced with just flipping a coin to decide if the path between two rooms is closed or not): I use a Union-Find Forest (https://en.wikipedia.org/wiki/Disjoint-set_data_structure). First I put each room in its own set, then for each pair of directly connected rooms I do a union of their sets. After that I check for each room if a neighbor is in a different set; if they do, I remove the wall between them and do a union of their sets. This ensures every room is reachable.

Just to be clear, on my game the dungeon layout is procedural, but the content of each room is randomly picked from some handmade templates; except there are 5 specific room templates (for the intended bosses) which are placed in not-so-random places as well. (e.g. the Terracotta Titan's room is placed in a random place near the bottom of the dungeon).

Oops, I did miss the fact that I could hold jump to fall slowly 😅

(and my comment about possible overscan issues was based on a streamer because my NES is on a LED TV with the exact opposite problem; so maybe it was their setup that had too much overscan?)

I found the art (and the animations) very cute :)

I had some issues understanding the gameplay, though: the UI says "player 1 left" and "player 2 right", and the players on the left side are wearing Red and the ones on the right are wearing Blue, but the P1 cursor is Blue (and P2's cursor, controlled by AI, is Red), which is a bit weird in itself... Except the CPU's Red cursor uses the Promotion skill on one of my Red players instead of theirs.

That you've implemented an FPS is really impressive - I need to take a look at the source some time :)

Given the way the graphics are rendered, I wish at least the game's description page would tell more about what's going on, what the enemies are, etc. I still haven't figured out what "Edit" or "Suffer" do, or what all the numbers on the bottom and at the top mean (but seeing the screenshots, I wonder if the ones I saw at the top were just garbage tiles out of the safe area)

I liked the Easter egg (or should I say "Halloween pumpkin") of having thematic enemies on the Halloween stage :)

I liked the humor, and the mechanics were really original :) (I'd never have thought of "jump back" as a mechanic, even less as an *upgrade*)

I had the impression some inputs are propagated between the game over and the restart of the level - at some point I got stuck *above* the wall to the north of the F2 entrance.

(1 edit)

I liked the character animations, and also the whole idea of things being random because of dream logic :)

Some things in case you decide to work more on this game after the compo:

  • I felt the levels end too abruptly (even a little pause, maybe with a jingle, would be nicer)
  • Try to avoid placing crystals near the border of the screen (see for https://www.nesdev.org/wiki/Overscan more info about this). I remember seeing at least one streamer playing on a CRT, and they couldn't see one of the crystals because of this.
  • Maybe cap the fall speed, even with the random physics I had the impression that the player falls too fast (and at least one level was almost impossible to win because of it).

Thank you :)

By the way, with a help of a designer/artist I've made a "successor" of Bare Metal for the NESdev competition in 2020: https://forums.nesdev.org/viewtopic.php?t=22111 (and we got 5th place on it). You may want to check it out (we've yet to make a nicer itch page for it 😅)

Sorry, as it says at the end of the page, "Unfortunately I couldn’t finish it in time for the Ludum Dare, but I don’t want to throw the code away so I’ll keep working on it."

So there's no actual game on this game yet. I may go back to it someday, but other jams came since then and I ended up not returning to it. You may check my other games, though, they do work on Mesen :-)

I suppose we got inspiration from different games though (in my case: a boardgame called "Jungle Speed").

Yeah, my inspiration was the card game Set - and at first the matching mechanic was based on it but, when I finally implemented it, it wasn't much fun. I almost threw my game away 😅

I find it funny that your game also had a mechanic about matching by color or shape, like mine did :)

I didn't have much trouble understanding the instructions, but I do think the yellow halo on the selected food is a bit hard to notice (I only knew it was there after reading the other comments here 😅). Maybe an arrow right below the selected food would make it more clear?

Obrigado pelo feedback :) Respondendo cada ponto seu:

- também me arrependi um pouco das formas; num rascunho original elas eram mais diferentes mas também eram mais feias, e quando mudei o formato das peças os desenhos não couberam mais nelas; pretendo refinar ou tenhando desenhar melhor ou chamando alguém que manje de arte pra dar uma geral no jogo (tá tudo com "arte de programador")

- como originalmente foi feito para uma game jam, eu fiquei sem tempo para colocar efeitos sonoros; mesmo a música não é a ideal, e só coloquei alguma para o jogo não ficar em silêncio absoluto; pretendo sim colocar (mas me pergunto como ficaria melhor para diferenciar qual jogador ativou o hold - talvez sons de nota musical diferente? variações grave e aguda do mesmo som? enfim, vou pensar nisso...)

- como já não estou usando a seta pra cima para nada, posso fazer como que ela também funcione como hard drop sim, tranquilo :)

Acho que com shapes mais distintos a questão de formar trincas falsas deve melhorar um pouco.

I don't know if this is a bug but my second word was one that 1. doesn't seem to be an English word (but I can't be sure since English isn't my first language) and 2. doesn't show up on the original Wordle dictionaries: LAACH

(and I only got it by trying random stuff that fitted the clues I had)

Thanks for playing! And, as I wrote in the description, you should be able to toggle between the puzzle and the clean QR code display by pressing Start (Enter on the web emulator) - I had to add this feature a little bit after the jam deadline because I ran into the same problem 😅 (otherwise I would've done like you suggested)

Thanks :) I made it in a couple hours before the jam's deadline so I had no time for polish (like SFX, bg music, tutorials, or even a title screen) 😅 Also, my game's puzzle exists just to make a single picture fitting the theme (*), so I couldn't make it easier (in fact, even though I knew it was possible to solve it, I've only managed to do so waaaay after submitting it; at least it should save automatically so it doesn't need to be done in a single sitting).

* In case you're curious, here's an spoiler for what the final picture should be, rot13-encoded:
Gur cvpgher vf n DE pbqr sbe n Lbhghor ivqrb, juvpu cerfragf na 8ovg pbire bs Rhelguzvpf' "Fjrrg Qernzf (Ner Znqr Bs Gurfr)"

Awesome game :) I like the use of chromatic aberration on the glitches, and I really appreciate the coyote time jumps... I just wish some screens weren't so hard, but this is probably me being bad at it (it took me too many attempts to leave the constant -1 areas, and now I'm stuck on the  "-554    GO AWAY   GO AWAY" screen with those spinning glitches)

Nice game :) The only thing that kinda bothers me is when the leukocyte is on one side of the screen and the viruses are on the opposite side, it takes way too long to reach them... But I don't know if it's a bad thing or if it's just me 😅. The breathing sound was a really nice touch (I wish there were also some coughs when it starts getting hit with the viruses)

Off-topic 1: I just remembered I made a game with the same name when I was a kid (mine was like a pacman where you could push the walls)

Off-topic 2: Fun fact, someone made a NES game a while ago that had the same concept of a leukocyte protecting lungs from coronaviruses: https://romekrjm.itch.io/immunatio

Nice concept, I liked the puzzle-like aspect of having to learn which bacteria are vulnerable to which acid. I think there's some bug with the shooting, though: sometimes when I shoot to the right, for example, the acid drops would appear on my left and then collide with me (if I get out of its way the drop keeps going to the right direction)

I like the style of the gems (being colorblind-friendly is nice). I wish the randomization was tweaked so the player wouldn't lose without it being their fault.

One thing I don't understand is: the jam started on November 1st, so how is the Android version's last update from September?

Cool puzzle concept :) I'll have to come back to it later because I got stuck on level #04 😅

I must confess that at first I didn't think much of the game, but then I saw what the IWANNADIE language was and now I'm surprised how much was done in such a limited language

I like the circuit board art a lot. One thing I'd suggest if you intend to keep updating the game after the jam: add "buttons" to change the speed - usually tower defense games have those, for when you don't have much to do but wait.

I really like the mechanics of having to learn and remember which bug does what :)

One thing I'd suggest is making the bug icons more different between each other for accessibility, like "BUG-A", "BUG-B", etc (colorblind people could have trouble telling the bugs apart).

The Game Boy interface is very cute. The voice is... not so cute :)

I like how the game is well balanced (like the invisibility effect affecting both the enemies and ourselves), the difficulty progression is very fair... I love how sometimes even trying to reposition the enemies to manage to talk to people safely is a puzzle itself. You even managed to make the code random with non-trivial clues (I took a peek at the source just to see how random it was)

Loved the puns (from the B-pop band BTS^2 to Queen ElizaBEEth). I liked the rhythm battle and its music. I may have found a bug, but I don't know for sure (it may be my Firefox's fault): when I switched tabs and came back to the game, it wouldn't respond to my keys anymore.

I really like the concept of actually modifying the code... I wish a simpler API was exposed for the player (all those single-letter variables without explanation, they could at least have longer names...)