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

27 lines
838 B
Elm
Raw Normal View History

2024-11-16 16:35:08 -06:00
module Cuckery.CuckList.TroKalayjian.TroKalayjian exposing (..)
2024-11-14 04:11:12 -06:00
import Cuckery.Types exposing (..)
cuckTroKalayjian : Cuck
cuckTroKalayjian =
let
name : String
name =
"Tro Kalayjian"
in
{ cuckImage = formatCuckName name
, cuckName = name
, cuckSocial = "https://x.com/DoctorTro"
2024-11-14 04:11:12 -06:00
, cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1261351818430255104?s=20"
2024-11-14 04:11:12 -06:00
, dodgeDescription = RanAway
2024-11-14 19:36:47 -06:00
, dodgeProposition = "Dr. Tro engages in shitty behaviour that causes people to dislike him."
, dodgeReceipts = []
, dodgeFallacy = Just (SpecificFallacy "")
2024-11-14 04:11:12 -06:00
, dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason "The proposition seems trivially true."
2024-11-14 04:11:12 -06:00
}
]
}