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

26 lines
783 B
Elm
Raw Normal View History

2024-11-16 16:35:08 -06:00
module Cuckery.CuckList.AustinHerbert.AustinHerbert exposing (..)
2024-11-14 01:16:09 -06:00
import 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
2024-11-19 22:07:19 -06:00
, dodgeProposition = "Seed oils make you fat and kill your body."
, 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
}
]
}