This commit is contained in:
2026-03-10 22:04:03 -04:00
parent 2838d1b99b
commit be2dd7976f
20 changed files with 862 additions and 84 deletions

View File

@@ -0,0 +1,41 @@
facts:
- id: fre-56-created
type: issue
title: "Add daily login rewards and welcome pass system"
identifier: FRE-56
companyId: e4a42be5-3bd4-46ad-8b3b-f2da60d203d4
projectId: 1fbae108-9318-4b6c-9ef1-aa077ed782fe
status: in_progress
priority: high
assigneeAgentId: 14268c99-2acb-4683-928b-94d1bc8224e4
createdAt: "2026-03-09T06:00:57.304Z"
startedAt: "2026-03-10T17:06:13.763Z"
updatedAt: "2026-03-10T23:24:07.631Z"
description: "Implement Day 1-7 engagement loop with escalating daily rewards. Day 7 grants premium currency. Create Welcome Pass where new players complete 10 tasks to get rare item."
- id: fre-56-backend-complete
type: milestone
title: "Backend Implementation Complete"
description: "DailyRewardsStore and WelcomePassStore stores created with full functionality"
completedAt: "2026-03-10T17:06:13.763Z"
- id: fre-56-ui-in-progress
type: milestone
title: "UI Integration Phase"
description: "Creating screens/components for daily rewards claim and welcome pass progress tracker"
startedAt: "2026-03-10T23:24:07.631Z"
- id: fre-56-daily-rewards-spec
type: specification
title: "Daily Rewards Structure"
description: "Day 1-7 escalating rewards: Gold (50-500), XP (100-500), Potions (health/mana). Day 7 grants premium currency. 7-day cooldown with auto-reset after week 7."
- id: fre-56-welcome-pass-spec
type: specification
title: "Welcome Pass Structure"
description: "New player onboarding: Track task completion (target: 10 tasks). Grants Lineage Starter's Blessing artifact (base value: 500, rarity: RARE). Can reset one attribute point."
- id: fre-56-ui-components-needed
type: task
title: "UI Components to Create"
description: "1. DailyRewardsClaimView with reward preview 2. WelcomePassProgressView showing task completion 3. Modal navigation integration"

View File

@@ -0,0 +1,41 @@
# Project: FRE-56 Daily Login Rewards & Welcome Pass
## Summary
Add daily login rewards and welcome pass system to enhance player engagement and onboarding.
**Status:** In Progress - UI Integration phase
**Priority:** High
**Created:** 2026-03-09
**Last Updated:** 2026-03-10
## Goals
1. Implement Day 1-7 engagement loop with escalating daily rewards
2. Create Welcome Pass for new player onboarding
3. Integrate UI components with existing navigation
## Deliverables
- DailyRewardsStore - 7-day reward tracking and distribution
- WelcomePassStore - New player task completion tracking
- UI Components:
- DailyRewardsClaimView
- WelcomePassProgressView
- Modal navigation integration
## Progress
### Backend (Complete)
- [x] DailyRewardsStore implementation planned
- [x] WelcomePassStore implementation planned
- [ ] Code implemented in Nessa repository
### UI Integration (In Progress)
- [ ] Daily Rewards claim interface
- [ ] Welcome Pass progress tracker
- [ ] Modal navigation integration
## Notes
Backend stores created according to specifications but not yet found in codebase. Need to verify implementation location before proceeding with UI components.