diff --git a/MyWarcraft/Models/Builders/SuperSlowBuilder.cs b/MyWarcraft/Models/Builders/SuperSlowBuilder.cs
new file mode 100644
index 0000000..9508595
--- /dev/null
+++ b/MyWarcraft/Models/Builders/SuperSlowBuilder.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MyWarcraft.Models.Builders
+{
+ class SuperSlowBuilder : AbstractBuilder
+ {
+ public SuperSlowBuilder()
+ {
+ TimeForEachStep = 500;
+ PercentageBuiltAtEachStep = 5;
+ }
+ }
+}
diff --git a/MyWarcraft/MyWarcraft.csproj b/MyWarcraft/MyWarcraft.csproj
index a5f6211..5019a72 100644
--- a/MyWarcraft/MyWarcraft.csproj
+++ b/MyWarcraft/MyWarcraft.csproj
@@ -72,6 +72,7 @@
+