website/frontend/src/Debate/Cuckery/CuckList/BenBikman.elm
2024-12-08 02:18:36 -06:00

26 lines
798 B
Elm
Executable file

module Debate.Cuckery.CuckList.BenBikman exposing (..)
import Debate.Cuckery.Types exposing (..)
cuckBenBikman : Cuck
cuckBenBikman =
let
name : String
name =
"Ben Bikman"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/BenBikmanPhD"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1587547250074746880?s=19"
, dodgeDescription = NoReply
, dodgeProposition = "The diet-heart hypothesis is false."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
}
]
}