diff --git a/MrBigsock/Assets/Code/Core/AttackStats.cs b/MrBigsock/Assets/Code/Core/AttackStats.cs
index 1be139202c5ac6703c1234baef021a7487df232a..39cffac40b372ae2f66944dd8a783f5885cb86d0 100644
--- a/MrBigsock/Assets/Code/Core/AttackStats.cs
+++ b/MrBigsock/Assets/Code/Core/AttackStats.cs
@@ -14,27 +14,27 @@ namespace BigSock {
 		/*
 			The damage of the attack.
 		*/
-		public float Damage { get; set; }
+		public float Damage { get; set; } = 1f;
 
 		/*
 			The knockback of the attack.
 		*/
-		public float Knockback { get; set; }
+		public float Knockback { get; set; } = 1f;
 
 		/*
 			The range of the attack.
 		*/
-		public float Range { get; set; }
+		public float Range { get; set; } = 1f;
 
 		/*
 			The projectile speed of the attack.
 		*/
-		public float ProjectileSpeed { get; set; }
+		public float ProjectileSpeed { get; set; } = 1f;
 
 		/*
 			The attack speed of the attack.
 		*/
-		public float AttackSpeed { get; set; }
+		public float AttackSpeed { get; set; } = 1f;
 
 		/*
 			The source of the attack.