I'm designing a game where there are tiles of different shapes and sizes that the players can buy. There is a selection of a few tiles that are available and when a player buys one, a new one is - or should be - randomly chosen to replace it.
The first problem I'm having is this: How to make it random when you can feel the shapes when drawing new tiles? My initial solution was to make it less random: The player who bought the tile gets to draw the replacement for it and can effectively choose the shape of the next tile. This quickly led to problem number two: As there is more information on the tiles than just shape, and only a few copies of each shape, it would be possible to memorize what symbols appear on which shapes and choose replacement tiles accordingly. I don't wish to have this kind of a memory advantage in the game, and also don't really want the players to be able to affect what symbols they are served.
My current solution is to pretend there is no problem, to have the players pick new tiles as randomly as they can. It is the best solution I could come up with, but I would gladly hear your thoughts on this.
(No, I can't make the tiles the same shape.)
Thank you for your suggestions. =)
I don't know, to be honest. Sounds possible, in theory, so maybe.
I tested this. Getting only one tile out of the bag was kind of difficult.
This would again give advantage to players who have memorized the symbols on the tiles, and I don't want that.
I had actually thought of that... The additional components is one part of why I decided against it. But this would also add the extra hassle of finding the correct tile... Which isn't that bad, now that I think of it.
I think I'm going to keep my current solution, for now. It's easy to cheat (except people will notice if you spend a lot of time picking the tile) but it's also easy not to... I just need to make it clear in the rules that you are not allowed to choose the shape of the tile you're drawing. Also, if I ever add cards to the game for any reason, (doesn't look likely) I'll probably have pictures of the tiles on them, so they can be used for two purposes.