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

37 lines
1.5 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 =
2024-12-03 23:15:11 -06:00
[ { term = "Correspondence Theory of Truth"
, strength = 10
, 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
}
2024-12-03 23:15:11 -06:00
, { term = "Metaphysical Essence"
, strength = 5
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
2024-12-03 23:15:11 -06:00
, { term = "Metaphysical Modality"
, strength = 0
, 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
}
2024-12-03 23:15:11 -06:00
, { term = "Non-Physical Mental Entities"
, strength = 5
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
2024-12-03 23:15:11 -06:00
, { term = "Subjective Idealism"
, strength = 5
, explanation = NoClue
2024-11-30 21:15:49 -06:00
}
]
}