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

25 lines
643 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
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp
}
]
}