Character
A rules participant represented with ability scores and, optionally, an alignment.
| Canonical IRI | https://semantic-flow.github.io/mesh-sidecar-fantasy-rules/ontology/Character🪢 |
|---|
Pinned source file
@base <https://semantic-flow.github.io/mesh-sidecar-fantasy-rules/> .
@prefix fant: <https://semantic-flow.github.io/mesh-sidecar-fantasy-rules/ontology/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<ontology>
a owl:Ontology ;
dcterms:title "Fantasy Rules Ontology" ;
dcterms:description "A small SRD-inspired ontology fixture for Semantic Flow sidecar publishing." ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
dcterms:source <https://www.dndbeyond.com/srd> ;
rdfs:seeAlso <https://media.dndbeyond.com/compendium-images/srd/5.2/SRD_CC_v5.2.1.pdf> .
fant:Character
a owl:Class ;
rdfs:label "Character" ;
skos:definition "A rules participant represented with ability scores and, optionally, an alignment." .
fant:PlayerCharacter
a owl:Class ;
rdfs:subClassOf fant:Character ;
rdfs:label "Player Character" ;
skos:definition "A character controlled by a player." .
fant:Ability
a owl:Class ;
rdfs:label "Ability" ;
skos:definition "One of the six physical or mental characteristics used by characters and monsters." .
fant:AbilityScore
a owl:Class ;
rdfs:label "Ability Score" ;
skos:definition "A score representing the magnitude of a specific ability." .
fant:Alignment
a owl:Class ;
rdfs:label "Alignment" ;
skos:definition "A broad description of ethical attitudes and ideals." .
fant:CharacterClass
a owl:Class ;
rdfs:label "Character Class" ;
skos:definition "A character archetype that summarizes a class's rules focus and primary abilities." .
fant:hasAbilityScore
a owl:ObjectProperty ;
rdfs:label "has ability score" ;
rdfs:domain fant:Character ;
rdfs:range fant:AbilityScore .
fant:forAbility
a owl:ObjectProperty ;
rdfs:label "for ability" ;
rdfs:domain fant:AbilityScore ;
rdfs:range fant:Ability .
fant:scoreValue
a owl:DatatypeProperty ;
rdfs:label "score value" ;
rdfs:domain fant:AbilityScore ;
rdfs:range xsd:integer .
fant:hasAlignment
a owl:ObjectProperty ;
rdfs:label "has alignment" ;
rdfs:domain fant:Character ;
rdfs:range fant:Alignment .
fant:hasCharacterClass
a owl:ObjectProperty ;
rdfs:label "has character class" ;
rdfs:domain fant:Character ;
rdfs:range fant:CharacterClass .
fant:primaryAbility
a owl:ObjectProperty ;
rdfs:label "primary ability" ;
rdfs:domain fant:Character ;
rdfs:range fant:Ability .
fant:level
a owl:DatatypeProperty ;
rdfs:label "level" ;
rdfs:domain fant:Character ;
rdfs:range xsd:integer .
fant:strength
a fant:Ability ;
rdfs:label "Strength" ;
skos:definition "Physical might." .
fant:dexterity
a fant:Ability ;
rdfs:label "Dexterity" ;
skos:definition "Agility, reflexes, and balance." .
fant:constitution
a fant:Ability ;
rdfs:label "Constitution" ;
skos:definition "Health and stamina." .
fant:intelligence
a fant:Ability ;
rdfs:label "Intelligence" ;
skos:definition "Reasoning and memory." .
fant:wisdom
a fant:Ability ;
rdfs:label "Wisdom" ;
skos:definition "Perceptiveness and mental fortitude." .
fant:charisma
a fant:Ability ;
rdfs:label "Charisma" ;
skos:definition "Confidence, poise, and charm." .
fant:barbarian
a fant:CharacterClass ;
rdfs:label "Barbarian" .
fant:bard
a fant:CharacterClass ;
rdfs:label "Bard" .
fant:cleric
a fant:CharacterClass ;
rdfs:label "Cleric" .
fant:druid
a fant:CharacterClass ;
rdfs:label "Druid" .
fant:fighter
a fant:CharacterClass ;
rdfs:label "Fighter" .
fant:monk
a fant:CharacterClass ;
rdfs:label "Monk" .
fant:paladin
a fant:CharacterClass ;
rdfs:label "Paladin" .
fant:ranger
a fant:CharacterClass ;
rdfs:label "Ranger" .
fant:rogue
a fant:CharacterClass ;
rdfs:label "Rogue" .
fant:sorcerer
a fant:CharacterClass ;
rdfs:label "Sorcerer" .
fant:warlock
a fant:CharacterClass ;
rdfs:label "Warlock" .
fant:wizard
a fant:CharacterClass ;
rdfs:label "Wizard" .
fant:lawfulGood
a fant:Alignment ;
rdfs:label "Lawful Good" .
fant:neutral
a fant:Alignment ;
rdfs:label "Neutral" .
fant:chaoticGood
a fant:Alignment ;
rdfs:label "Chaotic Good" .