diff --git a/README.md b/README.md
index 9c1a9ee..e69de29 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +0,0 @@
-#LS25-Mod
-Eigenes Ls25-Mod Projekt.
-Entwickelt von Dystroyer8
\ No newline at end of file
diff --git a/modDesc.xml b/modDesc.xml
new file mode 100644
index 0000000..2f97dfd
--- /dev/null
+++ b/modDesc.xml
@@ -0,0 +1,28 @@
+
+
+ Dystroyer8
+ 1.0.0.0
+
+
+ LS25 Mine
+ LS25 Mine
+
+
+
+ Mine production for LS25
+ Minenproduktion für LS25
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/placebles/mine/mine.i3d b/placebles/mine/mine.i3d
new file mode 100644
index 0000000..a03ed21
--- /dev/null
+++ b/placebles/mine/mine.i3d
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/placebles/mine/mine.shapes b/placebles/mine/mine.shapes
new file mode 100644
index 0000000..40a154c
Binary files /dev/null and b/placebles/mine/mine.shapes differ
diff --git a/placebles/mine/mine.xml b/placebles/mine/mine.xml
new file mode 100644
index 0000000..75a4a39
--- /dev/null
+++ b/placebles/mine/mine.xml
@@ -0,0 +1,135 @@
+
+
+
+ $l10n_shopItem_mine
+
+ $l10n_function_mine
+
+ placeables/mine/store_mine.dds
+ 80000
+ 120
+ 1000
+ 0
+ NONE
+ PLACEABLE
+ silos
+
+ placeable
+ buildings
+ silos
+
+ 314112
+ 78848
+ 786432
+ 0
+ 0
+ 0
+
+
+
+ $moddir$placeables/mine/mine.i3d
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/placebles/mine/store_mine.dds b/placebles/mine/store_mine.dds
new file mode 100644
index 0000000..620521c
Binary files /dev/null and b/placebles/mine/store_mine.dds differ
diff --git a/scripts/produktion.lua b/scripts/produktion.lua
new file mode 100644
index 0000000..4af3a02
--- /dev/null
+++ b/scripts/produktion.lua
@@ -0,0 +1,19 @@
+Produktion = {}
+Produktion.timer = 0
+Produktion.interval = 60000
+Produktion.fillType = "PAYDIRT"
+Produktion.amountPerCycle = 1000
+
+function Produktion:load()
+ print("Produktion.lua wurde geladen")
+end
+
+function Produktion:update(dt)
+ Produktion.timer = Produktion.timer + dt
+ if Produktion.timer >= Produktion.interval then
+ print ("Produktion Gestartet")
+ Produktion.timer = 0
+ end
+
+end
+
diff --git a/xml/mineConfig.xml b/xml/mineConfig.xml
new file mode 100644
index 0000000..e69de29