I realized chess pieces can be redesigned to be geometric attack directions
31–40 of 269 posts
Re: I realized chess pieces can be redesigned to be geometric attack directions
#32Re: I realized chess pieces can be redesigned to be geometric attack directions
#33Re: I realized chess pieces can be redesigned to be geometric attack directions
#34I still have a set which was sold as "Visual Chess", and you can still find it on eBay for example. The pieces were mostly like traditional design (but kind of "modernized" in 1960s style) but when viewed from the top (i.e. as you play), there was an indication of the allowed move. You can see some examples in the image link below. Even the pawns had a nice design which clearly indicated that movement of one square f…
Re: I realized chess pieces can be redesigned to be geometric attack directions
#35Lovely communicative design
Re: I realized chess pieces can be redesigned to be geometric attack directions
#36This would be awesome for teaching beginners. I'd probably go with circle for the king, and maybe an L or a sideways H for the knight, even though they break the original design rule. Otherwise K/Q/N just look too similar.
Re: I realized chess pieces can be redesigned to be geometric attack directions
#37Re: I realized chess pieces can be redesigned to be geometric attack directions
#38What I enjoy about this design is it exploits the correlation between piece value with the number of ways it can move, resulting in a visual intuition that more visually complex pieces are worth more on average. The knight is perhaps the frustrating exceptions to this.
Re: I realized chess pieces can be redesigned to be geometric attack directions
#39I thought this would be about redesigning their movement to make a new kind of game. But it's only the shape of the pieces. That said, I'd use a square for the rooks so they don't get confused with the bishops as they get moved and maybe an L shape for the knights. It would definitely make it easy for beginners to learn how each piece moves.
> It would definitely make it easy for beginners to learn how each piece moves. Which is more or less the easiest part of the game to learn, and one which pretty much anybody will have down after one or maybe two games. It's a clever little idea to share on Twitter but in practice I think it would make the board slower to read for advanced players, because so many pieces look similar.
Re: I realized chess pieces can be redesigned to be geometric attack directions
#40Off topic, but does anyone know a browser extension that lets you block certain domains from the HN list? I've blocked twitter/x from my DNS, and don't want links to it cluttering the feed.
tbody tr.athing:has(.title .titleline a[href*="twitter.com"]),
tbody tr.athing:has(.title .titleline a[href*="twitter.com"]) + tr,
tbody tr.athing:has(.title .titleline a[href\*="twitter.com"]) + tr + tr
{
display: none;
}
This selects for any `tr` which has an anchor to a url with twitter.com somewhere in it (with some layers in between) and the two `tr` which follow. Note that this is pretty naive and could have some false positives with links such as https://example.com/blog/a-post-about-twitter.com and such, you could be more careful with the attribute selector if you'd likeThis will leave "holes" in the numbering of the list of items as the numbers are not calculated based on the structure of the document but are rather hardcoded. You could definitely fix this with some more funky css rules if needed.