├── .gitignore ├── Dockerfile ├── LICENSE ├── Limon.png ├── README.md ├── cogs ├── assets │ ├── fonts │ │ ├── AcuminProExtraCondBlack.otf │ │ ├── AcuminProExtraCondBold.otf │ │ ├── AcuminProExtraCondSemibold.otf │ │ ├── BeVietnamPro-Bold.ttf │ │ ├── BeVietnamPro-SemiBold.ttf │ │ ├── coolveticaCondensedRG.otf │ │ └── coolveticaRG.otf │ └── yaml_files │ │ ├── job_yamls │ │ ├── fishes.yml │ │ ├── hunts.yml │ │ ├── mines.yml │ │ └── wood.yml │ │ └── market_yamls │ │ ├── basic_items.yml │ │ ├── degrees.yml │ │ └── market.yml ├── commands │ ├── admin │ │ └── images.py │ ├── eco │ │ ├── bank.py │ │ ├── career.py │ │ ├── dailyMoney.py │ │ ├── inventory.py │ │ ├── market.py │ │ ├── repairman.py │ │ ├── sell.py │ │ ├── send.py │ │ └── store.py │ ├── gambles │ │ ├── gambles.py │ │ ├── openBox.py │ │ ├── roulette.py │ │ ├── slot.py │ │ └── up_or_down.py │ ├── general │ │ ├── help.py │ │ ├── report.py │ │ ├── stats.py │ │ ├── suggestion.py │ │ └── user_info.py │ └── jobs │ │ ├── fishing.py │ │ ├── forestry.py │ │ ├── hunting.py │ │ └── mining.py └── utils │ ├── DrawImage │ ├── Draw │ │ ├── bank_ui.py │ │ ├── career_ui.py │ │ ├── send_ui.py │ │ └── user_info_ui.py │ ├── assets.py │ └── functions.py │ ├── buttons.py │ ├── constants.py │ ├── converter.py │ ├── cooldown.py │ ├── database │ ├── admin_db.py │ ├── deletedata.py │ └── fetchdata.py │ ├── downloader.py │ ├── functions.py │ ├── handlers │ ├── error.py │ └── runner.py │ └── transactions.py ├── launcher.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/LICENSE -------------------------------------------------------------------------------- /Limon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/Limon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/README.md -------------------------------------------------------------------------------- /cogs/assets/fonts/AcuminProExtraCondBlack.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/AcuminProExtraCondBlack.otf -------------------------------------------------------------------------------- /cogs/assets/fonts/AcuminProExtraCondBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/AcuminProExtraCondBold.otf -------------------------------------------------------------------------------- /cogs/assets/fonts/AcuminProExtraCondSemibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/AcuminProExtraCondSemibold.otf -------------------------------------------------------------------------------- /cogs/assets/fonts/BeVietnamPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/BeVietnamPro-Bold.ttf -------------------------------------------------------------------------------- /cogs/assets/fonts/BeVietnamPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/BeVietnamPro-SemiBold.ttf -------------------------------------------------------------------------------- /cogs/assets/fonts/coolveticaCondensedRG.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/coolveticaCondensedRG.otf -------------------------------------------------------------------------------- /cogs/assets/fonts/coolveticaRG.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/fonts/coolveticaRG.otf -------------------------------------------------------------------------------- /cogs/assets/yaml_files/job_yamls/fishes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/job_yamls/fishes.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/job_yamls/hunts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/job_yamls/hunts.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/job_yamls/mines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/job_yamls/mines.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/job_yamls/wood.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/job_yamls/wood.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/market_yamls/basic_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/market_yamls/basic_items.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/market_yamls/degrees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/market_yamls/degrees.yml -------------------------------------------------------------------------------- /cogs/assets/yaml_files/market_yamls/market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/assets/yaml_files/market_yamls/market.yml -------------------------------------------------------------------------------- /cogs/commands/admin/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/admin/images.py -------------------------------------------------------------------------------- /cogs/commands/eco/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/bank.py -------------------------------------------------------------------------------- /cogs/commands/eco/career.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/career.py -------------------------------------------------------------------------------- /cogs/commands/eco/dailyMoney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/dailyMoney.py -------------------------------------------------------------------------------- /cogs/commands/eco/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/inventory.py -------------------------------------------------------------------------------- /cogs/commands/eco/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/market.py -------------------------------------------------------------------------------- /cogs/commands/eco/repairman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/repairman.py -------------------------------------------------------------------------------- /cogs/commands/eco/sell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/sell.py -------------------------------------------------------------------------------- /cogs/commands/eco/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/send.py -------------------------------------------------------------------------------- /cogs/commands/eco/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/eco/store.py -------------------------------------------------------------------------------- /cogs/commands/gambles/gambles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/gambles/gambles.py -------------------------------------------------------------------------------- /cogs/commands/gambles/openBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/gambles/openBox.py -------------------------------------------------------------------------------- /cogs/commands/gambles/roulette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/gambles/roulette.py -------------------------------------------------------------------------------- /cogs/commands/gambles/slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/gambles/slot.py -------------------------------------------------------------------------------- /cogs/commands/gambles/up_or_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/gambles/up_or_down.py -------------------------------------------------------------------------------- /cogs/commands/general/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/general/help.py -------------------------------------------------------------------------------- /cogs/commands/general/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/general/report.py -------------------------------------------------------------------------------- /cogs/commands/general/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/general/stats.py -------------------------------------------------------------------------------- /cogs/commands/general/suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/general/suggestion.py -------------------------------------------------------------------------------- /cogs/commands/general/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/general/user_info.py -------------------------------------------------------------------------------- /cogs/commands/jobs/fishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/jobs/fishing.py -------------------------------------------------------------------------------- /cogs/commands/jobs/forestry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/jobs/forestry.py -------------------------------------------------------------------------------- /cogs/commands/jobs/hunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/jobs/hunting.py -------------------------------------------------------------------------------- /cogs/commands/jobs/mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/commands/jobs/mining.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/Draw/bank_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/Draw/bank_ui.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/Draw/career_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/Draw/career_ui.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/Draw/send_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/Draw/send_ui.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/Draw/user_info_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/Draw/user_info_ui.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/assets.py -------------------------------------------------------------------------------- /cogs/utils/DrawImage/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/DrawImage/functions.py -------------------------------------------------------------------------------- /cogs/utils/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/buttons.py -------------------------------------------------------------------------------- /cogs/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/constants.py -------------------------------------------------------------------------------- /cogs/utils/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/converter.py -------------------------------------------------------------------------------- /cogs/utils/cooldown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/cooldown.py -------------------------------------------------------------------------------- /cogs/utils/database/admin_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/database/admin_db.py -------------------------------------------------------------------------------- /cogs/utils/database/deletedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/database/deletedata.py -------------------------------------------------------------------------------- /cogs/utils/database/fetchdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/database/fetchdata.py -------------------------------------------------------------------------------- /cogs/utils/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/downloader.py -------------------------------------------------------------------------------- /cogs/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/functions.py -------------------------------------------------------------------------------- /cogs/utils/handlers/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/handlers/error.py -------------------------------------------------------------------------------- /cogs/utils/handlers/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/handlers/runner.py -------------------------------------------------------------------------------- /cogs/utils/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/cogs/utils/transactions.py -------------------------------------------------------------------------------- /launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/launcher.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdurrahmanCosar/Limon/HEAD/requirements.txt --------------------------------------------------------------------------------