Files

13 lines
256 B
C#
Raw Permalink Normal View History

2026-08-06 14:43:17 -04:00
using UnityEngine;
public class YummyMagnet : YummyBase
{
protected override void ObtainedCallback(Player player)
{
2026-08-27 21:51:28 -04:00
int awarded = Random.Range(1, 15);
player.magnetCount += awarded;
ShowNotification($"{awarded}");
2026-08-06 14:43:17 -04:00
}
}