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"
|
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
|
2024-11-14 16:22:27 -06:00
|
|
|
, 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
|
2024-11-14 01:37:19 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificProp 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
|
2024-11-14 01:37:19 -06:00
|
|
|
, dodgeNicksDoxasticState = Just Disbelief
|
2024-11-14 19:36:47 -06:00
|
|
|
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonInflammation
|
2024-11-14 01:37:19 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|