Exemplo n.º 1
0
class Sun(Weather):
    color = MutateColor(255, 0, 0)

    def draw(self, surface):
        pass
        #pygame.draw.circle(surface, self.color, (10,10), 100 )

    def affect_flowers(self, flowers):
        for flower in flowers:
            flower.photosynthesis(self)
Exemplo n.º 2
0
 def __init__(self, weather=None):
     #self.weather = weather
     self.weather = weather
     self.color = MutateColor(0, 0, 0).sequence("RRR")
     self.desc = "Sun - " + str(self.color)