-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRule[7-14] GenreType
More file actions
47 lines (40 loc) · 828 Bytes
/
Rule[7-14] GenreType
File metadata and controls
47 lines (40 loc) · 828 Bytes
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
RULE [7]
If [survive] = "yes" and
[shooter] = "yes" and
[paranormal] = "yes"
Then [genreType] = "SH"
RULE [8]
If [survive] = "yes" and
[shooter] = "yes" and
[paranormal] = "no"
Then [genreType] = "SS"
RULE [9]
If [survive] = "yes" and
[shooter] = "no" and
[paranormal] = "yes"
Then [genreType] = "SH"
RULE [10]
If [survive] = "no" and
[shooter] = "yes" and
[paranormal] = "yes"
Then [genreType] = "SH"
RULE [11]
If [survive] = "yes" and
[shooter] = "no" and
[paranormal] = "no"
Then [genreType] = "survival"
RULE [12]
If [survive] = "no" and
[shooter] = "yes" and
[paranormal] = "no"
Then [genreType] = "shooter"
RULE [13]
If [survive] = "no" and
[shooter] = "no" and
[paranormal] = "yes"
Then [genreType] = "horror"
RULE [14]
If [survive] = "no" and
[shooter] = "no" and
[paranormal] = "no"
Then [genreType] = "shooter"