├── .gitignore ├── .prettierrc ├── CLAUDE.md ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── game │ ├── ActivityFeed.tsx │ ├── AgeButton.tsx │ ├── AgeUpButton.tsx │ ├── AgingControls.tsx │ ├── BottomPanel.tsx │ ├── Console.tsx │ ├── GameLayout.tsx │ ├── PerksPanel.tsx │ ├── QuickActions.tsx │ ├── StatsCards.tsx │ ├── StatsPanel.tsx │ ├── TopBar.tsx │ ├── TopPanel.tsx │ ├── UserInfoCard.tsx │ ├── WelcomeScreen.tsx │ └── dialogs │ │ ├── ActionsDialog.tsx │ │ ├── ActivitiesDialog.tsx │ │ ├── BankDialog.tsx │ │ ├── EducationDialog.tsx │ │ ├── HealthDialog.tsx │ │ ├── HousingDialog.tsx │ │ ├── InteractiveEventDialog.tsx │ │ ├── InvestmentsDialog.tsx │ │ ├── JobsDialog.tsx │ │ ├── ProfileDialog.tsx │ │ ├── RelationshipsDialog.tsx │ │ ├── SettingsDialog.tsx │ │ ├── SkillTreeDialog.tsx │ │ ├── SkillsDialog.tsx │ │ ├── StatisticsDialog.tsx │ │ ├── TimelineDialog.tsx │ │ ├── TravelDialog.tsx │ │ └── VehiclesDialog.tsx ├── theme-provider.tsx └── ui │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── progress.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ └── tabs.tsx ├── eslint.config.mjs ├── lib ├── atoms │ └── game-state.ts ├── data │ ├── achievements-expanded.ts │ ├── achievements.ts │ ├── addictions.ts │ ├── businesses.ts │ ├── charity.ts │ ├── countries.ts │ ├── crimes.ts │ ├── crypto.ts │ ├── daily-events.ts │ ├── daily-life-events.ts │ ├── disasters.ts │ ├── education-advanced.ts │ ├── education.ts │ ├── estate.ts │ ├── events.ts │ ├── gambling.ts │ ├── health.ts │ ├── hobbies.ts │ ├── housing.ts │ ├── insurance.ts │ ├── interactive-events-expanded.ts │ ├── interactive-events-themed.ts │ ├── interactive-events.ts │ ├── investments.ts │ ├── jobs.ts │ ├── loans.ts │ ├── marriage-divorce.ts │ ├── mental-health.ts │ ├── names.ts │ ├── npcs.ts │ ├── perks.ts │ ├── pets.ts │ ├── politics.ts │ ├── random-events.ts │ ├── relationships.ts │ ├── reputation.ts │ ├── skill-trees.ts │ ├── skills.ts │ ├── social-media.ts │ ├── stocks.ts │ ├── taxes.ts │ ├── travel.ts │ └── vehicles.ts ├── hooks │ └── use-auto-aging.ts ├── types │ └── index.ts ├── utils.ts └── utils │ ├── achievements.ts │ ├── aging-effects.ts │ ├── auto-aging.ts │ ├── calendar-system.ts │ ├── career-skills.ts │ ├── dice-system.ts │ ├── game-utils.ts │ ├── name-generator.ts │ ├── npc-system.ts │ └── skill-tree-system.ts ├── next.config.js ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── countries.json ├── file.svg ├── globe.svg ├── names.json ├── next.svg ├── vercel.svg └── window.svg └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/.prettierrc -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lifely -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components.json -------------------------------------------------------------------------------- /components/game/ActivityFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/ActivityFeed.tsx -------------------------------------------------------------------------------- /components/game/AgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/AgeButton.tsx -------------------------------------------------------------------------------- /components/game/AgeUpButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/AgeUpButton.tsx -------------------------------------------------------------------------------- /components/game/AgingControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/AgingControls.tsx -------------------------------------------------------------------------------- /components/game/BottomPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/BottomPanel.tsx -------------------------------------------------------------------------------- /components/game/Console.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/Console.tsx -------------------------------------------------------------------------------- /components/game/GameLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/GameLayout.tsx -------------------------------------------------------------------------------- /components/game/PerksPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/PerksPanel.tsx -------------------------------------------------------------------------------- /components/game/QuickActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/QuickActions.tsx -------------------------------------------------------------------------------- /components/game/StatsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/StatsCards.tsx -------------------------------------------------------------------------------- /components/game/StatsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/StatsPanel.tsx -------------------------------------------------------------------------------- /components/game/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/TopBar.tsx -------------------------------------------------------------------------------- /components/game/TopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/TopPanel.tsx -------------------------------------------------------------------------------- /components/game/UserInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/UserInfoCard.tsx -------------------------------------------------------------------------------- /components/game/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/WelcomeScreen.tsx -------------------------------------------------------------------------------- /components/game/dialogs/ActionsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/ActionsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/ActivitiesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/ActivitiesDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/BankDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/BankDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/EducationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/EducationDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/HealthDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/HealthDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/HousingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/HousingDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/InteractiveEventDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/InteractiveEventDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/InvestmentsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/InvestmentsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/JobsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/JobsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/ProfileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/ProfileDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/RelationshipsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/RelationshipsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/SettingsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/SkillTreeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/SkillTreeDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/SkillsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/SkillsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/StatisticsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/StatisticsDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/TimelineDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/TimelineDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/TravelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/TravelDialog.tsx -------------------------------------------------------------------------------- /components/game/dialogs/VehiclesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/game/dialogs/VehiclesDialog.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/atoms/game-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/atoms/game-state.ts -------------------------------------------------------------------------------- /lib/data/achievements-expanded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/achievements-expanded.ts -------------------------------------------------------------------------------- /lib/data/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/achievements.ts -------------------------------------------------------------------------------- /lib/data/addictions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/addictions.ts -------------------------------------------------------------------------------- /lib/data/businesses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/businesses.ts -------------------------------------------------------------------------------- /lib/data/charity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/charity.ts -------------------------------------------------------------------------------- /lib/data/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/countries.ts -------------------------------------------------------------------------------- /lib/data/crimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/crimes.ts -------------------------------------------------------------------------------- /lib/data/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/crypto.ts -------------------------------------------------------------------------------- /lib/data/daily-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/daily-events.ts -------------------------------------------------------------------------------- /lib/data/daily-life-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/daily-life-events.ts -------------------------------------------------------------------------------- /lib/data/disasters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/disasters.ts -------------------------------------------------------------------------------- /lib/data/education-advanced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/education-advanced.ts -------------------------------------------------------------------------------- /lib/data/education.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/education.ts -------------------------------------------------------------------------------- /lib/data/estate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/estate.ts -------------------------------------------------------------------------------- /lib/data/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/events.ts -------------------------------------------------------------------------------- /lib/data/gambling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/gambling.ts -------------------------------------------------------------------------------- /lib/data/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/health.ts -------------------------------------------------------------------------------- /lib/data/hobbies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/hobbies.ts -------------------------------------------------------------------------------- /lib/data/housing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/housing.ts -------------------------------------------------------------------------------- /lib/data/insurance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/insurance.ts -------------------------------------------------------------------------------- /lib/data/interactive-events-expanded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/interactive-events-expanded.ts -------------------------------------------------------------------------------- /lib/data/interactive-events-themed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/interactive-events-themed.ts -------------------------------------------------------------------------------- /lib/data/interactive-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/interactive-events.ts -------------------------------------------------------------------------------- /lib/data/investments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/investments.ts -------------------------------------------------------------------------------- /lib/data/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/jobs.ts -------------------------------------------------------------------------------- /lib/data/loans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/loans.ts -------------------------------------------------------------------------------- /lib/data/marriage-divorce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/marriage-divorce.ts -------------------------------------------------------------------------------- /lib/data/mental-health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/mental-health.ts -------------------------------------------------------------------------------- /lib/data/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/names.ts -------------------------------------------------------------------------------- /lib/data/npcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/npcs.ts -------------------------------------------------------------------------------- /lib/data/perks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/perks.ts -------------------------------------------------------------------------------- /lib/data/pets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/pets.ts -------------------------------------------------------------------------------- /lib/data/politics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/politics.ts -------------------------------------------------------------------------------- /lib/data/random-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/random-events.ts -------------------------------------------------------------------------------- /lib/data/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/relationships.ts -------------------------------------------------------------------------------- /lib/data/reputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/reputation.ts -------------------------------------------------------------------------------- /lib/data/skill-trees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/skill-trees.ts -------------------------------------------------------------------------------- /lib/data/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/skills.ts -------------------------------------------------------------------------------- /lib/data/social-media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/social-media.ts -------------------------------------------------------------------------------- /lib/data/stocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/stocks.ts -------------------------------------------------------------------------------- /lib/data/taxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/taxes.ts -------------------------------------------------------------------------------- /lib/data/travel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/travel.ts -------------------------------------------------------------------------------- /lib/data/vehicles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/data/vehicles.ts -------------------------------------------------------------------------------- /lib/hooks/use-auto-aging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/hooks/use-auto-aging.ts -------------------------------------------------------------------------------- /lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/types/index.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/utils/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/achievements.ts -------------------------------------------------------------------------------- /lib/utils/aging-effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/aging-effects.ts -------------------------------------------------------------------------------- /lib/utils/auto-aging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/auto-aging.ts -------------------------------------------------------------------------------- /lib/utils/calendar-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/calendar-system.ts -------------------------------------------------------------------------------- /lib/utils/career-skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/career-skills.ts -------------------------------------------------------------------------------- /lib/utils/dice-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/dice-system.ts -------------------------------------------------------------------------------- /lib/utils/game-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/game-utils.ts -------------------------------------------------------------------------------- /lib/utils/name-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/name-generator.ts -------------------------------------------------------------------------------- /lib/utils/npc-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/npc-system.ts -------------------------------------------------------------------------------- /lib/utils/skill-tree-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/lib/utils/skill-tree-system.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/next.config.js -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/countries.json -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/names.json -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/public/window.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarboxyDev/lifely/HEAD/tsconfig.json --------------------------------------------------------------------------------