blob: 5e53ec7fce4b017f31904c1ad88c730c36ae52fc (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
using Godot;
using TheLegendOfGustav.Entities.Actors;
using TheLegendOfGustav.Utils;
namespace TheLegendOfGustav.Entities.Actions;
/// <summary>
/// Ação de ataque físico. Uma ação direcionada que ataca um alvo.
/// </summary>
public partial class MeleeAction : DirectionalAction
{
public MeleeAction(Actor actor, Vector2I offset) : base(actor, offset)
{
}
/// <summary>
/// Ataca o ator na direção da ação.
/// </summary>
public override bool Perform()
{
// Eu te disse que este método seria útil.
Entity potentialTarget = GetTarget();
// Só podemos atacar atores.
if (potentialTarget is not TheLegendOfGustav.Entities.Actors.Actor)
{
return false;
}
Actor target = (Actor)potentialTarget;
// Se não houver um ator na direção, não podemos continuar.
// Isto é uma ação gratuita.
if (target == null) return false;
// não podemos ter dano negativo.
int damage = Actor.Atk - target.Def;
string attackDesc = $"{Actor.DisplayName} ataca {target.DisplayName}";
if (damage > 0)
{
attackDesc += $" e remove {damage} de HP.";
target.Hp -= damage;
}
else
{
attackDesc += $" mas {target.DisplayName} tem músculos de aço.";
}
MessageLogData.Instance.AddMessage(attackDesc);
Actor.Energy -= cost;
return true;
}
}
|