added speed boon with additional recipe

This commit is contained in:
Lief9100
2020-04-24 18:11:07 -07:00
parent 061d688701
commit 5642174af5
4 changed files with 22 additions and 10 deletions

View File

@@ -38,10 +38,11 @@ class Config(object):
PLAYER_MOVEMENT_SPEED = 14
MONSTER_MOVEMENT_SPEED = 11
# Boon constants
BOON_LIST = ["heal", "harden"]
# Boon and Recipe constants
BOON_LIST = ["heal", "harden", "hurry"]
HEAL_AMOUNT = 20
ARMOR_AMOUNT = 1
SPEED_AMOUNT = 2
# How many pixels to keep as a minimum margin between the characters and the edge of the screen.
LEFT_VIEWPORT_MARGIN = 700