You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
19 lines
496 B
C#
19 lines
496 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Player Stats", menuName = "Scriptable Objects/Player Stat", order = 1)]
|
|
public class PlayerStatsSO : ScriptableObject
|
|
{
|
|
[Header("Main")]
|
|
public Sprite[] portraits;
|
|
public string characterName;
|
|
public float maxHealth = 3;
|
|
[Header("Movement")]
|
|
public float walkSpeed = 3;
|
|
public float runSpeed = 5;
|
|
public float jumpForce = 2;
|
|
public float dashForce = 5;
|
|
[Header("Arcana")]
|
|
public float maxArcana = 2;
|
|
public float arcanaRecharge = 1;
|
|
}
|