command line virtual plant buddy
Go to file
Marcos Marado 34d1f1be2e botany-view: a new binary giving you a snapshot
python botany-view.py will give you a snapshot look of your garden plot,
showing what is in there. Instead of an interactive curses interface, it
just shows you your plant as it currently is. It's like just taking a
peek through the window, or a picture of your plant to show to your
friends.
2020-04-02 15:35:57 +01:00
art halloween feature and death check fix 2018-10-03 18:53:49 +00:00
.gitignore Plant death is now sadder 2017-05-22 19:06:57 +00:00
LICENSE Add ISC license and code cleanup 2017-03-27 18:28:00 +00:00
README.md Update README.md 2018-06-14 13:20:51 -07:00
botany-view.py botany-view: a new binary giving you a snapshot 2020-04-02 15:35:57 +01:00
botany.py found an oopsie 2019-10-30 23:53:56 +00:00
clear_weekly_users.py Removed debugging and added clear weekly users cronjob 2018-03-11 14:23:00 -07:00
completer.py Add autocompletion for logins in the visit prompt 2018-06-10 12:05:17 +02:00
menu_screen.py clarify growth rate 2019-08-26 16:34:08 +00:00
testsql.py todos updated 2018-06-05 00:02:01 +00:00

README.md

botany

Screencap

by Jake Funke - jifunks@gmail.com - tilde.town/~curiouser - http://jakefunke.online/

A command line, realtime, community plant buddy.

You've been given a seed that will grow into a beautiful plant. Check in and water your plant every 24h to keep it growing. 5 days without water = death. Your plant depends on you and your friends to live!

"We do not 'come into' this world; we come out of it, as leaves from a tree." - Alan Watts

getting started

botany is designed for unix-based systems. Clone into a local directory using $ git clone https://github.com/jifunks/botany.git.

Run with $ python botany.py.

Note - botany.py must initially be run by the user who cloned/unzipped botany.py - this initalizes the shared data file permissions.

Water your seed to get started. You can come and go as you please and your plant continues to grow.

Make sure to come back and water every 24 hours or your plant won't grow.

If your plant goes 5 days without water, it will die! Recruit your friends to water your plant for you!

A once-weekly cron on clear_weekly_users.py should be set up to keep weekly visitors tidy.

features

  • Curses-based menu system, optimized for 80x24 terminal
  • 20+ Species of plants w/ ASCII art for each
  • Persistent aging system that allows your plant to grow even when app is closed
  • Multiplayer! Water your friends plants & see who's visited your garden.
  • Generations: each plant you bring to its full growth potential rewards you with 20% growth speed for the next plant
  • Random and rare mutations can occur at any point in a plant's life
  • SQLite Community Garden of other users' plants (for shared unix servers)
  • Data files are created in the user's home (~) directory, along with a JSON file that can be used in other apps.
    • Data is created for your current plant and harvested plants
{
  "description":"common screaming mature jade plant",
  "generation":1,
  "file_name":"/home/curiouser/.botany/curiouser_plant.dat",
  "owner":"curiouser",
  "species":"jade plant",
  "stage":"mature",
  "age":"24d:2h:16m:19s",
  "rarity":"common",
  "score":955337.0,
  "mutation":"screaming",
  "last_watered":1529007007,
  "is_dead":false
}

to-dos

  • Plant pollination - cross-breed with neighbor plants to unlock second-gen plants
    • Share seeds with other users
  • Global events
    • Server API to have rain storms, heat waves, insects
  • Hybridization, lineage tracking

requirements

  • Unix-based OS (Mac, Linux)
  • Python 2.x
  • Recommended: 80x24 minimum terminal, fixed-width font

credits