36 lines
704 B
C#
36 lines
704 B
C#
using Godot;
|
|
|
|
namespace GameJamDungeon
|
|
{
|
|
[GlobalClass]
|
|
public partial class EnemyStatInfo : Resource, ICharacterStats
|
|
{
|
|
[Export]
|
|
public double MaximumHP { get; set; }
|
|
|
|
[Export]
|
|
public int BaseAttack { get; set; }
|
|
|
|
[Export]
|
|
public int BaseDefense { get; set; }
|
|
|
|
[Export]
|
|
public double ElementAResistance { get; set; }
|
|
|
|
[Export]
|
|
public double ElementBResistance { get; set; }
|
|
|
|
[Export]
|
|
public double ElementCResistance { get; set; }
|
|
|
|
[Export]
|
|
public double BaseElementADamageBonus { get; set; }
|
|
|
|
[Export]
|
|
public double BaseElementBDamageBonus { get; set; }
|
|
|
|
[Export]
|
|
public double BaseElementCDamageBonus { get; set; }
|
|
}
|
|
}
|