-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Globals.lua
49 lines (41 loc) · 814 Bytes
/
Globals.lua
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
-- Conditions for Random Emotes
PetIsUnhappy = 1
PetIsContent = 2
PetIsHappy = 3
PetIsMale = 4
PetIsFemale = 5
PlayerIsMale = 6
PlayerIsFemale = 7
TargetExists = 8
TargetIsFriendly = 9
TargetIsUnfriendly = 10
TargetIsSpider = 11 -- undocumented
FoodAccepted = 12
FoodRefused = 13
IsFirstCall = 14
IsSecondCall = 15
IsThirdCall = 16
-- Needs to be set
PetEmote_DefaultEmotes = {}
PetEmote_FeedingEmotes = {}
PetEmote_CombatEmotes = {}
PetEmote_apos = "’"
PetEmote_nbsp = " "
PetEmote_Version = { 1, 8, 19 }
PetEmote_Family = {}
PetEmote_Gender = {}
PetEmote_Settings = {}
PetEmote_RecentFood = nil
PetEmote_Happiness = 5
PetEmote_GenderTable = {
[1] = "male",
[2] = "male",
[3] = "female",
["male"] = 2,
["m"] = 2,
["männlich"] = 2,
["female"] = 3,
["f"] = 3,
["weiblich"] = 3,
["w"] = 3,
}