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

25 lines
764 B
Elm
Executable file

module Cuckery.CuckList.BradCampbell.BradCampbell exposing (..)
import Cuckery.Types exposing (..)
cuckBradCampbell : Cuck
cuckBradCampbell =
let
name : String
name =
"Brad Campbell"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/DrBradCampbell"
, cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1530933999610171392?s=20"
, dodgeDescription = NoReply
, dodgeProposition = "Canola oil kills you slowly."
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
]
}