Explosion damage is correctly applied again. Stacksize decreased from 50 to 20. Relea...
authorSomeone <someone@somenet.org>
Fri, 27 Mar 2020 03:55:34 +0000 (04:55 +0100)
committerSomeone <someone@somenet.org>
Fri, 27 Mar 2020 03:55:34 +0000 (04:55 +0100)
changelog.txt
info.json
prototypes/items.lua
prototypes/projectiles.lua

index 2dda46b363e62b1fffb2948874522ad91647f53f..4ff825539af91b4d41ba8177c705ea655d25f69d 100644 (file)
@@ -1,3 +1,13 @@
+---------------------------------------------------------------------------------------------------
+Version: 0.18.1
+Date: 2020-03-27
+
+  Fixed:
+    - Explosion damage is correctly applied again.
+
+  Changed:
+    - Stacksize decreased from 50 to 20. Its big and chunky, you know. :)
+
 ---------------------------------------------------------------------------------------------------
 Version: 0.18.0
 Date: 2020-01-24
index dac468d2757d03d524bebceb3a89713e38eeab50..c924833f41234a1497871ef0677f31cb82230b05 100644 (file)
--- a/info.json
+++ b/info.json
@@ -1,6 +1,6 @@
 {
     "name": "Waterbomb",
-    "version": "0.18.0",
+    "version": "0.18.1",
     "title": "Waterbomb",
     "author": "someone1337",
     "homepage": "https://git.somenet.org/pub/jan/factorio_Waterbomb.git",
index 2b0bc7e2cf18bfc28bd54ec4a46e6f4509a7ea35..5bfc1c76c28bd6df6af08a5342394b06dfc8753f 100644 (file)
@@ -7,6 +7,6 @@ data:extend({
         subgroup = "equipment",
         order = "a[waterbomb]",
         place_result = "waterbomb",
-        stack_size = 50
+        stack_size = 20
     }
 })
index 713b2d2848ddc83814591e28d6493da5326d1f87..83016e7b4097c643d4898bad2a932526e29990f7 100644 (file)
@@ -4,6 +4,7 @@ data:extend({
         name = "waterbomb-detonation",
         flags = {"not-on-map"},
         acceleration = 0,
+        range = 8,
         action =
         {
             type = "direct",
@@ -16,9 +17,8 @@ data:extend({
                         type = "nested-result",
                         action =
                         {
-                            radius = 1,
                             type = "area",
-                            perimeter = 5,
+                            radius = 6,
                             action_delivery =
                             {
                                 type = "instant",
@@ -36,9 +36,8 @@ data:extend({
                         type = "nested-result",
                         action =
                         {
-                            radius = 1,
                             type = "area",
-                            perimeter = 10,
+                            radius = 14,
                             action_delivery =
                             {
                                 type = "instant",
@@ -63,7 +62,7 @@ data:extend({
             height = 1,
             priority = "high"
         },
-        light = {intensity = 1, size = 4},
+        light = {intensity = 1, size = 8},
         smoke = capsule_smoke,
     }
 })