2024-11-16 16:35:08 -06:00
|
|
|
module Cuckery.CuckList.GaryBrecka.GaryBrecka exposing (..)
|
2024-11-14 01:37:19 -06:00
|
|
|
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
cuckGaryBrecka : Cuck
|
|
|
|
cuckGaryBrecka =
|
|
|
|
let
|
|
|
|
name : String
|
|
|
|
name =
|
|
|
|
"Gary Brecka"
|
|
|
|
in
|
|
|
|
{ cuckImage = formatCuckName name
|
|
|
|
, cuckName = name
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/garybrecka1"
|
2024-11-14 01:37:19 -06:00
|
|
|
, cuckDodges =
|
|
|
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125"
|
|
|
|
, dodgeDescription = NoReply
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeProposition = "Linoleic acid consumption causes atherosclerosis."
|
2024-11-19 23:05:39 -06:00
|
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
2024-11-14 01:37:19 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonCVD
|
2024-11-14 01:37:19 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|