Add elements
Attempt to block line of sight with walls
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace GameJamDungeon
|
||||
using Godot;
|
||||
|
||||
namespace GameJamDungeon
|
||||
{
|
||||
public interface ICharacterStats
|
||||
{
|
||||
@@ -8,10 +10,28 @@
|
||||
|
||||
public int BaseDefense { get; }
|
||||
|
||||
public double ElementAResistance { get; }
|
||||
[Export]
|
||||
public double TelluricResistance { get; set; }
|
||||
|
||||
public double ElementBResistance { get; }
|
||||
[Export]
|
||||
public double AeolicResistance { get; set; }
|
||||
|
||||
public double ElementCResistance { get; }
|
||||
[Export]
|
||||
public double HydricResistance { get; set; }
|
||||
|
||||
[Export]
|
||||
public double IgneousResistance { get; set; }
|
||||
|
||||
[Export]
|
||||
public double TelluricDamageBonus { get; set; }
|
||||
|
||||
[Export]
|
||||
public double AeolicDamageBonus { get; set; }
|
||||
|
||||
[Export]
|
||||
public double BaseHydricDamageBonus { get; set; }
|
||||
|
||||
[Export]
|
||||
public double IgneousDamageBonus { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user