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

37
farm24.py Normal file
View File

@@ -0,0 +1,37 @@
import solve, utils
import sunflower, mix, pumpkin, cactus, maze
base24 = [
sunflower.growbase(0, 8, 0, 2),
sunflower.grow(0, 8, 2, 8),
]
mixs24 = [
[mix.grow(0, 4, 8, 16)],
[mix.grow(4, 8, 8, 16)],
[mix.grow(0, 4, 16, 24)],
[mix.grow(4, 8, 16, 24)],
[pumpkin.grow(8, 16, 8)],
[pumpkin.grow(16, 8, 8)],
[cactus.grow( 8, 16, 8, 16)],
[cactus.grow(16, 24, 16, 24)],
]
mazes24 = [
[maze.grow( 8, 0, 8)],
[maze.grow(16, 0, 8)],
]
def farm24():
set_world_size(24)
clear()
for maze in mazes24:
utils.spawn(solve.run(maze, 4000))
for mix in mixs24:
utils.spawn(solve.run(mix))
solve.run(base24)()
farm24()