An open API service indexing awesome lists of open source software.

https://github.com/britalmeida/project_loose

Game submission for the PlayJam5!
https://github.com/britalmeida/project_loose

gamejam-2024 playdate

Last synced: 28 days ago
JSON representation

Game submission for the PlayJam5!

Awesome Lists containing this project

README

          

# Froggotten Recipes

![Game art showing Froggo and title](promo/website_header.png?raw=true)

Froggotten Recipes is a smol [Playdate](https://play.date) game made by a group of friends for a game jam.

The jam was (PlayJam5(https://itch.io/jam/playjam-5)) and the theme was: 'You Forgot Something'.

We took an extra weekend after the jam to develop it a 'lil further which was - of course - a total trap.
We've ended up with a totally new version and (maybe) learned something about feature creep.

## Full Game Version
**To play the totally new version** with new mechanics, art, soundfx, sleep, and an equally grumpy frog, see the [new itch.io page](https://iralmeida.itch.io/froggotten-recipes) or πŸ₯...

**play it right from [Playdate's Catalog](https://play.date/games/froggotten-recipes/)!**
We're happy to have our game published on 8th Dec 2025 πŸΈπŸŽ‰

### Source Files
This git branch has the [full game source files](https://github.com/britalmeida/project_loose/tree/main).

### License
The game source bundle is available under CC BY 4.0.
The code is available under the MIT license.
We are more than happy that our source bundle is tinkered with for learning and used as a base for new games. Check the [LICENSE file](LICENSE).

## Jam Version
If you're curious, you can see the [game as it was for the game jam](https://github.com/britalmeida/project_loose/releases/tag/improved_jam) with the source files on the [jam branch](https://github.com/britalmeida/project_loose/tree/jam_version).
**To play the improved jam version**, see the [itch.io page](https://iralmeida.itch.io/froggotten-recipes-jam).

## Running the Game
The game can be played on a Playdate or simulator.
See instructions in the [itch.io page](https://iralmeida.itch.io/froggotten-recipes).

## Dev Setup

Either **manually** run the `pdc` compiler and the simulator, or use **VSCode** as interface for git, code and launching the simulator.

1. **Download the PlaydateSDK** to run the simulator and the compiler.
https://play.date/dev/

2. **Set environment variables**

(Optional) to run the compiler from the terminal

e.g. on `~/.bashrc`:
```
# Playdate
export PLAYDATE_SDK_PATH="$HOME/stuff/PlaydateSDK"
export PATH="$PLAYDATE_SDK_PATH/bin:$PATH"
```

3. **Setup VSCode**

- Install **VSCode extensions**
- Playdate (`midouest.playdate-debug`) - package the game and run in the simulator from the IDE.
- Lua (`sumneko.lua`) - syntax highlighting and language support for Lua.

- Add the SDK Path to the settings in the `.code-workspace` file
```
"settings": {
"playdate-debug.sdkPath": "/Users/stuff/PlaydateSDK",
}
```

4. **Workflow**

Open the project folder in VSCode.
Press F5, the playdate simulator should appear.
From the simulator, the game can be uploaded to a physical console.