Example #1
0
 public override void HitCollectible(BaseCollectible collectible)
 {
     Player.Collect(collectible);
     Player.Mood += PlayerSign * collectible.MoodModifier;
     GameController.Instance.IncreaseTime(collectible.TimeModifier);
     collectible.Collect();
     Player.PlayerSounds.CatchSound(IsFish);
 }