mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
11 lines
258 B
Python
11 lines
258 B
Python
![]() |
spring = "Spring"
|
||
|
summer = "Summer"
|
||
|
fall = "Fall"
|
||
|
winter = "Winter"
|
||
|
|
||
|
not_spring = (summer, fall, winter)
|
||
|
not_summer = (spring, fall, winter)
|
||
|
not_fall = (spring, summer, winter)
|
||
|
not_winter = (spring, summer, fall)
|
||
|
all_seasons = (spring, summer, fall, winter)
|