-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRule[23-32] GameType
49 lines (40 loc) · 1.06 KB
/
Rule[23-32] GameType
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
RULE [23]
If [playersType] = "singleplayer"
and [genreType] = "survival"
Then [gameType] = "survival singleplayer"
RULE [24]
If [playersType] = "multiplayer"
and [genreType] = "survival"
Then [gameType] = "survival multiplayer"
RULE [25]
If [playersType] = "singleplayer"
and [genreType] = "shooter"
Then [gameType] = "shooter singleplayer"
RULE [26]
If [playersType] = "multiplayer"
and [genreType] = "shooter"
Then [gameType] = "shooter multiplayer"
RULE [27]
If [playersType] = "singleplayer"
and [genreType] = "horror"
Then [gameType] = "horror singleplayer"
RULE [28]
If [playersType] = "multiplayer"
and [genreType] = "horror"
Then [gameType] = "horror multiplayer"
RULE [29]
If [playersType] = "singleplayer"
and [genreType] = "SS"
Then [gameType] = "SS singleplayer"
RULE [30]
If [playersType] = "multiplayer"
and [genreType] = "SS"
Then [gameType] = "SS multiplayer"
RULE [31]
If [playersType] = "singleplayer"
and [genreType] = "SH"
Then [gameType] = "SH singleplayer"
RULE [32]
If [playersType] = "multiplayer"
and [genreType] = "SH"
Then [gameType] = "SH multiplayer"