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.
absg/Source/SpaceBattler/Public/UnitInfo.h

78 lines
2.1 KiB

12 months ago
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "UnitInfo.generated.h"
/**
*
*/
UCLASS()
class SPACEBATTLER_API UUnitInfo : public UPrimaryDataAsset
{
GENERATED_BODY()
public:
int32 GetTier() const;
TSubclassOf<AActor> GetCharacterClass() const;
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Information")
12 months ago
FText Name;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (MultiLine = true), Category="Information")
12 months ago
FText Description;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Information")
UTexture2D* Texture2D;
12 months ago
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Stats")
12 months ago
float BaseHP;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Stats")
12 months ago
float Attack;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Stats")
12 months ago
float Cooldown;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Attributes")
12 months ago
bool IsRanged;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Attributes")
bool IsFlying;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Stats")
float Range;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Stats")
float Speed;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Information")
12 months ago
int32 Tier;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Classes")
12 months ago
TSubclassOf<AActor> CharacterClass;
11 months ago
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Melee Info")
TSubclassOf<UDamageType> MeleeDamageType;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Melee Info")
UAnimMontage* MeleeMontage;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Ranged Info")
TSubclassOf<AActor> RangedProjectile;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Ranged Info")
float RangedProjectileSpeed;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Ranged Info")
int32 RangedProjectileAmount;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Ranged Info")
float RangedProjectileDelay;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category="Ranged Info")
UAnimMontage* RangedProjectileMontage;
12 months ago
};