Skip to content

Commit

Permalink
[puzzles] Add a stickering for EODF (Nautilus step).
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Oct 23, 2024
1 parent a77175d commit 6830681
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/cubing/puzzles/stickerings/cube-like-stickerings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,26 @@ export async function cubeLikePuzzleStickering(
);
break;
}
case "EODF": {
dimF2L();
puzzleStickering.set(
m.or([cornerDFR(), m.and([LL(), CORNERS()])]),
PieceStickering.Ignored,
);
puzzleStickering.set(
m.or([m.and([LL(), EDGES()]), edgeFR()]),
PieceStickering.OrientationWithoutPermutation,
);
puzzleStickering.set(
m.and([m.and(m.moves(["D", "F"])), EDGES()]),
PieceStickering.Regular,
);
puzzleStickering.set(
m.and([m.and(m.moves(["F"])), CENTERS()]),
PieceStickering.Regular,
);
break;
}
case "Void Cube": {
puzzleStickering.set(CENTERS(), PieceStickering.Invisible);
break;
Expand Down
1 change: 1 addition & 0 deletions src/cubing/puzzles/stickerings/puzzle-stickerings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export const experimentalStickerings: Record<
EO: { groups: { "3x3x3": "ZZ" } },
EOline: { groups: { "3x3x3": "ZZ" } },
EOcross: { groups: { "3x3x3": "ZZ" } },
EODF: { groups: { "3x3x3": "Nautilus" } },
CMLL: { groups: { "3x3x3": "Roux" } },
L10P: { groups: { "3x3x3": "Roux" } },
L6E: { groups: { "3x3x3": "Roux" } },
Expand Down

0 comments on commit 6830681

Please sign in to comment.