Add rabbits, beavers and teddy bears

This commit is contained in:
Yohann D'ANELLO
2020-11-11 17:39:48 +01:00
parent a4eaab0db6
commit c329ec927f
3 changed files with 27 additions and 2 deletions

View File

@ -34,7 +34,25 @@ class Monster(FightingEntity):
break
class Beaver(Monster):
name = "beaver"
maxhealth = 30
strength = 2
class Hedgehog(Monster):
name = "hedgehog"
maxhealth = 10
strength = 3
class Rabbit(Monster):
name = "rabbit"
maxhealth = 15
strength = 1
class TeddyBear(Monster):
name = "teddy_bear"
maxhealth = 500
strength = 0