mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
32 lines
1 KiB
Elm
Executable file
32 lines
1 KiB
Elm
Executable file
module Cuckery.CuckList.GuyAustin.GuyAustin exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckGuyAustin : Cuck
|
|
cuckGuyAustin =
|
|
let
|
|
name : String
|
|
name =
|
|
"Guy Austin"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://x.com/GuyNAustin"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1538607434176020480"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = noProposition
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
, { dodgeLink = "https://x.com/GuyNAustin/status/1687530045101744128"
|
|
, dodgeDescription = OutrightNo
|
|
, dodgeProposition = commonProps.propSeedOils
|
|
, dodgeFallacy = Just (SpecificFallacy "")
|
|
, dodgeNicksDoxasticState = Just Belief
|
|
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
|
}
|
|
]
|
|
}
|