diff --git a/.tags b/.tags
new file mode 100644
index 0000000000000000000000000000000000000000..e29393c7d4445c46f571ba8041ae73ab1f229f36
--- /dev/null
+++ b/.tags
@@ -0,0 +1,14 @@
+!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
+!_TAG_FILE_SORTED	0	/0=unsorted, 1=sorted, 2=foldcase/
+!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
+!_TAG_PROGRAM_NAME	Exuberant Ctags	//
+!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
+!_TAG_PROGRAM_VERSION	5.8	//
+name	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "name": "arumbalights",$/;"	function	line:2
+version	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "version": "0.14.2",$/;"	function	line:3
+factorio_version	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "factorio_version": "0.14",$/;"	function	line:4
+title	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "title": "Arumba Lights",$/;"	function	line:5
+author	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "author": "Arumba",$/;"	function	line:6
+homepage	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "homepage": "",$/;"	function	line:7
+dependencies	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "dependencies": ["base"],$/;"	function	line:8
+description	E:\Games\Factorio_Web\mods\mods.devel\arumbalights_0.14.2\info.json	/^  "description": "Significantly boosts player and vehicle light radius for better viewing on YouTube"$/;"	function	line:9
diff --git a/data.lua b/data.lua
new file mode 100644
index 0000000000000000000000000000000000000000..76922f0b0d98418f06c05b047b13555cf360eefa
--- /dev/null
+++ b/data.lua
@@ -0,0 +1,43 @@
+data.raw["player"]["player"].light =
+{
+    {
+        intensity = 0.9,
+        size = 150,
+    }
+}
+for _, vehicle in pairs(data.raw["car"]) do
+    vehicle.light =
+    {
+        {
+            intensity = 0.9,
+            size = 150
+        }
+    }
+end
+
+for _, loco in pairs(data.raw["locomotive"]) do
+    loco.front_light =
+    {
+        {
+            intensity = 0.9,
+            size = 150,
+        },
+        {
+            intensity = 0.9,
+            size = 150,
+        }
+    }
+    loco.stand_by_light =
+    {
+        {
+            color = {b=1},
+            shift = {-0.6, -3.5},
+            size = 2,
+            intensity = 0.5
+        },
+        {
+            intensity = 0.9,
+            size = 60,
+        }
+    }
+end
diff --git a/info.json b/info.json
new file mode 100644
index 0000000000000000000000000000000000000000..d0fca7bb526f94a9428974e1c7a2262740a5e5e2
--- /dev/null
+++ b/info.json
@@ -0,0 +1,10 @@
+{
+  "name": "lightingboost",
+  "version": "0.1",
+  "factorio_version": "0.16",
+  "title": "Lighting Boost",
+  "author": "Zandor300",
+  "homepage": "",
+  "dependencies": ["base"],
+  "description": "Significantly boosts player and vehicle light radius."
+}