website/frontend/src/Cuckery/CuckList/GaryBrecka.elm
2024-11-14 19:36:47 -06:00

24 lines
705 B
Elm
Executable file

module Cuckery.CuckList.GaryBrecka exposing (..)
import Cuckery.Types exposing (..)
cuckGaryBrecka : Cuck
cuckGaryBrecka =
let
name : String
name =
"Gary Brecka"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/garybrecka1"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125"
, dodgeDescription = NoReply
, dodgeProposition = "Linoleic acid consumption causes atherosclerosis."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonCVD
}
]
}