diff --git a/__main__.py b/__main__.py index 9a19b7e..1ecf31f 100644 --- a/__main__.py +++ b/__main__.py @@ -1,6 +1,13 @@ import pygame from random import randint +def fire():#LETS GO GAMBLING + if randint(1,6) == 6: + PlaySound(GunShot) + #remember to add shock + else: + PlaySound(GunBlank) + screenw = 1280 screenh = 1080 yOffset = 0 @@ -55,6 +62,7 @@ while running: spinInc = 0 spinning = False startSpin = False + fire() screen.blit(gun[spinInc][0],(0,0)) diff --git a/sfx/gun-spin.mp3 b/sfx/gun-spin.mp3 index 2fe9310..f40af43 100644 Binary files a/sfx/gun-spin.mp3 and b/sfx/gun-spin.mp3 differ