You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
646 B
C#
26 lines
646 B
C#
2 months ago
|
using D2D.Animations;
|
||
|
using D2D.Databases;
|
||
|
using D2D.Utilities;
|
||
|
using D2D.Core;
|
||
|
using UnityEngine;
|
||
|
using static D2D.Utilities.SettingsFacade;
|
||
|
using static D2D.Utilities.CommonLazyFacade;
|
||
|
using static D2D.Utilities.CommonGameplayFacade;
|
||
|
|
||
|
namespace D2D.Gameplay
|
||
|
{
|
||
|
public class Coin : Collectable
|
||
|
{
|
||
|
[SerializeField] private int _cost = 1;
|
||
|
[SerializeField] private GameObject _pickEffect;
|
||
|
|
||
|
protected override void OnPick(GameObject owner)
|
||
|
{
|
||
|
// Add money bonus
|
||
|
_db.Money.Value += _cost;
|
||
|
|
||
|
// Some sparks, etc
|
||
|
_pickEffect.On();
|
||
|
}
|
||
|
}
|
||
|
}
|