summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/DSA/Weapon.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/DSA/Weapon.cs')
-rw-r--r--DSACore/Models/Database/DSA/Weapon.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/DSACore/Models/Database/DSA/Weapon.cs b/DSACore/Models/Database/DSA/Weapon.cs
index d6d7999..58a44cd 100644
--- a/DSACore/Models/Database/DSA/Weapon.cs
+++ b/DSACore/Models/Database/DSA/Weapon.cs
@@ -26,27 +26,27 @@ namespace DSACore.Models.Database.DSA
public class MeleeWeapon : Weapon
{
- public string TpKK { get; set; }
- public int INI { get; set; }
- public string MW { get; set; }
-
public MeleeWeapon(string name, string damage, int weight, string weaponTalent, string price) : base(name,
damage, weight, weaponTalent, price)
{
}
+
+ public string TpKK { get; set; }
+ public int INI { get; set; }
+ public string MW { get; set; }
}
public class RangedWeapon : Weapon
{
+ public RangedWeapon(string name, string damage, int weight, string weaponTalent, string price) : base(name,
+ damage, weight, weaponTalent, price)
+ {
+ }
+
public int AtMod { get; set; }
public int KKMod { get; set; }
public string AtReach { get; set; }
public string TpReach { get; set; }
public int LoadTime { get; set; }
-
- public RangedWeapon(string name, string damage, int weight, string weaponTalent, string price) : base(name,
- damage, weight, weaponTalent, price)
- {
- }
}
} \ No newline at end of file