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
|
2024-11-14 16:22:27 -06:00
|
|
|
, cuckSocial = "https://x.com/Travis_Statham"
|
2024-11-14 04:11:12 -06:00
|
|
|
, cuckDodges =
|
2024-11-14 16:22:27 -06:00
|
|
|
[ { 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
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|