This commit is contained in:
Horoli 2025-12-05 17:10:28 +09:00
parent d7cd938403
commit df33a78e4f
2 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ class BattleConfig {
static const IconData defendIcon = Icons.shield; static const IconData defendIcon = Icons.shield;
// Colors // Colors
static const Color riskyColor = Colors.redAccent; static const Color riskyColor = Colors.orangeAccent;
static const Color normalColor = Colors.orangeAccent; static const Color normalColor = Colors.white;
static const Color safeColor = Colors.grey; static const Color safeColor = Colors.grey;
static const Color defendRiskyColor = Colors.deepPurpleAccent; static const Color defendRiskyColor = Colors.deepPurpleAccent;

View File

@ -31,7 +31,7 @@ class BattleAnimationWidgetState extends State<BattleAnimationWidget>
_scaleAnimation = Tween<double>( _scaleAnimation = Tween<double>(
begin: 1.0, begin: 1.0,
end: 1.2, end: 2.0,
).animate(CurvedAnimation(parent: _scaleController, curve: Curves.easeOut)); ).animate(CurvedAnimation(parent: _scaleController, curve: Curves.easeOut));
// Default translation, will be updated on animateAttack // Default translation, will be updated on animateAttack