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

25 lines
681 B
Elm
Raw Normal View History

2024-11-14 01:37:19 -06:00
module Cuckery.CuckList.GeorgeMartin exposing (..)
import Cuckery.Types exposing (..)
2024-11-14 04:11:12 -06:00
cuckGeorgeMartin : Cuck
cuckGeorgeMartin =
2024-11-14 01:37:19 -06:00
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
}
]
}