Fix data model for elemental damage and resistance

This commit is contained in:
2024-09-07 01:07:47 -07:00
parent b478ad39fe
commit 33d282ebfb
7 changed files with 37 additions and 61 deletions

View File

@@ -16,29 +16,5 @@ namespace GameJamDungeon
[Export]
public int BaseDefense { get; set; }
[Export]
public double TelluricResistance { get; set; }
[Export]
public double AeolicResistance { get; set; }
[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; }
}
}