You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
549 B
22 lines
549 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
[CreateAssetMenu (fileName="New Card", menuName="Card", order=1)] |
|
public class CardScriptableObject : ScriptableObject |
|
{ |
|
[Header("Card Description")] |
|
public string cardName; |
|
[TextArea] |
|
public string actionDescription; |
|
public string cardLore; |
|
|
|
[Header("Card Stats")] |
|
public int currentHealth; |
|
public int attackPower; |
|
public int manaCost; |
|
|
|
[Header("Card Image")] |
|
public Sprite characterSprite; |
|
public Sprite bgSprite; |
|
}
|
|
|