Separate incendiary ebs and flamelets
This commit is contained in:
File diff suppressed because one or more lines are too long
+3
-1
@@ -117,9 +117,11 @@ useBulletPayload bu = case _buPayload bu of
|
|||||||
BulFrag -> makeFragBullets
|
BulFrag -> makeFragBullets
|
||||||
BulGas -> (`makeGasCloud` V2 0 0)
|
BulGas -> (`makeGasCloud` V2 0 0)
|
||||||
BulBall ExplosiveBall -> \p -> cWorld . lWorld . shockwaves .:~ concBall p
|
BulBall ExplosiveBall -> \p -> cWorld . lWorld . shockwaves .:~ concBall p
|
||||||
BulBall ElectricalBall -> makeMovingEB (_buVel bu) ElectricalBall
|
BulBall ElectricalBall{} -> makeMovingEB (_buVel bu)
|
||||||
|
(ElectricalBall (round $ bu ^. buPos . _1))
|
||||||
BulBall FlashBall -> makeMovingEB (_buVel bu) FlashBall
|
BulBall FlashBall -> makeMovingEB (_buVel bu) FlashBall
|
||||||
BulBall (FlameletBall x r) -> makeMovingEB (_buVel bu) (FlameletBall x r)
|
BulBall (FlameletBall x r) -> makeMovingEB (_buVel bu) (FlameletBall x r)
|
||||||
|
BulBall IncendiaryBall -> makeMovingEB (_buVel bu) IncendiaryBall
|
||||||
|
|
||||||
makeFragBullets :: Point2 -> World -> World
|
makeFragBullets :: Point2 -> World -> World
|
||||||
makeFragBullets p w = w & cWorld . lWorld . bullets .++~ bus
|
makeFragBullets p w = w & cWorld . lWorld . bullets .++~ bus
|
||||||
|
|||||||
@@ -281,8 +281,8 @@ inventoryX c = case c of
|
|||||||
, megaTinMag 10200
|
, megaTinMag 10200
|
||||||
] <>
|
] <>
|
||||||
-- [bulletTargetingModule btt | btt <- [minBound .. maxBound]]
|
-- [bulletTargetingModule btt | btt <- [minBound .. maxBound]]
|
||||||
[bulletModule (BulletModPayload (BulBall x)) | x <- [ FlameletBall 5 0
|
[bulletModule (BulletModPayload (BulBall x)) | x <- [ IncendiaryBall
|
||||||
, ElectricalBall
|
, ElectricalBall 0
|
||||||
, ExplosiveBall
|
, ExplosiveBall
|
||||||
, FlashBall ]]
|
, FlashBall ]]
|
||||||
<> [bulletModule (BulletModEffect x) | x <- [minBound .. maxBound]]
|
<> [bulletModule (BulletModEffect x) | x <- [minBound .. maxBound]]
|
||||||
|
|||||||
@@ -10,8 +10,9 @@ import Data.Aeson
|
|||||||
import Data.Aeson.TH
|
import Data.Aeson.TH
|
||||||
|
|
||||||
data EnergyBallType
|
data EnergyBallType
|
||||||
= FlameletBall {_fbSize :: Float, _fbRot :: Float}
|
= IncendiaryBall
|
||||||
| ElectricalBall
|
| FlameletBall {_fbSize :: Float, _fbRot :: Float}
|
||||||
|
| ElectricalBall {_ebID :: Int}
|
||||||
| ExplosiveBall
|
| ExplosiveBall
|
||||||
| FlashBall
|
| FlashBall
|
||||||
deriving (Eq, Ord, Show, Read) --Generic, Flat)
|
deriving (Eq, Ord, Show, Read) --Generic, Flat)
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
module Dodge.EnergyBall (
|
module Dodge.EnergyBall (
|
||||||
updateEnergyBall,
|
updateEnergyBall,
|
||||||
incBallAt,
|
|
||||||
makeFlashBall,
|
makeFlashBall,
|
||||||
makeFlamelet,
|
makeFlamelet,
|
||||||
makeMovingEB,
|
makeMovingEB,
|
||||||
@@ -48,14 +47,17 @@ updateEnergyBall w eb
|
|||||||
|
|
||||||
ebEffect :: EnergyBall -> World -> World
|
ebEffect :: EnergyBall -> World -> World
|
||||||
ebEffect eb = case _ebEff eb of
|
ebEffect eb = case _ebEff eb of
|
||||||
ElectricalBall ->
|
ElectricalBall i ->
|
||||||
soundContinue (EBSound 0) (_ebPos eb) elecCrackleS (Just 2)
|
soundContinue (EBSound i) (_ebPos eb) elecCrackleS (Just 2)
|
||||||
. randSparkExtraVel
|
. randSparkExtraVel
|
||||||
(_ebVel eb)
|
(_ebVel eb)
|
||||||
ElectricSpark
|
ElectricSpark
|
||||||
(state (randomR (3, 6)))
|
(state (randomR (3, 6)))
|
||||||
(state (randomR (0, 2 * pi)))
|
(state (randomR (0, 2 * pi)))
|
||||||
(_ebPos eb)
|
(_ebPos eb)
|
||||||
|
IncendiaryBall{}
|
||||||
|
| _ebTimer eb == 20 ->
|
||||||
|
soundStart (EBSound (-1)) (_ebPos eb) fireFadeS Nothing
|
||||||
_ -> id
|
_ -> id
|
||||||
|
|
||||||
energyBallAt :: EnergyBallType -> Point2 -> World -> World
|
energyBallAt :: EnergyBallType -> Point2 -> World -> World
|
||||||
@@ -78,9 +80,6 @@ makeMovingEB v ebt p =
|
|||||||
, _ebEff = ebt
|
, _ebEff = ebt
|
||||||
}
|
}
|
||||||
|
|
||||||
incBallAt :: Point2 -> World -> World
|
|
||||||
incBallAt = energyBallAt (FlameletBall 5 0)
|
|
||||||
|
|
||||||
makeFlashBall :: Point2 -> World -> World
|
makeFlashBall :: Point2 -> World -> World
|
||||||
makeFlashBall = energyBallAt FlashBall
|
makeFlashBall = energyBallAt FlashBall
|
||||||
|
|
||||||
@@ -93,8 +92,9 @@ ebFlicker pt
|
|||||||
|
|
||||||
ebColor :: EnergyBall -> Color
|
ebColor :: EnergyBall -> Color
|
||||||
ebColor eb = case eb ^. ebEff of
|
ebColor eb = case eb ^. ebEff of
|
||||||
|
IncendiaryBall{} -> red
|
||||||
FlameletBall{} -> red
|
FlameletBall{} -> red
|
||||||
ElectricalBall -> cyan
|
ElectricalBall{} -> cyan
|
||||||
ExplosiveBall -> yellow
|
ExplosiveBall -> yellow
|
||||||
FlashBall -> white
|
FlashBall -> white
|
||||||
|
|
||||||
@@ -114,7 +114,8 @@ damageCircle sp dt w =
|
|||||||
ebtToDamage :: Point2 -> EnergyBallType -> Damage
|
ebtToDamage :: Point2 -> EnergyBallType -> Damage
|
||||||
ebtToDamage p = \case
|
ebtToDamage p = \case
|
||||||
FlameletBall{} -> Flaming 1
|
FlameletBall{} -> Flaming 1
|
||||||
ElectricalBall -> Electrical 10
|
IncendiaryBall{} -> Flaming 10
|
||||||
|
ElectricalBall{} -> Electrical 10
|
||||||
ExplosiveBall -> Explosive 10 p
|
ExplosiveBall -> Explosive 10 p
|
||||||
FlashBall -> Flashing 10 p
|
FlashBall -> Flashing 10 p
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ import Picture
|
|||||||
drawEnergyBall :: EnergyBall -> Picture
|
drawEnergyBall :: EnergyBall -> Picture
|
||||||
drawEnergyBall eb = case _ebEff eb of
|
drawEnergyBall eb = case _ebEff eb of
|
||||||
FlameletBall x a -> drawFlamelet x a eb
|
FlameletBall x a -> drawFlamelet x a eb
|
||||||
ElectricalBall -> drawStaticBall eb
|
IncendiaryBall -> drawFlamelet 5 0 eb
|
||||||
|
ElectricalBall{} -> drawStaticBall eb
|
||||||
ExplosiveBall -> mempty
|
ExplosiveBall -> mempty
|
||||||
FlashBall -> mempty
|
FlashBall -> mempty
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
-- generated at 2025-06-02 21:04:57.854200257 UTC
|
-- generated at 2025-06-09 10:19:06.449705157 UTC
|
||||||
module Dodge.SoundLogic.ExternallyGeneratedSounds where
|
module Dodge.SoundLogic.ExternallyGeneratedSounds where
|
||||||
import Sound.Data
|
import Sound.Data
|
||||||
soundToVol :: SoundID -> Float
|
soundToVol :: SoundID -> Float
|
||||||
@@ -43,75 +43,76 @@ soundToVol v = case _getSoundID v of
|
|||||||
37 -> 400
|
37 -> 400
|
||||||
38 -> 2000
|
38 -> 2000
|
||||||
39 -> 100
|
39 -> 100
|
||||||
40 -> 50
|
40 -> 300
|
||||||
41 -> 2000
|
41 -> 50
|
||||||
42 -> 50
|
42 -> 2000
|
||||||
43 -> 1000
|
43 -> 50
|
||||||
44 -> 8000
|
44 -> 1000
|
||||||
45 -> 2000
|
45 -> 8000
|
||||||
46 -> 2000
|
46 -> 2000
|
||||||
47 -> 1000
|
47 -> 2000
|
||||||
48 -> 2000
|
48 -> 1000
|
||||||
49 -> 100
|
49 -> 2000
|
||||||
50 -> 40
|
50 -> 100
|
||||||
51 -> 40
|
51 -> 40
|
||||||
52 -> 2000
|
52 -> 40
|
||||||
53 -> 100
|
53 -> 2000
|
||||||
54 -> 500
|
54 -> 100
|
||||||
55 -> 40
|
55 -> 500
|
||||||
56 -> 300
|
56 -> 40
|
||||||
57 -> 300
|
57 -> 300
|
||||||
58 -> 100
|
58 -> 300
|
||||||
59 -> 2000
|
59 -> 100
|
||||||
60 -> 1000
|
60 -> 2000
|
||||||
61 -> 1000
|
61 -> 1000
|
||||||
62 -> 1000
|
62 -> 1000
|
||||||
63 -> 1000
|
63 -> 1000
|
||||||
64 -> 1000
|
64 -> 1000
|
||||||
65 -> 40
|
65 -> 1000
|
||||||
66 -> 50
|
66 -> 40
|
||||||
67 -> 1000
|
67 -> 50
|
||||||
68 -> 500
|
68 -> 1000
|
||||||
69 -> 500
|
69 -> 500
|
||||||
70 -> 100
|
70 -> 500
|
||||||
71 -> 1000
|
71 -> 100
|
||||||
72 -> 20
|
72 -> 1000
|
||||||
73 -> 500
|
73 -> 20
|
||||||
74 -> 300
|
74 -> 500
|
||||||
75 -> 200
|
75 -> 300
|
||||||
76 -> 500
|
76 -> 200
|
||||||
77 -> 1000
|
77 -> 500
|
||||||
78 -> 200
|
78 -> 1000
|
||||||
79 -> 1000
|
79 -> 200
|
||||||
80 -> 2000
|
80 -> 1000
|
||||||
81 -> 500
|
81 -> 2000
|
||||||
82 -> 100
|
82 -> 500
|
||||||
83 -> 1000
|
83 -> 100
|
||||||
84 -> 300
|
84 -> 1000
|
||||||
85 -> 2000
|
85 -> 300
|
||||||
86 -> 2000
|
86 -> 2000
|
||||||
87 -> 100
|
87 -> 2000
|
||||||
88 -> 500
|
88 -> 100
|
||||||
89 -> 2000
|
89 -> 500
|
||||||
90 -> 100
|
90 -> 2000
|
||||||
91 -> 300
|
91 -> 100
|
||||||
92 -> 1000
|
92 -> 300
|
||||||
93 -> 200
|
93 -> 1000
|
||||||
94 -> 100
|
94 -> 200
|
||||||
95 -> 1000
|
95 -> 100
|
||||||
96 -> 2000
|
96 -> 1000
|
||||||
97 -> 1000
|
97 -> 2000
|
||||||
98 -> 100
|
98 -> 1000
|
||||||
99 -> 200
|
99 -> 100
|
||||||
100 -> 500
|
100 -> 200
|
||||||
101 -> 100
|
101 -> 500
|
||||||
102 -> 2000
|
102 -> 100
|
||||||
103 -> 1000
|
103 -> 2000
|
||||||
104 -> 2000
|
104 -> 1000
|
||||||
105 -> 2000
|
105 -> 2000
|
||||||
106 -> 200
|
106 -> 2000
|
||||||
107 -> 100
|
107 -> 200
|
||||||
108 -> 200
|
108 -> 100
|
||||||
|
109 -> 200
|
||||||
_ -> 50
|
_ -> 50
|
||||||
soundToOnomato :: SoundID -> String
|
soundToOnomato :: SoundID -> String
|
||||||
soundToOnomato v = case _getSoundID v of
|
soundToOnomato v = case _getSoundID v of
|
||||||
@@ -155,75 +156,76 @@ soundToOnomato v = case _getSoundID v of
|
|||||||
37 -> "CRNKCRNKCRNK"
|
37 -> "CRNKCRNKCRNK"
|
||||||
38 -> "CHUGUGUG"
|
38 -> "CHUGUGUG"
|
||||||
39 -> "SKWLL"
|
39 -> "SKWLL"
|
||||||
40 -> "HSSS"
|
40 -> "WRRR"
|
||||||
41 -> "BOOM"
|
41 -> "HSSS"
|
||||||
42 -> "HSS"
|
42 -> "BOOM"
|
||||||
43 -> "TAKH"
|
43 -> "HSS"
|
||||||
44 -> "RINGGG"
|
44 -> "TAKH"
|
||||||
45 -> "CRH"
|
45 -> "RINGGG"
|
||||||
46 -> "UGGAUGGA"
|
46 -> "CRH"
|
||||||
47 -> "CRUMPLE"
|
47 -> "UGGAUGGA"
|
||||||
48 -> "CREUH"
|
48 -> "CRUMPLE"
|
||||||
49 -> "SMACK"
|
49 -> "CREUH"
|
||||||
50 -> "CLICK"
|
50 -> "SMACK"
|
||||||
51 -> "TIPTOP"
|
51 -> "CLICK"
|
||||||
52 -> "CRUH"
|
52 -> "TIPTOP"
|
||||||
53 -> "CHNKCHNKCHUNK"
|
53 -> "CRUH"
|
||||||
54 -> "CLKCLK"
|
54 -> "CHNKCHNKCHUNK"
|
||||||
55 -> "TIPTAP"
|
55 -> "CLKCLK"
|
||||||
56 -> "TNKTNKTNK"
|
56 -> "TIPTAP"
|
||||||
57 -> "CHPCHPCHP"
|
57 -> "TNKTNKTNK"
|
||||||
58 -> "SLP"
|
58 -> "CHPCHPCHP"
|
||||||
59 -> "SCREE"
|
59 -> "SLP"
|
||||||
60 -> "DHDHL"
|
60 -> "SCREE"
|
||||||
61 -> "BRAP"
|
61 -> "DHDHL"
|
||||||
62 -> "CRSK"
|
62 -> "BRAP"
|
||||||
63 -> "CRNKL"
|
63 -> "CRSK"
|
||||||
64 -> "TRNKL"
|
64 -> "CRNKL"
|
||||||
65 -> "TAPP"
|
65 -> "TRNKL"
|
||||||
66 -> "SHUHP"
|
66 -> "TAPP"
|
||||||
67 -> "CRUMBL"
|
67 -> "SHUHP"
|
||||||
68 -> "DEDEDUM"
|
68 -> "CRUMBL"
|
||||||
69 -> "TAK"
|
69 -> "DEDEDUM"
|
||||||
70 -> "SPLRT"
|
70 -> "TAK"
|
||||||
71 -> "CRISH"
|
71 -> "SPLRT"
|
||||||
72 -> "SWSH"
|
72 -> "CRISH"
|
||||||
73 -> "BIPBIPBIP"
|
73 -> "SWSH"
|
||||||
74 -> "BEP"
|
74 -> "BIPBIPBIP"
|
||||||
75 -> "CRSKRL"
|
75 -> "BEP"
|
||||||
76 -> "KRTNKL"
|
76 -> "CRSKRL"
|
||||||
77 -> "CRSNK"
|
77 -> "KRTNKL"
|
||||||
78 -> "SHTCK"
|
78 -> "CRSNK"
|
||||||
79 -> "TTRKL"
|
79 -> "SHTCK"
|
||||||
80 -> "UGGAUGGA"
|
80 -> "TTRKL"
|
||||||
81 -> "DUDURAH"
|
81 -> "UGGAUGGA"
|
||||||
82 -> "KKSQWL"
|
82 -> "DUDURAH"
|
||||||
83 -> "CRMPL"
|
83 -> "KKSQWL"
|
||||||
84 -> "BWEP"
|
84 -> "CRMPL"
|
||||||
85 -> "CHUGUGUG"
|
85 -> "BWEP"
|
||||||
86 -> "BANG"
|
86 -> "CHUGUGUG"
|
||||||
87 -> "SLPP"
|
87 -> "BANG"
|
||||||
88 -> "DEDA"
|
88 -> "SLPP"
|
||||||
89 -> "WHSSH"
|
89 -> "DEDA"
|
||||||
90 -> "HNH"
|
90 -> "WHSSH"
|
||||||
91 -> "BWAH"
|
91 -> "HNH"
|
||||||
92 -> "CRUNK"
|
92 -> "BWAH"
|
||||||
93 -> "SQWLTCH"
|
93 -> "CRUNK"
|
||||||
94 -> "DRR"
|
94 -> "SQWLTCH"
|
||||||
95 -> "TRNKL"
|
95 -> "DRR"
|
||||||
96 -> "BRAP"
|
96 -> "TRNKL"
|
||||||
97 -> "BLPCHCH"
|
97 -> "BRAP"
|
||||||
98 -> "SKLE"
|
98 -> "BLPCHCH"
|
||||||
99 -> "ZMM"
|
99 -> "SKLE"
|
||||||
100 -> "WRRR"
|
100 -> "ZMM"
|
||||||
101 -> "FWUMP"
|
101 -> "WRRR"
|
||||||
102 -> "BRAHCHCH"
|
102 -> "FWUMP"
|
||||||
103 -> "BWMP"
|
103 -> "BRAHCHCH"
|
||||||
104 -> "BRPBRPBRP"
|
104 -> "BWMP"
|
||||||
105 -> "WE-OH"
|
105 -> "BRPBRPBRP"
|
||||||
106 -> "THCK"
|
106 -> "WE-OH"
|
||||||
107 -> "FHP"
|
107 -> "THCK"
|
||||||
108 -> "QWLPH"
|
108 -> "FHP"
|
||||||
|
109 -> "QWLPH"
|
||||||
_ -> error "unitialised sound"
|
_ -> error "unitialised sound"
|
||||||
soundPathList :: [String]
|
soundPathList :: [String]
|
||||||
soundPathList =
|
soundPathList =
|
||||||
@@ -267,6 +269,7 @@ soundPathList =
|
|||||||
, "wrench1.CRNKCRNKCRNK.400.wav"
|
, "wrench1.CRNKCRNKCRNK.400.wav"
|
||||||
, "seagullChatter.CHUGUGUG.2000.wav"
|
, "seagullChatter.CHUGUGUG.2000.wav"
|
||||||
, "blood4.SKWLL.100.wav"
|
, "blood4.SKWLL.100.wav"
|
||||||
|
, "fireFade.WRRR.300.wav"
|
||||||
, "foamSprayLoop.HSSS.50.wav"
|
, "foamSprayLoop.HSSS.50.wav"
|
||||||
, "explosion.BOOM.2000.wav"
|
, "explosion.BOOM.2000.wav"
|
||||||
, "foamSprayFadeOut.HSS.50.wav"
|
, "foamSprayFadeOut.HSS.50.wav"
|
||||||
@@ -417,141 +420,143 @@ seagullChatterS :: SoundID
|
|||||||
seagullChatterS = SoundID 38
|
seagullChatterS = SoundID 38
|
||||||
blood4S :: SoundID
|
blood4S :: SoundID
|
||||||
blood4S = SoundID 39
|
blood4S = SoundID 39
|
||||||
|
fireFadeS :: SoundID
|
||||||
|
fireFadeS = SoundID 40
|
||||||
foamSprayLoopS :: SoundID
|
foamSprayLoopS :: SoundID
|
||||||
foamSprayLoopS = SoundID 40
|
foamSprayLoopS = SoundID 41
|
||||||
explosionS :: SoundID
|
explosionS :: SoundID
|
||||||
explosionS = SoundID 41
|
explosionS = SoundID 42
|
||||||
foamSprayFadeOutS :: SoundID
|
foamSprayFadeOutS :: SoundID
|
||||||
foamSprayFadeOutS = SoundID 42
|
foamSprayFadeOutS = SoundID 43
|
||||||
tap2S :: SoundID
|
tap2S :: SoundID
|
||||||
tap2S = SoundID 43
|
tap2S = SoundID 44
|
||||||
tinitusS :: SoundID
|
tinitusS :: SoundID
|
||||||
tinitusS = SoundID 44
|
tinitusS = SoundID 45
|
||||||
seagullCry1S :: SoundID
|
seagullCry1S :: SoundID
|
||||||
seagullCry1S = SoundID 45
|
seagullCry1S = SoundID 46
|
||||||
seagullBarkS :: SoundID
|
seagullBarkS :: SoundID
|
||||||
seagullBarkS = SoundID 46
|
seagullBarkS = SoundID 47
|
||||||
stone3S :: SoundID
|
stone3S :: SoundID
|
||||||
stone3S = SoundID 47
|
stone3S = SoundID 48
|
||||||
seagullCry2S :: SoundID
|
seagullCry2S :: SoundID
|
||||||
seagullCry2S = SoundID 48
|
seagullCry2S = SoundID 49
|
||||||
hit1S :: SoundID
|
hit1S :: SoundID
|
||||||
hit1S = SoundID 49
|
hit1S = SoundID 50
|
||||||
click1S :: SoundID
|
click1S :: SoundID
|
||||||
click1S = SoundID 50
|
click1S = SoundID 51
|
||||||
twoStepSlowS :: SoundID
|
twoStepSlowS :: SoundID
|
||||||
twoStepSlowS = SoundID 51
|
twoStepSlowS = SoundID 52
|
||||||
seagullCryS :: SoundID
|
seagullCryS :: SoundID
|
||||||
seagullCryS = SoundID 52
|
seagullCryS = SoundID 53
|
||||||
crankSlowS :: SoundID
|
crankSlowS :: SoundID
|
||||||
crankSlowS = SoundID 53
|
crankSlowS = SoundID 54
|
||||||
primeS :: SoundID
|
primeS :: SoundID
|
||||||
primeS = SoundID 54
|
primeS = SoundID 55
|
||||||
twoStepS :: SoundID
|
twoStepS :: SoundID
|
||||||
twoStepS = SoundID 55
|
twoStepS = SoundID 56
|
||||||
reloadS :: SoundID
|
reloadS :: SoundID
|
||||||
reloadS = SoundID 56
|
reloadS = SoundID 57
|
||||||
reload1S :: SoundID
|
reload1S :: SoundID
|
||||||
reload1S = SoundID 57
|
reload1S = SoundID 58
|
||||||
slapS :: SoundID
|
slapS :: SoundID
|
||||||
slapS = SoundID 58
|
slapS = SoundID 59
|
||||||
tone440sawtoothS :: SoundID
|
tone440sawtoothS :: SoundID
|
||||||
tone440sawtoothS = SoundID 59
|
tone440sawtoothS = SoundID 60
|
||||||
metal3S :: SoundID
|
metal3S :: SoundID
|
||||||
metal3S = SoundID 60
|
metal3S = SoundID 61
|
||||||
tap3S :: SoundID
|
tap3S :: SoundID
|
||||||
tap3S = SoundID 61
|
tap3S = SoundID 62
|
||||||
glassShat4S :: SoundID
|
glassShat4S :: SoundID
|
||||||
glassShat4S = SoundID 62
|
glassShat4S = SoundID 63
|
||||||
glassShat2S :: SoundID
|
glassShat2S :: SoundID
|
||||||
glassShat2S = SoundID 63
|
glassShat2S = SoundID 64
|
||||||
metal1S :: SoundID
|
metal1S :: SoundID
|
||||||
metal1S = SoundID 64
|
metal1S = SoundID 65
|
||||||
foot3S :: SoundID
|
foot3S :: SoundID
|
||||||
foot3S = SoundID 65
|
foot3S = SoundID 66
|
||||||
pickUpS :: SoundID
|
pickUpS :: SoundID
|
||||||
pickUpS = SoundID 66
|
pickUpS = SoundID 67
|
||||||
stone5S :: SoundID
|
stone5S :: SoundID
|
||||||
stone5S = SoundID 67
|
stone5S = SoundID 68
|
||||||
dededumS :: SoundID
|
dededumS :: SoundID
|
||||||
dededumS = SoundID 68
|
dededumS = SoundID 69
|
||||||
tap1S :: SoundID
|
tap1S :: SoundID
|
||||||
tap1S = SoundID 69
|
tap1S = SoundID 70
|
||||||
blood1S :: SoundID
|
blood1S :: SoundID
|
||||||
blood1S = SoundID 70
|
blood1S = SoundID 71
|
||||||
metal4S :: SoundID
|
metal4S :: SoundID
|
||||||
metal4S = SoundID 71
|
metal4S = SoundID 72
|
||||||
knifeS :: SoundID
|
knifeS :: SoundID
|
||||||
knifeS = SoundID 72
|
knifeS = SoundID 73
|
||||||
computerBeepingS :: SoundID
|
computerBeepingS :: SoundID
|
||||||
computerBeepingS = SoundID 73
|
computerBeepingS = SoundID 74
|
||||||
tone440S :: SoundID
|
tone440S :: SoundID
|
||||||
tone440S = SoundID 74
|
tone440S = SoundID 75
|
||||||
gut6S :: SoundID
|
gut6S :: SoundID
|
||||||
gut6S = SoundID 75
|
gut6S = SoundID 76
|
||||||
smallGlass2S :: SoundID
|
smallGlass2S :: SoundID
|
||||||
smallGlass2S = SoundID 76
|
smallGlass2S = SoundID 77
|
||||||
glassShat1S :: SoundID
|
glassShat1S :: SoundID
|
||||||
glassShat1S = SoundID 77
|
glassShat1S = SoundID 78
|
||||||
disconnectItemS :: SoundID
|
disconnectItemS :: SoundID
|
||||||
disconnectItemS = SoundID 78
|
disconnectItemS = SoundID 79
|
||||||
metal5S :: SoundID
|
metal5S :: SoundID
|
||||||
metal5S = SoundID 79
|
metal5S = SoundID 80
|
||||||
seagullBarkTransformedS :: SoundID
|
seagullBarkTransformedS :: SoundID
|
||||||
seagullBarkTransformedS = SoundID 80
|
seagullBarkTransformedS = SoundID 81
|
||||||
ejectS :: SoundID
|
ejectS :: SoundID
|
||||||
ejectS = SoundID 81
|
ejectS = SoundID 82
|
||||||
blood3S :: SoundID
|
blood3S :: SoundID
|
||||||
blood3S = SoundID 82
|
blood3S = SoundID 83
|
||||||
stone2S :: SoundID
|
stone2S :: SoundID
|
||||||
stone2S = SoundID 83
|
stone2S = SoundID 84
|
||||||
tone440raiseS :: SoundID
|
tone440raiseS :: SoundID
|
||||||
tone440raiseS = SoundID 84
|
tone440raiseS = SoundID 85
|
||||||
seagullChatter1S :: SoundID
|
seagullChatter1S :: SoundID
|
||||||
seagullChatter1S = SoundID 85
|
seagullChatter1S = SoundID 86
|
||||||
bangS :: SoundID
|
bangS :: SoundID
|
||||||
bangS = SoundID 86
|
bangS = SoundID 87
|
||||||
slap1S :: SoundID
|
slap1S :: SoundID
|
||||||
slap1S = SoundID 87
|
slap1S = SoundID 88
|
||||||
dedaS :: SoundID
|
dedaS :: SoundID
|
||||||
dedaS = SoundID 88
|
dedaS = SoundID 89
|
||||||
missileLaunchS :: SoundID
|
missileLaunchS :: SoundID
|
||||||
missileLaunchS = SoundID 89
|
missileLaunchS = SoundID 90
|
||||||
gruntS :: SoundID
|
gruntS :: SoundID
|
||||||
gruntS = SoundID 90
|
gruntS = SoundID 91
|
||||||
sineRaisePitchOneSecS :: SoundID
|
sineRaisePitchOneSecS :: SoundID
|
||||||
sineRaisePitchOneSecS = SoundID 91
|
sineRaisePitchOneSecS = SoundID 92
|
||||||
metal2S :: SoundID
|
metal2S :: SoundID
|
||||||
metal2S = SoundID 92
|
metal2S = SoundID 93
|
||||||
gut5S :: SoundID
|
gut5S :: SoundID
|
||||||
gut5S = SoundID 93
|
gut5S = SoundID 94
|
||||||
slideDoorS :: SoundID
|
slideDoorS :: SoundID
|
||||||
slideDoorS = SoundID 94
|
slideDoorS = SoundID 95
|
||||||
metal6S :: SoundID
|
metal6S :: SoundID
|
||||||
metal6S = SoundID 95
|
metal6S = SoundID 96
|
||||||
autoGunS :: SoundID
|
autoGunS :: SoundID
|
||||||
autoGunS = SoundID 96
|
autoGunS = SoundID 97
|
||||||
oldMachineBootS :: SoundID
|
oldMachineBootS :: SoundID
|
||||||
oldMachineBootS = SoundID 97
|
oldMachineBootS = SoundID 98
|
||||||
blood6S :: SoundID
|
blood6S :: SoundID
|
||||||
blood6S = SoundID 98
|
blood6S = SoundID 99
|
||||||
buzzS :: SoundID
|
buzzS :: SoundID
|
||||||
buzzS = SoundID 99
|
buzzS = SoundID 100
|
||||||
fireLoudS :: SoundID
|
fireLoudS :: SoundID
|
||||||
fireLoudS = SoundID 100
|
fireLoudS = SoundID 101
|
||||||
tap4S :: SoundID
|
tap4S :: SoundID
|
||||||
tap4S = SoundID 101
|
tap4S = SoundID 102
|
||||||
shotgunS :: SoundID
|
shotgunS :: SoundID
|
||||||
shotgunS = SoundID 102
|
shotgunS = SoundID 103
|
||||||
sawtoothFailS :: SoundID
|
sawtoothFailS :: SoundID
|
||||||
sawtoothFailS = SoundID 103
|
sawtoothFailS = SoundID 104
|
||||||
miniS :: SoundID
|
miniS :: SoundID
|
||||||
miniS = SoundID 104
|
miniS = SoundID 105
|
||||||
seagullWhistleS :: SoundID
|
seagullWhistleS :: SoundID
|
||||||
seagullWhistleS = SoundID 105
|
seagullWhistleS = SoundID 106
|
||||||
connectItemS :: SoundID
|
connectItemS :: SoundID
|
||||||
connectItemS = SoundID 106
|
connectItemS = SoundID 107
|
||||||
whiteNoiseFadeInS :: SoundID
|
whiteNoiseFadeInS :: SoundID
|
||||||
whiteNoiseFadeInS = SoundID 107
|
whiteNoiseFadeInS = SoundID 108
|
||||||
gut1S :: SoundID
|
gut1S :: SoundID
|
||||||
gut1S = SoundID 108
|
gut1S = SoundID 109
|
||||||
|
|||||||
Reference in New Issue
Block a user