# HG changeset patch # User Emmanuel Gil Peyrot # Date 1404995702 -7200 # Node ID e992927f07a8f082709ae376cf8f9fdd2f25476d # Parent f0252cf111d875c2f849af3f822f347a48fafb8a Give point items a score even when collected bellow the Point of Collection. diff --git a/pytouhou/game/item.pyx b/pytouhou/game/item.pyx --- a/pytouhou/game/item.pyx +++ b/pytouhou/game/item.pyx @@ -129,7 +129,7 @@ cdef class Item(Element): self._game.modify_difficulty(+30) color = 'yellow' else: - #score = #TODO: find the formula. + score = (728 - int(self.y)) * 100 #TODO: check the formula some more. self._game.modify_difficulty(+3) elif self._type == 3: # bomb