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

30 lines
1 KiB
Elm
Executable file

module Cuckery.CuckList.BrianKerley exposing (..)
import Cuckery.Types exposing (..)
cuckBrianKerley : Cuck
cuckBrianKerley =
let
name : String
name =
"Brian Kerley"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://twitter.com/SeedOilDsrspctr"
, cuckDodges =
[ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1483889771134926849?s=20"
, dodgeDescription = NoReply
, dodgeProposition = "seed oils are not a significant, independent risk factor for public health."
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = NoProp
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1783200352646619227"
, dodgeDescription = NoReply
, dodgeProposition = "seed oils are not a significant, independent risk factor for public health."
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = NoProp
}
]
}