18 lines
388 B
C#
18 lines
388 B
C#
using UnityEngine;
|
|
|
|
public class CustomGameTempData : MonoBehaviour
|
|
{
|
|
public float normalBerryChance;
|
|
public float poisonBerryChance;
|
|
public float slowBerryChance;
|
|
public float ultraBerryChance;
|
|
public float speedyBerryChance;
|
|
public float randomBerryChance;
|
|
public float antiBerryChance;
|
|
|
|
void Awake()
|
|
{
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|