2022-01-12 10:06:03 +03:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
2022-01-13 23:33:21 +03:00
|
|
|
|
using System;
|
2022-01-13 11:00:37 +03:00
|
|
|
|
using UnityEngine.Events;
|
2022-01-12 10:06:03 +03:00
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
|
|
public class Card : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
[SerializeField] private CardConfig cardConfig;
|
2022-01-13 11:00:37 +03:00
|
|
|
|
|
|
|
|
|
|
2022-01-12 10:06:03 +03:00
|
|
|
|
[Space(3)]
|
|
|
|
|
[HideInInspector] public int number;
|
2022-01-13 11:00:37 +03:00
|
|
|
|
|
2022-01-12 10:06:03 +03:00
|
|
|
|
[Header("DON'T TOUCH THIS! IT STANDART PRESET!")]
|
|
|
|
|
[SerializeField] private GameObject cardObject;
|
|
|
|
|
[SerializeField] private Image picture;
|
|
|
|
|
[SerializeField] private Text nameCard;
|
|
|
|
|
[SerializeField] private Text costTitle;
|
|
|
|
|
[SerializeField] private Text cost;
|
|
|
|
|
[SerializeField] private Text type;
|
|
|
|
|
[SerializeField] private Text quantity;
|
|
|
|
|
|
|
|
|
|
//этот колхоз надо переделать 100 процентов
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void Start()
|
|
|
|
|
{
|
|
|
|
|
picture.sprite = cardConfig.CardCharacteristics.picture;
|
|
|
|
|
var _card = cardConfig.CardCharacteristics;
|
|
|
|
|
picture.sprite = _card.picture;
|
|
|
|
|
nameCard.text = _card.cardName;
|
2022-01-13 23:33:21 +03:00
|
|
|
|
|
|
|
|
|
string[,] allVariables = new string[,] {{ _card.healing.ToString(), "Heal" }, { _card.quantityStamina.ToString(), "Stam" },
|
|
|
|
|
{ _card.damage.ToString(), "Atk" }, { _card.addStamina.ToString(), "AddStam" } };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int _max = 0;
|
|
|
|
|
int _num = 0;
|
|
|
|
|
for (int i = 0; i < allVariables.Length / 2; i++)
|
2022-01-12 10:06:03 +03:00
|
|
|
|
{
|
2022-01-13 23:33:21 +03:00
|
|
|
|
if (_max < Convert.ToInt32(allVariables[i, 0]))
|
|
|
|
|
{
|
|
|
|
|
_max = Convert.ToInt32(allVariables[i, 0]);
|
|
|
|
|
_num = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
costTitle.text = allVariables[_num, 1];
|
|
|
|
|
cost.text = allVariables[_num, 0];
|
|
|
|
|
allVariables[_num, 0] = "-1";
|
|
|
|
|
|
|
|
|
|
_max = -1;
|
|
|
|
|
print(_max);
|
|
|
|
|
for (int i = 0; i < allVariables.Length / 2; i++)
|
2022-01-12 10:06:03 +03:00
|
|
|
|
{
|
2022-01-13 23:33:21 +03:00
|
|
|
|
if (_max < Convert.ToInt32(allVariables[i, 0]))
|
|
|
|
|
{
|
|
|
|
|
_max = Convert.ToInt32(allVariables[i, 0]);
|
|
|
|
|
_num = i;
|
|
|
|
|
}
|
2022-01-12 10:06:03 +03:00
|
|
|
|
}
|
2022-01-13 23:33:21 +03:00
|
|
|
|
if (_max != 0)
|
2022-01-12 10:06:03 +03:00
|
|
|
|
{
|
2022-01-13 23:33:21 +03:00
|
|
|
|
type.text = allVariables[_num, 1];
|
|
|
|
|
quantity.text = allVariables[_num, 0];
|
2022-01-12 10:06:03 +03:00
|
|
|
|
}
|
2022-01-13 23:33:21 +03:00
|
|
|
|
else
|
2022-01-12 10:06:03 +03:00
|
|
|
|
{
|
2022-01-13 23:33:21 +03:00
|
|
|
|
type.text = "";
|
|
|
|
|
quantity.text = "";
|
|
|
|
|
}
|
2022-01-12 10:06:03 +03:00
|
|
|
|
|
2022-01-13 23:33:21 +03:00
|
|
|
|
|
2022-01-13 16:15:53 +03:00
|
|
|
|
|
2022-01-13 23:33:21 +03:00
|
|
|
|
//if (_card.quantityStamina > 0 || _card.quantityHealth == 0)
|
|
|
|
|
//{
|
|
|
|
|
// costTitle.text = "Stam";
|
|
|
|
|
// cost.text = _card.quantityStamina.ToString();
|
|
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// costTitle.text = "Heal";
|
|
|
|
|
// cost.text = _card.quantityHealth.ToString();
|
|
|
|
|
//}
|
|
|
|
|
//if (_card.damage > 0)
|
|
|
|
|
//{
|
|
|
|
|
// type.text = "Atk";
|
|
|
|
|
|
|
|
|
|
// quantity.text = _card.damage.ToString();
|
|
|
|
|
//}
|
|
|
|
|
//else if (_card.healing > 0)
|
|
|
|
|
//{
|
|
|
|
|
// type.text = "Heal";
|
|
|
|
|
|
|
|
|
|
// quantity.text = _card.healing.ToString();
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// type.text = "Stam";
|
|
|
|
|
|
|
|
|
|
// quantity.text = _card.addStamina.ToString();
|
|
|
|
|
//}
|
2022-01-12 10:06:03 +03:00
|
|
|
|
}
|
|
|
|
|
public void OnClick()
|
|
|
|
|
{
|
2022-01-13 16:15:53 +03:00
|
|
|
|
var _card = cardConfig.CardCharacteristics;
|
2022-01-12 10:06:03 +03:00
|
|
|
|
//ВАРНИНГ! НЕ РАБОТАЕТ С КАРТАМИ НА -ЗДОРОВЬЕ!!
|
2022-01-13 16:15:53 +03:00
|
|
|
|
int _stamina = DeckManager.main.stamina;
|
|
|
|
|
if (_card.addStamina > 0)
|
|
|
|
|
{
|
|
|
|
|
DeckManager.main.NewStaminaQuantity(_stamina + _card.addStamina);
|
|
|
|
|
DestroyObject();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-01-12 10:06:03 +03:00
|
|
|
|
if(_stamina >= cardConfig.CardCharacteristics.quantityStamina)
|
|
|
|
|
{
|
2022-01-13 16:15:53 +03:00
|
|
|
|
DeckManager.main.currentCard = cardConfig;
|
|
|
|
|
DeckManager.main.numberCurrentCard = number;
|
2022-01-12 10:06:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DestroyObject()
|
|
|
|
|
{
|
|
|
|
|
Destroy(cardObject);
|
|
|
|
|
//Camera.main.GetComponent<DeckManager>().CardInTable.RemoveAt(number);
|
|
|
|
|
}
|
|
|
|
|
}
|