现在不是流行道具吗?为什么我没看到?也每个杂货店让买一下,只能从飞机身上扒。
好在敌机也是与时俱进,随身携带的东西也多起来了。
在supply.py的初始函数改为
def __init__(self):
self._layer = 8
self.groups = allgroup, supplygroup
pygame.sprite.Sprite.__init__(self, self.groups)
index = random.randint(0, 3)
self.supply_types = ['BULLET', 'BOMB', 'LIFE', 'POWER']
self.animation = Animation()
if index == 0:
self.images = self.animation.load_image(
'images/supply/bulletsupply.png', 249, 81, 1, 3)
elif index == 1:
self.images = self.animation.load_image(
'images/supply/bombsupply.png', 303, 98, 1, 3)
elif index == 2:
self.images = self.animation.load_image(
'images/supply/lifesupply.png', 303, 98, 1, 3)
else: