website/frontend/src/Debate/Gibberish/Domains/Metaphysics.elm

32 lines
1.4 KiB
Elm
Raw Normal View History

2024-11-30 21:15:49 -06:00
module Debate.Gibberish.Domains.Metaphysics exposing (..)
import Debate.Gibberish.Types exposing (..)
metaphysicsGibberish : Gibberish
2024-11-30 21:15:49 -06:00
metaphysicsGibberish =
let
name =
"Metaphysics"
in
{ gibberishTitle = name
, gibberishImage = formatName name
2024-11-30 21:15:49 -06:00
, gibberishTerms =
[ { term = "correspondence theory of truth"
, explanation = SpecificExplanation "While I do take there to be a world outside my perception, and I do believe that the correspondence between my perceptions and the world outside of my perceptions would be a good way to infer the relative truth value of a proposition, this doesn't seem a definition of truth that is in any way actionable. This, to me, makes the correspondence theory of truth to be practically useless."
2024-11-30 21:15:49 -06:00
}
, { term = "metaphysical essence"
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
, { term = "metaphysical modality"
, explanation = SpecificExplanation "Any attempt at unpacking this that I've heard has more or less cashed out into a logical modality, but it seems to be taken as distinct from logical modality. As a non-logical modality, I have no idea what it's supposed to be."
2024-11-30 21:15:49 -06:00
}
, { term = "non-physical mental entities"
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
, { term = "subjective idealism"
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
]
}