Fuseki Shuffle
Zinger: This one occurred to me while eating lunch and idly browsing the variants page. It is Go, with the following rule to start the game:
Eight stones, four white and four black, are located randomly on the board, on any points not on the first or second lines. Both players view the position, and make a silent bid on komi - the bids could be negative! The high bidder takes black, giving the komi bid, and play begins.
The idea is to create some novel fusekis, and get the payers to "think outside the box" of known joseki. The random points can be generated with dice, a pocket calculator, or otherwise. Any thoughts?
IanDavisIt would probably degenerate into a normal game very quickly ;-(
R3my It seems like a good idea to me, allot of people always start with the same moves, or josekis. This way the game could go a bit differently. But still it won't change the endgame, and the game could be too much about luck this way.
Zinger: Well, it isn't intended to alter the entire game - rather, just to make some new fuseki patterns, and see what kinds of ideas the players come up with. As for the luck, the komi auction is meant to offset this. Of course, a serious mistake bidding komi could be hard to recover from, but that doesn't seem much different from any other serious mistake.
moejoe?: i like the idea! Actually we did something like that the other day - by throwing the stones on the board - and trying to get the better position (a fun way to random fuseki patterns) - and then started to play the game. The bidding part is certainly more interesting than our approach. And if nothing else - it is at least funny :-)
nachtrabe: Seems like Wild Fuseki + bidding.
iago: I like the idea... how about giving it a try ? here is a random generated fuseki. please take your bid :)
iago: here is the (basic) vb program used to generate it if you are interested
Private Sub Command1_Click()
Text1.Text = Text1.Text & Round(Rnd * 3) + 1 Text1.Text = Text1.Text & " " & Round(Rnd * 14) + 3 & " - " & Round(Rnd) + 3 & vbCrLf
End Sub
Private Sub Form_Load()
Randomize Timer
End Sub
zinger: Hmmm, as nachtrabe points out, this is a lot like wild fuseki ... so I guess I didn't invent it. Dang!
As for this position, it looks like the random points were restricted to the 3rd and 4th lines, which isn't what I had in mind.