├── LICENSE ├── README.md ├── code ├── groups.py ├── level.py ├── main.py ├── menu.py ├── overlay.py ├── settings.py ├── sky.py ├── soil.py ├── sprites.py ├── support.py ├── timer.py └── transition.py ├── data ├── maps │ └── main.tmx └── tilesets │ ├── grass_tileset.tsx │ ├── hill_tileset.tsx │ ├── house_tileset.tsx │ ├── objects.tsx │ └── soil_tileset.tsx ├── font └── LycheeSoda.ttf └── images ├── animations └── water.png ├── characters ├── rabbit │ ├── axe.png │ ├── hoe.png │ ├── idle.png │ ├── walk.png │ └── water.png └── test 1 │ └── t1.png ├── objects ├── apple.png ├── bed.png ├── flower_0.png ├── flower_1.png ├── flower_2.png ├── flower_3.png ├── flower_4.png ├── log.png ├── merchant.png ├── mushroom_pink.png ├── mushroom_red.png ├── mushrooms_red.png ├── rock.png ├── rock_small.png ├── stump.png ├── stump_small.png ├── sunflower.png ├── tree.png ├── tree_small.png ├── water_lilies.png ├── water_lily.png ├── water_rock.png └── water_rock_small.png ├── overlay ├── axe.png ├── corn.png ├── corn_seed.png ├── hoe.png ├── tomato.png ├── tomato_seed.png ├── water.png └── wood.png ├── plants ├── corn │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── 3.png └── tomato │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── 3.png ├── rain ├── drops │ ├── 0.png │ ├── 1.png │ └── 2.png └── floor │ ├── 0.png │ ├── 1.png │ └── 2.png ├── soil water ├── 0.png ├── 1.png └── 2.png ├── soil ├── b.png ├── bl.png ├── bm.png ├── br.png ├── l.png ├── lm.png ├── lr.png ├── lrb.png ├── lrt.png ├── o.png ├── r.png ├── rm.png ├── soil.png ├── t.png ├── tb.png ├── tbl.png ├── tbr.png ├── tl.png ├── tm.png ├── tr.png └── x.png └── tilesets ├── Tilled_Dirt.png ├── fence_tileset.png ├── grass_tileset.png ├── hill_tileset.png └── house_tileset.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/README.md -------------------------------------------------------------------------------- /code/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/groups.py -------------------------------------------------------------------------------- /code/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/level.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/main.py -------------------------------------------------------------------------------- /code/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/menu.py -------------------------------------------------------------------------------- /code/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/overlay.py -------------------------------------------------------------------------------- /code/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/settings.py -------------------------------------------------------------------------------- /code/sky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/sky.py -------------------------------------------------------------------------------- /code/soil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/soil.py -------------------------------------------------------------------------------- /code/sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/sprites.py -------------------------------------------------------------------------------- /code/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/support.py -------------------------------------------------------------------------------- /code/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/timer.py -------------------------------------------------------------------------------- /code/transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/code/transition.py -------------------------------------------------------------------------------- /data/maps/main.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/maps/main.tmx -------------------------------------------------------------------------------- /data/tilesets/grass_tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/tilesets/grass_tileset.tsx -------------------------------------------------------------------------------- /data/tilesets/hill_tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/tilesets/hill_tileset.tsx -------------------------------------------------------------------------------- /data/tilesets/house_tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/tilesets/house_tileset.tsx -------------------------------------------------------------------------------- /data/tilesets/objects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/tilesets/objects.tsx -------------------------------------------------------------------------------- /data/tilesets/soil_tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/data/tilesets/soil_tileset.tsx -------------------------------------------------------------------------------- /font/LycheeSoda.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/font/LycheeSoda.ttf -------------------------------------------------------------------------------- /images/animations/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/animations/water.png -------------------------------------------------------------------------------- /images/characters/rabbit/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/rabbit/axe.png -------------------------------------------------------------------------------- /images/characters/rabbit/hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/rabbit/hoe.png -------------------------------------------------------------------------------- /images/characters/rabbit/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/rabbit/idle.png -------------------------------------------------------------------------------- /images/characters/rabbit/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/rabbit/walk.png -------------------------------------------------------------------------------- /images/characters/rabbit/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/rabbit/water.png -------------------------------------------------------------------------------- /images/characters/test 1/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/characters/test 1/t1.png -------------------------------------------------------------------------------- /images/objects/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/apple.png -------------------------------------------------------------------------------- /images/objects/bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/bed.png -------------------------------------------------------------------------------- /images/objects/flower_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/flower_0.png -------------------------------------------------------------------------------- /images/objects/flower_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/flower_1.png -------------------------------------------------------------------------------- /images/objects/flower_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/flower_2.png -------------------------------------------------------------------------------- /images/objects/flower_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/flower_3.png -------------------------------------------------------------------------------- /images/objects/flower_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/flower_4.png -------------------------------------------------------------------------------- /images/objects/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/log.png -------------------------------------------------------------------------------- /images/objects/merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/merchant.png -------------------------------------------------------------------------------- /images/objects/mushroom_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/mushroom_pink.png -------------------------------------------------------------------------------- /images/objects/mushroom_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/mushroom_red.png -------------------------------------------------------------------------------- /images/objects/mushrooms_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/mushrooms_red.png -------------------------------------------------------------------------------- /images/objects/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/rock.png -------------------------------------------------------------------------------- /images/objects/rock_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/rock_small.png -------------------------------------------------------------------------------- /images/objects/stump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/stump.png -------------------------------------------------------------------------------- /images/objects/stump_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/stump_small.png -------------------------------------------------------------------------------- /images/objects/sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/sunflower.png -------------------------------------------------------------------------------- /images/objects/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/tree.png -------------------------------------------------------------------------------- /images/objects/tree_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/tree_small.png -------------------------------------------------------------------------------- /images/objects/water_lilies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/water_lilies.png -------------------------------------------------------------------------------- /images/objects/water_lily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/water_lily.png -------------------------------------------------------------------------------- /images/objects/water_rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/water_rock.png -------------------------------------------------------------------------------- /images/objects/water_rock_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/objects/water_rock_small.png -------------------------------------------------------------------------------- /images/overlay/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/axe.png -------------------------------------------------------------------------------- /images/overlay/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/corn.png -------------------------------------------------------------------------------- /images/overlay/corn_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/corn_seed.png -------------------------------------------------------------------------------- /images/overlay/hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/hoe.png -------------------------------------------------------------------------------- /images/overlay/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/tomato.png -------------------------------------------------------------------------------- /images/overlay/tomato_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/tomato_seed.png -------------------------------------------------------------------------------- /images/overlay/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/water.png -------------------------------------------------------------------------------- /images/overlay/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/overlay/wood.png -------------------------------------------------------------------------------- /images/plants/corn/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/corn/0.png -------------------------------------------------------------------------------- /images/plants/corn/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/corn/1.png -------------------------------------------------------------------------------- /images/plants/corn/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/corn/2.png -------------------------------------------------------------------------------- /images/plants/corn/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/corn/3.png -------------------------------------------------------------------------------- /images/plants/tomato/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/tomato/0.png -------------------------------------------------------------------------------- /images/plants/tomato/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/tomato/1.png -------------------------------------------------------------------------------- /images/plants/tomato/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/tomato/2.png -------------------------------------------------------------------------------- /images/plants/tomato/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/plants/tomato/3.png -------------------------------------------------------------------------------- /images/rain/drops/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/drops/0.png -------------------------------------------------------------------------------- /images/rain/drops/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/drops/1.png -------------------------------------------------------------------------------- /images/rain/drops/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/drops/2.png -------------------------------------------------------------------------------- /images/rain/floor/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/floor/0.png -------------------------------------------------------------------------------- /images/rain/floor/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/floor/1.png -------------------------------------------------------------------------------- /images/rain/floor/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/rain/floor/2.png -------------------------------------------------------------------------------- /images/soil water/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil water/0.png -------------------------------------------------------------------------------- /images/soil water/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil water/1.png -------------------------------------------------------------------------------- /images/soil water/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil water/2.png -------------------------------------------------------------------------------- /images/soil/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/b.png -------------------------------------------------------------------------------- /images/soil/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/bl.png -------------------------------------------------------------------------------- /images/soil/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/bm.png -------------------------------------------------------------------------------- /images/soil/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/br.png -------------------------------------------------------------------------------- /images/soil/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/l.png -------------------------------------------------------------------------------- /images/soil/lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/lm.png -------------------------------------------------------------------------------- /images/soil/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/lr.png -------------------------------------------------------------------------------- /images/soil/lrb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/lrb.png -------------------------------------------------------------------------------- /images/soil/lrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/lrt.png -------------------------------------------------------------------------------- /images/soil/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/o.png -------------------------------------------------------------------------------- /images/soil/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/r.png -------------------------------------------------------------------------------- /images/soil/rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/rm.png -------------------------------------------------------------------------------- /images/soil/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/soil.png -------------------------------------------------------------------------------- /images/soil/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/t.png -------------------------------------------------------------------------------- /images/soil/tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tb.png -------------------------------------------------------------------------------- /images/soil/tbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tbl.png -------------------------------------------------------------------------------- /images/soil/tbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tbr.png -------------------------------------------------------------------------------- /images/soil/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tl.png -------------------------------------------------------------------------------- /images/soil/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tm.png -------------------------------------------------------------------------------- /images/soil/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/tr.png -------------------------------------------------------------------------------- /images/soil/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/soil/x.png -------------------------------------------------------------------------------- /images/tilesets/Tilled_Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/tilesets/Tilled_Dirt.png -------------------------------------------------------------------------------- /images/tilesets/fence_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/tilesets/fence_tileset.png -------------------------------------------------------------------------------- /images/tilesets/grass_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/tilesets/grass_tileset.png -------------------------------------------------------------------------------- /images/tilesets/hill_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/tilesets/hill_tileset.png -------------------------------------------------------------------------------- /images/tilesets/house_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clear-code-projects/PyDew/HEAD/images/tilesets/house_tileset.png --------------------------------------------------------------------------------