cd D:\shadowed-realms-mobile\ShadowedRealmsMobile
# Check current status
git status
# Add all the new and modified files
git add .
# Or add specific files if you prefer:
# git add src/server/ShadowedRealms.API/Services/CombatCalculationEngine.cs
# git add src/server/ShadowedRealms.API/Services/CombatService.cs
# git add src/server/ShadowedRealms.API/appsettings.json
# Commit with descriptive message
git commit -m "feat: Integrate CombatCalculationEngine with complete statistical combat system
- Add CombatCalculationEngine.cs with configurable combat balance
- Update CombatService.cs to use CombatCalculationEngine for battle resolution
- Preserve all existing systems: field interception, march mechanics, dragon integration
- Add rally system support (Standard 6-person + Mega unlimited)
- Implement hospital cascade system (Personal → Alliance → Sanctum → Death)
- Add tier-based casualty priority (higher tiers die last)
- Include VIP 10 and Subscription bonuses for hospital capacity
- Add combat configuration to appsettings.json with T1-T15 tier multipliers
- Maintain anti-pay-to-win balance with skill-based alternatives
- Ready for dependency injection and testing