Skip to content

Releases: imerr/LD38

Release

23 Apr 23:22
Compare
Choose a tag to compare

LD Post here

The newest, shiniest, most modern simulator in fish breeding has arrived!

Get overwhelmed by stunning graphics, realism and uncountable² variety!

Supports up to 7 fish types! Featuring 2 plants!

² may be exaggerated

This is my entry for "A small world", it isnt an action laden game at all. It's more of a relaxing, poking fish type game, if you know what I'm on about.

There is no end goal and you can only lose if you get yourself cornered with everything dead and no money to buy more fish.

Tips:

  • Clicking controls everything
  • Fish are lazy and may need some encouragement to eat (poke them into the food) or to breed (poke fed fish into each other)
  • Don't forget to clean the poop
  • Clams take damage at 30% pollution, whereas fish at 50%

Linux support: I've included a prebuilt, untested binary

Building is easy though:

# install gcc and make
apt-get install -y gcc make cmake
# clone my git repo:
git clone git://github.com/imerr/LD38.git imer_LD38
cd imer_LD38
# initialize submodules
git submodule init
git submodule update
cd engine
git submodule init
git submodule update
cd ..
mkdir build
cd build
# generate makefile
 cmake -G"Unix Makefiles" ..-DCMAKE_BUILD_TYPE=Release
# build
make