Skip to content

Commit

Permalink
feat(wod): add amanda
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Sep 6, 2019
1 parent 69d2a11 commit cbd12cd
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/models/Exercise.re
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ type t = [
| `HandstandPushUp
| `KBS
| `Lunge
| `MuscleUp
| `OverheadSquat
| `PullUp
| `PullUpJumping
Expand All @@ -42,6 +43,7 @@ type t = [
| `SnatchAlt
| `SnatchHangPower
| `SnatchPower
| `SnatchSquat
| `Squat
| `SumoDeadliftHighPull
| `Swim
Expand Down Expand Up @@ -80,6 +82,7 @@ let toString =
| `HangingKneeRaise => "hanging knee raise"
| `KBS => "kettlebell swing"
| `Lunge => "lunge"
| `MuscleUp => "muscle-up"
| `OverheadSquat => "overhead squat"
| `PullUp => "pull-up"
| `PullUpJumping => "jumping pull-up"
Expand All @@ -99,6 +102,7 @@ let toString =
| `SnatchAlt => "alt snatch"
| `SnatchHangPower => "hang power snatch"
| `SnatchPower => "power snatch"
| `SnatchSquat => "squat snatch"
| `Squat => "squat"
| `SumoDeadliftHighPull => "sumo deadlift high pull"
| `Swim => "swim"
Expand Down
38 changes: 38 additions & 0 deletions src/models/Wod.re
Original file line number Diff line number Diff line change
Expand Up @@ -1545,4 +1545,42 @@ _Diane_, one of CrossFit's original six "Girls" WODs, was first posted on crossf
},
],
},
{
id: "amanda",
createdAt: "2019-09-06T08:07:48.979Z",
name: Some("Amanda"),
wodType: `ForTime,
category: Some(`Girl),
scaledParts: None,
buyInOut: None,
externalLink: None,
description:
Some((
Some(
{j|
_Amanda_ is one of the classic CrossFit "Girl" workouts, but not one of the
original six from 2003. This workout was added to the list of Girls when it
was posted as the CrossFit workout of the day on Saturday, July 17, 2010.
|j},
),
None,
)),
timeCap: None,
rounds: None,
repScheme: Some([9, 7, 5]),
parts: [
{
reps: `RepScheme,
weight: (Some(`bodyweight), Some(`bodyweight)),
exercise: `MuscleUp,
equipment: None,
},
{
reps: `RepScheme,
weight: (Some(`kg(60.0)), Some(`kg(43.0))),
exercise: `SnatchSquat,
equipment: None,
},
],
},
];

0 comments on commit cbd12cd

Please sign in to comment.