about summary refs log tree commit diff homepage
path: root/brutalmaze/constants.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-01-22 23:29:22 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2018-01-22 23:34:40 +0700
commitd88db7fc051365c0126f65ae119b72486bbf2712 (patch)
treeecbcbc77ee13b05234c912728c359e8cec7ac82b /brutalmaze/constants.py
parent7839f30240b4e9e0469058d40f0276dc3e6a2c19 (diff)
downloadbrutalmaze-d88db7fc051365c0126f65ae119b72486bbf2712.tar.gz
Add disturbing heart beat and give clue of all attacks 0.3.2
Diffstat (limited to 'brutalmaze/constants.py')
-rw-r--r--brutalmaze/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/brutalmaze/constants.py b/brutalmaze/constants.py
index 2f756e6..5e96922 100644
--- a/brutalmaze/constants.py
+++ b/brutalmaze/constants.py
@@ -30,6 +30,7 @@ SFX_SLASH_HERO = resource_filename('brutalmaze', 'soundfx/slash-hero.ogg')
 SFX_SHOT_ENEMY = resource_filename('brutalmaze', 'soundfx/shot-enemy.ogg')
 SFX_SHOT_HERO = resource_filename('brutalmaze', 'soundfx/shot-hero.ogg')
 SFX_MISSED = resource_filename('brutalmaze', 'soundfx/missed.ogg')
+SFX_HEART = resource_filename('brutalmaze', 'soundfx/heart.ogg')
 SFX_LOSE = resource_filename('brutalmaze', 'soundfx/lose.ogg')
 
 UP = (K_UP, K_w)
@@ -73,5 +74,6 @@ ENEMIES = ['Butter', 'Orange', 'Chocolate', 'Chameleon',
 MINW, MAXW = 24, 36
 ENEMY_HP = 3
 HERO_HP = 5
+MIN_BEAT = 526
 BG_COLOR = TANGO['Aluminium'][-1]
 FG_COLOR = TANGO['Aluminium'][0]