Add duty free systems and travel stage updates

This commit is contained in:
jongjae0305
2026-07-09 02:50:48 +09:00
parent 445d74d462
commit 750e9ce0a6
340 changed files with 21825 additions and 1197 deletions
+4 -10
View File
@@ -151,16 +151,14 @@ public class ItemFeedbackEffect : MonoBehaviour
{
if(blockedDamage)
{
return itemType == GameManager.TutorialItemType.InvincibleRamen ? "SAFE" : "BLOCK";
return "SAFE";
}
switch(itemType)
{
case GameManager.TutorialItemType.InvincibleRamen:
return "SAFE";
case GameManager.TutorialItemType.Shield:
return "SHIELD";
case GameManager.TutorialItemType.SpeedShoes:
case GameManager.TutorialItemType.EnergyDrink:
return "SPEED";
case GameManager.TutorialItemType.MileageCard:
return "x2";
@@ -174,18 +172,14 @@ public class ItemFeedbackEffect : MonoBehaviour
{
if(blockedDamage)
{
return itemType == GameManager.TutorialItemType.InvincibleRamen
? new Color(1f, 0.76f, 0.24f, 1f)
: new Color(0.36f, 0.82f, 1f, 1f);
return new Color(1f, 0.76f, 0.24f, 1f);
}
switch(itemType)
{
case GameManager.TutorialItemType.InvincibleRamen:
return new Color(1f, 0.58f, 0.12f, 1f);
case GameManager.TutorialItemType.Shield:
return new Color(0.32f, 0.78f, 1f, 1f);
case GameManager.TutorialItemType.SpeedShoes:
case GameManager.TutorialItemType.EnergyDrink:
return new Color(0.35f, 1f, 0.5f, 1f);
case GameManager.TutorialItemType.MileageCard:
return new Color(1f, 0.92f, 0.26f, 1f);