2022-03-07 22:12:02 -08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class CardData : ScriptableObject
|
|
|
|
{
|
|
|
|
public new string name;
|
|
|
|
public string description;
|
|
|
|
|
|
|
|
public Sprite artwork;
|
|
|
|
|
|
|
|
public int cost;
|
|
|
|
public int attack;
|
|
|
|
public int defense;
|
|
|
|
|
2022-03-20 19:42:48 -07:00
|
|
|
public CardTag[] tags;
|
|
|
|
public UnitClass[] unitClasses;
|
|
|
|
public Ability[] abilities;
|
2022-03-07 22:12:02 -08:00
|
|
|
}
|