mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
30 lines
870 B
Elm
30 lines
870 B
Elm
module Cuckery.CuckList.GuyAustin exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
templateCuck : Cuck
|
|
templateCuck =
|
|
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
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
, { dodgeLink = "https://x.com/GuyNAustin/status/1687530045101744128"
|
|
, dodgeDescription = OutrightNo
|
|
, dodgeProposition = "."
|
|
, dodgeNicksDoxasticState = Just Belief
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|