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

38 lines
1.2 KiB
Elm
Raw Normal View History

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