-
Notifications
You must be signed in to change notification settings - Fork 1
/
mudfantasy.ttl
60 lines (51 loc) · 2.6 KB
/
mudfantasy.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vgo: <http://purl.org/net/videogameontology#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix mud: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mud.ttl#> .
@prefix mudlogic: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudlogic.ttl#> .
@prefix mudchar: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudchar.ttl#> .
@prefix mudfantasy: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudfantasy.ttl#> .
mudfantasy: rdf:type owl:Ontology ;
# Description
dcterms:title "Multi-User Domain Fantasy ontology" ;
dcterms:description """
Vocabulary containing terms for commonly used fantasy themes
""" ;
# Ownership
dcterms:license <http://creativecommons.org/licenses/by/4.0/> ;
dcterms:creator <https://calum.inrupt.net/profile/card#me> .
# mud:Species subclasses and extensions
mudfantasy:Vampire a rdfs:Class ;
rdfs:subclassOf mud:Species ;
rdfs:label "Vampire"@en ;
rdfs:label "Vampire"@fr ;
rdfs:label "Vampiro"@es ;
rdfs:comment "An undead being in human form that survives by sucking the blood of living people"@en ;
rdfs:comment "Un être mort-vivant à forme humaine qui survit en suçant le sang des personnes vivantes"@fr .
mudfantasy:Elf a rdfs:Class ;
rdfs:subclassOf mud:Species ;
rdfs:label "Elf"@en ;
rdfs:label "Elfe"@fr ;
rdfs:comment "A generic or base class for different kinds of fantasy elves"@en .
mudfantasy:Dwarf a rdfs:Class ;
rdfs:subclassOf mud:Species ;
rdfs:label "Dwarf"@en ;
rdfs:label "Nairn"@fr ;
rdfs:comment "A generic or base class for different kinds of fantasy dwarves"@en .
# Spells and Magic
# NOTE: spells can be considered as types of Action. For now they don't have a subclass
mudfantasy:isTransformedInto a rdf:Property ;
rdfs:label "isTransformedInto"@en ;
rdfs:comment "Indicates that the Thing has transformed into another form. For example a Vampire can transform into a bat"@en .
mudfantasy:Illusion a rdfs:Class;
rdfs:label "Illusion"@en ;
rdfs:comment "Contains information about an illusion being performed"@en .
mudfantasy:appearsAs a rdf:Property ;
rdfs:label "appearsAs"@en ;
rdfs:comment "Indicates that the Thing is being presented in another form (an illusion)"@en ;
rdfs:range mud:Illusion .