-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dota2.ttl
100 lines (71 loc) · 3.85 KB
/
Dota2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@prefix : <https://abstractmachines.dev/wittgenstein/Dota2#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://abstractmachines.dev/wittgenstein/Dota2> .
<https://abstractmachines.dev/wittgenstein/Dota2> rdf:type owl:Ontology ;
owl:versionIRI <https://abstractmachines.dev/wittgenstein/Dota2/0.0.0> ;
rdfs:comment "An ontology for the Dota 2 game to be used in a reasoning engine."@en ;
rdfs:label "A Dota 2 Ontology"@en .
#################################################################
# Object Properties
#################################################################
### https://abstractmachines.dev/wittgenstein/Dota2#DotaObjectProperty
:DotaObjectProperty rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "The Top Object Property that all properties in the Dota ontology must subclass."@en ;
rdfs:label "Dota Object Property"@en .
### https://abstractmachines.dev/wittgenstein/Dota2#affectsAttribute
:affectsAttribute rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :DotaObjectProperty ;
rdfs:domain :Ability ;
rdfs:range :Attribute .
### https://abstractmachines.dev/wittgenstein/Dota2#hasAffinityWith
:hasAffinityWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :DotaObjectProperty ;
rdf:type owl:SymmetricProperty ;
rdfs:domain :Attribute ;
rdfs:range :Attribute .
### https://abstractmachines.dev/wittgenstein/Dota2#isConstrainedBy
:isConstrainedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :DotaObjectProperty ;
rdfs:domain :Ability ;
rdfs:range :Attribute .
#################################################################
# Classes
#################################################################
### https://abstractmachines.dev/wittgenstein/Dota2#Ability
:Ability rdf:type owl:Class ;
rdfs:subClassOf :DotaThing .
### https://abstractmachines.dev/wittgenstein/Dota2#Attribute
:Attribute rdf:type owl:Class ;
rdfs:subClassOf :DotaThing .
### https://abstractmachines.dev/wittgenstein/Dota2#DotaThing
:DotaThing rdf:type owl:Class ;
rdfs:comment "A Thing in the Dota Ontology"@en ;
rdfs:label "Dota Thing"@en .
#################################################################
# Individuals
#################################################################
### https://abstractmachines.dev/wittgenstein/Dota2#LifeDrain
:LifeDrain rdf:type owl:NamedIndividual ,
:Ability ;
:isConstrainedBy :LinkBreakDistance .
### https://abstractmachines.dev/wittgenstein/Dota2#LinkBreakDistance
:LinkBreakDistance rdf:type owl:NamedIndividual ,
:Attribute .
### https://abstractmachines.dev/wittgenstein/Dota2#MovementSpeed
:MovementSpeed rdf:type owl:NamedIndividual ,
:Attribute ;
:hasAffinityWith :LinkBreakDistance .
### https://abstractmachines.dev/wittgenstein/Dota2#Overgrowth
:Overgrowth rdf:type owl:NamedIndividual ,
:Ability ;
:affectsAttribute :MovementSpeed .
### https://abstractmachines.dev/wittgenstein/Dota2#Windrun
:Windrun rdf:type owl:NamedIndividual ,
:Ability ;
:affectsAttribute :MovementSpeed .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi