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

25 lines
639 B
Elm
Raw Normal View History

2024-11-14 04:11:12 -06:00
module Cuckery.CuckList.AmberOHearn exposing (..)
2024-11-14 01:16:09 -06:00
import Cuckery.Types exposing (..)
cuckAmberOHearn : Cuck
cuckAmberOHearn =
let
name : String
name =
"Amber O Hearn"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://twitter.com/KetoCarnivore"
, cuckDodges =
[ { dodgeLink = "https://twitter.com/FusionProgGuy/status/1413888976281169922?s=20"
, dodgeDescription = NoReply
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp
}
]
}