Rename name swapping weather to Breezy

This commit is contained in:
hillexed 2021-02-21 19:50:28 -05:00
parent 067f07e8bb
commit d44f757c7a

View file

@ -244,10 +244,10 @@ class Sun2(Weather):
"weather_message": True "weather_message": True
}) })
class NameSwappyWeather(Weather): class Breezy(Weather):
def __init__(self, game): def __init__(self, game):
self.name = "Literacy" self.name = "Breezy"
self.emoji = "📚" self.emoji = "🎐"
self.activation_chance = 0.05 self.activation_chance = 0.05
def activate(self, game, result): def activate(self, game, result):
@ -335,7 +335,7 @@ def all_weathers():
"Drizzle" : Drizzle, "Drizzle" : Drizzle,
# "Sun 2": Sun2, # "Sun 2": Sun2,
"Feedback": Feedback, "Feedback": Feedback,
"Literacy": NameSwappyWeather, "Breezy": Breezy,
} }
return weathers_dic return weathers_dic