Skip to content

Commit b7975a9

Browse files
Merge pull request #37 from JohnTheCoolingFan/dev
1.1.19
2 parents 5446503 + 065063f commit b7975a9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

changelog.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 1.1.19
3+
Date: 25.08.2020
4+
Fixes:
5+
- Fixed Plutonium Atomic Artillery shell icon
6+
Balancing:
7+
- Plutonium Atomic Artillery Shell recipe:
8+
Explosive plutonium cannon shell 3 -> 4
9+
Rocket control unit 2 -> 3
10+
---------------------------------------------------------------------------------------------------
211
Version: 1.1.18
312
Date: 21.08.2020
413
Integration:

info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "PlutoniumEnergy",
3-
"version": "1.1.18",
3+
"version": "1.1.19",
44
"title": "Plutonium Energy",
55
"author": "JohnTheCoolingFan",
66
"contact": "https://discord.gg/grHVhE2",

prototypes/item/ammo.lua

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ if mods["AtomicArtillery"] then
33

44
plutonium_atomic_artillery_shell.name = "plutonium-atomic-artillery-shell"
55
plutonium_atomic_artillery_shell.icon = "__PlutoniumEnergy__/graphics/icons/plutonium-atomic-artillery-shell.png"
6+
plutonium_atomic_artillery_shell.icon_size = 64
7+
plutonium_atomic_artillery_shell.icon_mipmaps = 4
68

79
plutonium_atomic_artillery_shell.projectile = "plutonium-atomic-artillery-projectile"
810
plutonium_atomic_artillery_shell.ammo_type.action.action_delivery.starting_speed = 1.1

prototypes/recipe/ammo.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if mods["AtomicArtillery"] then
77

88
plutonium_atomic_artillery_shell.ingredients = {
99
{"plutonium-atomic-bomb", 1},
10-
{"explosive-plutonium-cannon-shell", 3},
11-
{"rocket-control-unit", 2},
10+
{"explosive-plutonium-cannon-shell", 4},
11+
{"rocket-control-unit", 3},
1212
{"radar", 1}
1313
}
1414
plutonium_atomic_artillery_shell.result = "plutonium-atomic-artillery-shell"

0 commit comments

Comments
 (0)