forked from flynnsanefellow/flynnsanity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsounds.lua
More file actions
49 lines (45 loc) · 1.16 KB
/
Copy pathsounds.lua
File metadata and controls
49 lines (45 loc) · 1.16 KB
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
SMODS.Sound{
key="wooshpetscop",
path="wooshpetscop.ogg",
pitch=0.7,
volume=0.6,
}
SMODS.Sound{
key="bonebreak",
path="bonebreak.ogg",
pitch=0.7,
volume=0.6,
}
SMODS.Sound{
key="evil",
path="evil.ogg",
pitch=0.7,
volume=0.6,
}
--this thing only plays if you have a Flynnatic joker
SMODS.Sound({
key = "music_flynn",
path = "Poker de Moscas.ogg", -- means "Fly Poker" in Spanish
sync = true,
pitch = 1,
select_music_track = function()
if not (G.jokers and G.jokers.cards) then return false end
for _,joker in ipairs(G.jokers.cards) do
if joker.config.center.rarity == "flynnset_flynnatic" then return true end
end
return false
end
})
SMODS.Sound({
key = "music_minusb",
path = "minus-b.ogg", --Music by Lil Yappa
sync = false,
pitch = 1,
select_music_track = function()
if not (G.jokers and G.jokers.cards) then return false end
for _,joker in ipairs(G.jokers.cards) do
if joker.config.center.rarity == "flynnset_minusb" then return true end
end
return false
end
})