crossfit_north_wod.qsrc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # crossfit_north_wod
  2. !! set up wods
  3. if $ARGS[0] = 'setup_wod':
  4. killvar '$crossfit_wods'
  5. killvar 'wod_min_score'
  6. killvar 'wod_max_score'
  7. killvar '$wod_type'
  8. killvar '$wod_video'
  9. gs 'crossfit_north_wod', 'add_wod', 'Fran', 120, 600, 'for_time', 'pullup'
  10. gs 'crossfit_north_wod', 'add_wod', 'Nancy', 600, 1200, 'for_time', 'ohs'
  11. gs 'crossfit_north_wod', 'add_wod', 'Isabel', 90, 600, 'for_time', 'snatch'
  12. gs 'crossfit_north_wod', 'add_wod', 'Open 17.1', 600, 1200, 'for_time', 'dumbbell_snatch'
  13. gs 'crossfit_north_wod', 'add_wod', 'Open 16.1', 1300, 100, 'for_rounds', 'overhead_lunge'
  14. gs 'crossfit_north_wod', 'add_wod', 'Karen', 300, 720, 'for_time', 'wallball'
  15. end
  16. if $ARGS[0] = 'Fran':
  17. '- Thruster 65 lbs'
  18. '- Pull-ups'
  19. '21-15-9 repetitions each, for time'
  20. end
  21. if $ARGS[0] = 'Nancy':
  22. '- 400 meter run'
  23. '- Overhead squat 65 lbs x 15'
  24. '5 rounds for time'
  25. end
  26. if $ARGS[0] = 'Isabel':
  27. '- Snatch 95 pounds'
  28. '30 repetitions for time'
  29. end
  30. if $ARGS[0] = 'Open 17.1':
  31. ' - 10 dumbbell snatches'
  32. ' - 15 burpee box jump-overs'
  33. ' - 20 dumbbell snatches'
  34. ' - 15 burpee box jump-overs'
  35. ' - 30 dumbbell snatches'
  36. ' - 15 burpee box jump-overs'
  37. ' - 40 dumbbell snatches'
  38. ' - 15 burpee box jump-overs'
  39. ' - 50 dumbbell snatches'
  40. ' - 15 burpee box jump-overs'
  41. 'For time'
  42. end
  43. if $ARGS[0] = 'Open 16.1':
  44. ' - 25-ft. overhead walking lunge'
  45. ' - 8 burpees'
  46. ' - 25-ft. overhead walking lunge'
  47. ' - 8 chest-to-bar pull-ups'
  48. 'Complete as many rounds and reps as possible in 20 minutes'
  49. end
  50. if $ARGS[0] = 'Karen':
  51. '- 150 wallball shots'
  52. 'For time'
  53. end
  54. if $ARGS[0] = 'add_wod':
  55. $crossfit_wods[] = $ARGS[1]
  56. wod_min_score[$ARGS[1]] = ARGS[2]
  57. wod_max_score[$ARGS[1]] = ARGS[3]
  58. $wod_type[$ARGS[1]] = $ARGS[4]
  59. $wod_video[$ARGS[1]] = $ARGS[5]
  60. end
  61. --- crossfit_north_wod ---------------------------------