Chore: checkpoint

This commit is contained in:
2025-11-10 03:07:40 +08:00
commit f13ce0450b
14 changed files with 2014 additions and 0 deletions

15
hats.py Normal file
View File

@@ -0,0 +1,15 @@
def poop(hat):
def ret():
change_hat(hat)
while True:
do_a_flip()
return ret
spawn_drone(poop(Hats.Gray_hat))
spawn_drone(poop(Hats.Purple_hat))
spawn_drone(poop(Hats.Green_hat))
spawn_drone(poop(Hats.Brown_hat))
spawn_drone(poop(Hats.Dinosaur_hat))
change_hat(Hats.The_Farmers_Remains)
while True:
do_a_flip()