mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
26 lines
809 B
Elm
Executable file
26 lines
809 B
Elm
Executable file
module Debate.Cuckery.CuckList.GaryBrecka exposing (..)
|
|
|
|
import Debate.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."
|
|
, dodgeReceipts = []
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
|
}
|
|
]
|
|
}
|