Skip to content

Commit

Permalink
recordes
Browse files Browse the repository at this point in the history
  • Loading branch information
neongreen committed May 7, 2024
1 parent b9c3d9e commit 8a7ea0e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Yet unannounced in Chess Simp Discord

* May 7, 2024: New challenge: Chess Simp Discord (manossef) -- "The Gay Challenge"

# Already announced

* May 7, 2024: New challenge: Chess Simp Discord (manossef) -- "The Gay Challenge"
* May 5, 2024: New challenge: Chess Simp -- "This Is Why Chess Pieces Can Fly"
* Sep 12, 2023: New challenge: Chess Simp -- "The Unending Cycle of Revenge"
* Sep 12, 2023: Internal: keeping track of piece identity
Expand Down
4 changes: 3 additions & 1 deletion src/challenges/chess-simp-discord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ class SimpDiscord_Manos implements Challenge {
title: '[manossef] The Gay Challenge',
link: 'https://discord.com/channels/866701779155419206/1236461054255566848/1237450553374539908',
challenge: `Approach him! Choose whatever move brings your king the closest (or at least the least far) to the opponent's king. Oh, and your first move has to let your king out.`,
records: new Map([]),
records: new Map([
[users.ManosSef.name, { when: new Date('2024-05-07'), depth: 1, moves: 29 }],
]),
}

isMoveAllowed: Challenge['isMoveAllowed'] = ({ move, board, history }) => {
Expand Down
4 changes: 3 additions & 1 deletion src/challenges/chess-simp/2024-05.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export class Simp_2024_05_01 implements Challenge {
link: 'https://www.youtube.com/watch?v=ZM_8zFV9th8',
challenge:
"Chess, but it's a platformer. Your pieces (not pawns) must always land directly above another piece/pawn.",
records: new Map([[users.SenorFlamingo.name, { when: new Date('2024-05-06'), depth: 1 }]]),
records: new Map([
[users.SenorFlamingo.name, { when: new Date('2024-05-06'), depth: 1, moves: 17 }],
]),
}

isMoveAllowed: Challenge['isMoveAllowed'] = ({ board, move }) => {
Expand Down

0 comments on commit 8a7ea0e

Please sign in to comment.