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

37 lines
1.2 KiB
Elm
Executable file

module Cuckery.CuckList.EdwardGoeke.EdwardGoeke exposing (..)
import Cuckery.Types exposing (..)
cuckEdwardGoeke : Cuck
cuckEdwardGoeke =
let
name : String
name =
"Edward Goeke"
propSeedOils =
"Seed oils are inflammatory."
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/GoekeEddie"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20"
, dodgeDescription = NoReply
, dodgeProposition = propSeedOils
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20"
, dodgeDescription = NoReply
, dodgeProposition = propSeedOils
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
}
]
}