aboutsummaryrefslogtreecommitdiff
path: root/V3/Objects/Forge.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Objects/Forge.cs')
-rw-r--r--V3/Objects/Forge.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/V3/Objects/Forge.cs b/V3/Objects/Forge.cs
new file mode 100644
index 0000000..1da3970
--- /dev/null
+++ b/V3/Objects/Forge.cs
@@ -0,0 +1,19 @@
+using Microsoft.Xna.Framework;
+
+namespace V3.Objects
+{
+ /// <summary>
+ /// A Forge which can be attacked.
+ /// </summary>
+ public sealed class Forge : AbstractBuilding
+ {
+ public override string Name { get; } = "Schmiede";
+ protected override int MaxRobustness { get; } = 200;
+ public override int Robustness { get; protected set; } = 200;
+ public override int MaxGivesWeapons { get; protected set; } = 10;
+
+ public Forge(Vector2 position, Rectangle size, string textureName, BuildingFace facing) : base(position, size, textureName, facing)
+ {
+ }
+ }
+}