VanRtkDbg/Assets/Scripts/CardData.cs

19 lines
388 B
C#
Raw Permalink Normal View History

2022-03-07 22:12:02 -08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "New Card Data", menuName = "Card/Card Data")]
public class CardData : ScriptableObject
{
public new string name;
public string description;
public Sprite artwork;
public int cost;
public int attack;
public int defense;
public CardTag[] cardTags;
}