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

31 lines
1 KiB
Elm
Raw Normal View History

2024-11-14 04:11:12 -06:00
module Cuckery.CuckList.TravisStatham exposing (..)
import Cuckery.Types exposing (..)
cuckTravisStatham : Cuck
cuckTravisStatham =
let
name : String
name =
"Travis Statham"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/Travis_Statham"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1461428023207489542?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = NoReply
, dodgeProposition = "seed oils do not cause obesity."
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = NoProp
}
, { dodgeLink = "https://www.reddit.com/r/StopEatingSeedOils/comments/v457tu/how_vegetable_oils_make_us_fat_zero_acre/ic9u7wu/?utm_source=share"
, dodgeDescription = NoReply
, dodgeProposition = "seed oils do not cause obesity."
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = NoProp
}
]
}