├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── LICENSE ├── README.md ├── ai.py ├── bodies_class.py ├── bodies_functions.py ├── config.py ├── crosses.py ├── display_results.py ├── draw_erase.py ├── evolution.py ├── evolution_functions.py ├── global_items.py ├── help_maintenance.py ├── help_text.py ├── images.py ├── images ├── evolution-plant.png ├── icon-plant.png └── plant.png ├── main.py ├── plants.py ├── requirements.txt ├── tips.py └── window_functions.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/kuldev 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/README.md -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/ai.py -------------------------------------------------------------------------------- /bodies_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/bodies_class.py -------------------------------------------------------------------------------- /bodies_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/bodies_functions.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/config.py -------------------------------------------------------------------------------- /crosses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/crosses.py -------------------------------------------------------------------------------- /display_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/display_results.py -------------------------------------------------------------------------------- /draw_erase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/draw_erase.py -------------------------------------------------------------------------------- /evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/evolution.py -------------------------------------------------------------------------------- /evolution_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/evolution_functions.py -------------------------------------------------------------------------------- /global_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/global_items.py -------------------------------------------------------------------------------- /help_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/help_maintenance.py -------------------------------------------------------------------------------- /help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/help_text.py -------------------------------------------------------------------------------- /images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/images.py -------------------------------------------------------------------------------- /images/evolution-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/images/evolution-plant.png -------------------------------------------------------------------------------- /images/icon-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/images/icon-plant.png -------------------------------------------------------------------------------- /images/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/images/plant.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/main.py -------------------------------------------------------------------------------- /plants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/plants.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/requirements.txt -------------------------------------------------------------------------------- /tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/tips.py -------------------------------------------------------------------------------- /window_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kul-sudo/eportal-deprecated/HEAD/window_functions.py --------------------------------------------------------------------------------