mirror of
https://github.com/nielssp/csol
synced 2024-11-16 19:49:01 +01:00
42 lines
612 B
Text
42 lines
612 B
Text
game {
|
|
name yukonfc
|
|
title Yukon Freecell
|
|
repeat 4 {
|
|
foundation {
|
|
x 4+
|
|
first_rank a
|
|
next_suit same
|
|
next_rank up
|
|
}
|
|
}
|
|
repeat 4 {
|
|
tableau {
|
|
y 1
|
|
x 0+
|
|
deal 6
|
|
first_rank k
|
|
next_suit same
|
|
next_rank down
|
|
move_group any
|
|
}
|
|
}
|
|
repeat 4 {
|
|
tableau {
|
|
class 1
|
|
y 1
|
|
x 4+
|
|
deal 7
|
|
first_rank any
|
|
next_suit diff_color
|
|
next_rank down
|
|
move_group any
|
|
same_class {
|
|
first_rank any
|
|
next_suit diff_color
|
|
next_rank down
|
|
move_group none
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|