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

27 lines
814 B
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Cuckery.CuckList.AustinHerbert exposing (..)
2024-11-14 01:16:09 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Cuckery.Types exposing (..)
2024-11-14 01:16:09 -06:00
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
2024-11-19 22:07:19 -06:00
, dodgeProposition = "Seed oils make you fat and kill your body."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-19 21:30:11 -06:00
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
2024-11-14 01:16:09 -06:00
}
]
}