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

31 lines
947 B
Elm
Raw Normal View History

2024-11-14 01:37:19 -06:00
module Cuckery.CuckList.EdwardGoeke exposing (..)
import Cuckery.Types exposing (..)
cuckEdwardGoeke : Cuck
cuckEdwardGoeke =
let
name : String
name =
"Edward Goeke"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://twitter.com/GoekeEddie"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20"
, dodgeDescription = NoReply
, dodgeProposition = "seed oils are inflammatory."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20"
, dodgeDescription = NoReply
, dodgeProposition = "seed oils are inflammatory."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
}
]
}