なんらかの理由で、私が作成したメソッドで、最初のパラメーターとして self を入れましたが、それが読み取られません。メソッドを実行しようとすると、'self' 位置引数が必要であると表示されます。
class Monster():
name = "Snake"
health = 100
def decreaseHealth(self):
if health <= 0:
print('Dead')
health -= 4
Monster.decreaseHealth()