website/frontend/src/Debate/Cuckery/CuckList/GaryBrecka.elm

27 lines
809 B
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Cuckery.CuckList.GaryBrecka exposing (..)
2024-11-14 01:37:19 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Cuckery.Types exposing (..)
2024-11-14 01:37:19 -06:00
cuckGaryBrecka : Cuck
cuckGaryBrecka =
let
name : String
name =
"Gary Brecka"
in
{ cuckImage = formatCuckName name
, cuckName = name
, 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."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-14 01:37:19 -06:00
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
2024-11-14 01:37:19 -06:00
}
]
}