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

24 lines
681 B
Elm
Executable file

module Cuckery.CuckList.GeorgeMartin exposing (..)
import Cuckery.Types exposing (..)
cuckGeorgeMartin : Cuck
cuckGeorgeMartin =
let
name : String
name =
"George Martin"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/CarnismDebunked"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1815098730141651021"
, dodgeDescription = RanAway
, dodgeProposition = "Nick has killed more animals in his life than a mature bear."
, dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = NoProp
}
]
}