website/frontend/src/Cuckery/CuckList/MartyKendall/MartyKendall.elm

27 lines
952 B
Elm
Raw Normal View History

2024-11-16 16:35:08 -06:00
module Cuckery.CuckList.MartyKendall.MartyKendall exposing (..)
2024-11-14 04:11:12 -06:00
import Cuckery.Types exposing (..)
cuckMartyKendall : Cuck
cuckMartyKendall =
let
name : String
name =
"Marty Kendall"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/martykendall2"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1310548994804809729"
2024-11-14 04:11:12 -06:00
, dodgeDescription = RanAway
2024-11-14 19:36:47 -06:00
, dodgeProposition = "To access your body fat, you need to deplete both glucose and fat from the blood first."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-14 04:11:12 -06:00
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason "The proposition suggests that before one can liberate their body fat, they must first experience a lethal physiological event."
2024-11-14 04:11:12 -06:00
}
]
}