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

31 lines
1 KiB
Elm
Raw Normal View History

2024-11-14 01:16:09 -06:00
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
}
]
}