削弱土豆雷攻击范围

This commit is contained in:
星外之神 2022-05-06 13:32:08 +08:00
parent 05d7ad2adb
commit 1e28521f66

View File

@ -592,7 +592,7 @@ class PotatoMine(Plant):
self.is_init = True
self.init_timer = 0
self.bomb_timer = 0
self.explode_x_range = c.GRID_X_SIZE
self.explode_x_range = c.GRID_X_SIZE / 2
def loadImages(self, name, scale):
self.init_frames = []
@ -621,7 +621,7 @@ class PotatoMine(Plant):
def canAttack(self, zombie):
if (not self.is_init and zombie.rect.right >= self.rect.x and (not zombie.lostHead) and
(abs(zombie.rect.x - self.rect.x) <= self.explode_x_range * 0.7)):
(abs(zombie.rect.x - self.rect.x) <= self.explode_x_range)):
return True
return False