blob: bc34cb60af9dc9f051387ce52b54b3cc5b56690e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using Godot;
namespace TheLegendOfGustav.Entities.Actors;
/// <summary>
/// Define de forma genérica as características de um ator.
/// </summary>
[GlobalClass]
public partial class ActorDefinition : EntityDefinition
{
[ExportCategory("Visuals")]
// Sprite de morto
[Export]
public Texture2D deathTexture;
[ExportCategory("Mechanics")]
[Export]
public int Speed = 10;
// Estatísticas padrão do ator.
[ExportCategory("Stats")]
[Export]
public int Hp;
[Export]
public int Mp;
[Export]
public int Atk;
[Export]
public int Def;
[Export]
public int Men;
}
|