forked from flynnsanefellow/flynnsanity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrarities.lua
More file actions
44 lines (42 loc) · 815 Bytes
/
Copy pathrarities.lua
File metadata and controls
44 lines (42 loc) · 815 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
SMODS.Rarity {
key = "evil",
pools = {
["Joker"] = true
},
default_weight = 0,
badge_colour = HEX('ff001f'),
loc_txt = {
name = "EVIL"
},
get_weight = function(self, weight, object_type)
return weight
end,
}
SMODS.Rarity {
key = "flynnatic",
pools = {
["Joker"] = true
},
default_weight = 0,
badge_colour = HEX('0dff9b'),
loc_txt = {
name = "FLYNNATIC"
},
get_weight = function(self, weight, object_type)
return weight
end,
}
SMODS.Rarity {
key = "minusb",
pools = {
["Joker"] = true
},
default_weight = 0,
badge_colour = HEX('000000'),
loc_txt = {
name = "-b"
},
get_weight = function(self, weight, object_type)
return weight
end,
}