mirror of
https://github.com/nielssp/csol
synced 2024-11-16 19:49:01 +01:00
33 lines
390 B
Text
33 lines
390 B
Text
game {
|
|
name eightoff
|
|
title Eight Off
|
|
repeat 4 {
|
|
foundation {
|
|
y 0+
|
|
first_rank a
|
|
next_suit same
|
|
next_rank up
|
|
}
|
|
}
|
|
repeat 4 {
|
|
cell {
|
|
x 1+
|
|
deal 1
|
|
}
|
|
}
|
|
repeat 4 {
|
|
cell {
|
|
x 5+
|
|
}
|
|
}
|
|
repeat 8 {
|
|
tableau {
|
|
y 1
|
|
x 1+
|
|
deal 6
|
|
first_rank any
|
|
next_suit same
|
|
next_rank down
|
|
}
|
|
}
|
|
}
|