mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
26 lines
814 B
Elm
Executable file
26 lines
814 B
Elm
Executable file
module Debate.Cuckery.CuckList.AustinHerbert exposing (..)
|
|
|
|
import Debate.Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckAustinHerbert : Cuck
|
|
cuckAustinHerbert =
|
|
let
|
|
name : String
|
|
name =
|
|
"Austin Herbert"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/_AustinHerbert"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1663698981833277440"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = "Seed oils make you fat and kill your body."
|
|
, dodgeReceipts = []
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
|
}
|
|
]
|
|
}
|