Skip to content

Commit 8f4c411

Browse files
Merge pull request #33 from JohnTheCoolingFan/dev
1.1.16
2 parents f9fff65 + d7e39c6 commit 8f4c411

27 files changed

+42
-20
lines changed

changelog.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
---------------------------------------------------------------------------------------------------
2+
Version: 1.1.16
3+
Date: 15.08.2020
4+
Minor Features:
5+
- Icon sprites are now mipmaps and 64x64 max size
6+
Graphics:
7+
- Fixed MOX reactor's heat pipes texture misalignment
8+
---------------------------------------------------------------------------------------------------
29
Version: 1.1.15
310
Date: 15.08.2020
411
Minor Features:

data.lua

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ require("prototypes.categories.recipe-category")
99
-- TODO: Support for Schall Uranium Processing (https://mods.factorio.com/mod/PlutoniumEnergy/discussion/5de1876b082e2b000b966564) (https://mods.factorio.com/mod/SchallUraniumProcessing)
1010
-- I have and idea to make PE's recipes similar to SUP's recipes.
1111
-- TODO: Support for SChall Artillery (https://mods.factorio.com/mod/SchallArtillery)
12-
-- TODO: Remake icons for x64 size
Loading
Loading
426 Bytes
Loading
Loading
10 KB
Loading

graphics/icons/MOX-fuel.png

10.6 KB
Loading

graphics/icons/MOX-reactor.png

-2.78 KB
Loading
Loading
Loading

graphics/icons/industrial-reactor.png

-588 Bytes
Loading
-5.85 KB
Loading

graphics/icons/plutonium-238.png

-6.61 KB
Loading
10.3 KB
Loading

graphics/icons/plutonium-239.png

-4.63 KB
Loading
Loading
-8.32 KB
Loading
-8.71 KB
Loading
-7.83 KB
Loading
Loading

graphics/icons/used-up-MOX-fuel.png

-4.45 KB
Loading

info.json

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

prototypes/entity/entities.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
require "util"
22
local entities = {}
33

4-
-- TODO: Fix heated reactor graphics
54
local MOX_reactor = util.table.deepcopy(data.raw["reactor"]["nuclear-reactor"])
65

76
MOX_reactor.name = "MOX-reactor"
87
MOX_reactor.icon = "__PlutoniumEnergy__/graphics/icons/MOX-reactor.png"
9-
MOX_reactor.icon_size = 32
8+
MOX_reactor.icon_size = 64
9+
MOX_reactor.icon_mipmaps = 4
1010
MOX_reactor.minable.result = "MOX-reactor"
1111
MOX_reactor.max_health = 400
1212

@@ -108,7 +108,8 @@ local industrial_reactor = util.table.deepcopy(data.raw["assembling-machine"]["c
108108

109109
industrial_reactor.name = "industrial-reactor"
110110
industrial_reactor.icon = "__PlutoniumEnergy__/graphics/icons/industrial-reactor.png"
111-
industrial_reactor.icon_size = 32
111+
industrial_reactor.icon_size = 64
112+
industrial_reactor.icon_mipmaps = 4
112113
industrial_reactor.minable.result = "industrial-reactor"
113114

114115
industrial_reactor.crafting_categories = {"alpha-decay", "nucleosynthesis", "excess-neutron-capture"}

prototypes/item/ammo.lua

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ data:extend({
1515
type = "ammo",
1616
name = "plutonium-rounds-magazine",
1717
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-rounds-magazine.png",
18-
icon_size = 32,
18+
icon_size = 64,
19+
icon_mipmaps = 4,
1920
flags = {},
2021
ammo_type = {
2122
category = "bullet",
@@ -49,7 +50,8 @@ data:extend({
4950
type = "ammo",
5051
name = "plutonium-cannon-shell",
5152
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-cannon-shell.png",
52-
icon_size = 32,
53+
icon_size = 64,
54+
icon_mipmaps = 4,
5355
flags = {},
5456
ammo_type = {
5557
category = "cannon-shell",
@@ -78,7 +80,8 @@ data:extend({
7880
type = "ammo",
7981
name = "explosive-plutonium-cannon-shell",
8082
icon = "__PlutoniumEnergy__/graphics/icons/explosive-plutonium-cannon-shell.png",
81-
icon_size = 32,
83+
icon_size = 64,
84+
icon_mipmaps = 4,
8285
flags = {},
8386
ammo_type = {
8487
category = "cannon-shell",
@@ -107,7 +110,8 @@ data:extend({
107110
type = "ammo",
108111
name = "plutonium-atomic-bomb",
109112
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-atomic-bomb.png",
110-
icon_size = 32,
113+
icon_size = 64,
114+
icon_mipmaps = 4,
111115
flags = {},
112116
ammo_type = {
113117
range_modifier = 5,

prototypes/item/items.lua

+12-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ data:extend({
66
type = "item",
77
name = "PE-plutonium-239",
88
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-239.png",
9-
icon_size = 32,
9+
icon_size = 64,
10+
icon_mipmaps = 4,
1011
flags = {},
1112
subgroup = "intermediate-product",
1213
order = "g[plutonium-239]",
@@ -16,7 +17,8 @@ data:extend({
1617
type = "item",
1718
name = "PE-plutonium-238",
1819
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-238.png",
19-
icon_size = 32,
20+
icon_size = 64,
21+
icon_mipmaps = 4,
2022
flags = {},
2123
subgroup = "intermediate-product",
2224
order = "g[plutonium-238]",
@@ -28,7 +30,8 @@ data:extend({
2830
type = "item",
2931
name = "MOX-fuel",
3032
icon = "__PlutoniumEnergy__/graphics/icons/MOX-fuel.png",
31-
icon_size = 32,
33+
icon_size = 64,
34+
icon_mipmaps = 4,
3235
flags = {},
3336
subgroup = "intermediate-product",
3437
order = "r[uranium-processing]-b[MOX-fuel]",
@@ -41,7 +44,8 @@ data:extend({
4144
type = "item",
4245
name = "used-up-MOX-fuel",
4346
icon = "__PlutoniumEnergy__/graphics/icons/used-up-MOX-fuel.png",
44-
icon_size = 32,
47+
icon_size = 64,
48+
icon_mipmaps = 4,
4549
flags = {},
4650
subgroup = "intermediate-product",
4751
order = "i[used-up-MOX-fuel]",
@@ -53,7 +57,8 @@ data:extend({
5357
type = "item",
5458
name = "MOX-reactor",
5559
icon = "__PlutoniumEnergy__/graphics/icons/MOX-reactor.png",
56-
icon_size = 32,
60+
icon_size = 64,
61+
icon_mipmaps = 4,
5762
flags = {},
5863
subgroup = "energy",
5964
order = "f[nuclear-energy]-b[MOX-reactor]",
@@ -64,7 +69,8 @@ data:extend({
6469
type = "item",
6570
name = "industrial-reactor",
6671
icon = "__PlutoniumEnergy__/graphics/icons/industrial-reactor.png",
67-
icon_size = 32,
72+
icon_size = 64,
73+
icon_mipmaps = 4,
6874
flags = {},
6975
subgroup = "production-machine",
7076
order = "g[industrial-reactor]",

prototypes/recipe/recipes.lua

+10-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ local advanced_nuclear_fuel_reprocessing = util.table.deepcopy(data.raw["recipe"
2525

2626
advanced_nuclear_fuel_reprocessing.name = "advanced-nuclear-fuel-reprocessing"
2727
advanced_nuclear_fuel_reprocessing.icon = "__PlutoniumEnergy__/graphics/icons/advanced-nuclear-fuel-reprocessing.png"
28-
advanced_nuclear_fuel_reprocessing.icon_size = 32
28+
advanced_nuclear_fuel_reprocessing.icon_size = 64
29+
advanced_nuclear_fuel_reprocessing.icon_mipamps = 4
2930

3031
advanced_nuclear_fuel_reprocessing.enabled = false
3132

@@ -51,7 +52,8 @@ data:extend({
5152
category = "nucleosynthesis",
5253
ingredients = {{"uranium-238", 10}},
5354
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-238-nucleosynthesis.png",
54-
icon_size = 32,
55+
icon_size = 64,
56+
icon_mipmaps = 4,
5557
subgroup = "raw-material",
5658
order = "l[plutonium-238-nuclesynthesis]",
5759
results = {
@@ -69,7 +71,8 @@ data:extend({
6971
category = "alpha-decay",
7072
ingredients = {{"PE-plutonium-239", 5}},
7173
icon = "__PlutoniumEnergy__/graphics/icons/plutonium-239-alpha-decay.png",
72-
icon_size = 32,
74+
icon_size = 64,
75+
icon_mipmaps = 4,
7376
subgroup = "raw-material",
7477
order = "m[plutonium-239-decay]",
7578
results = {
@@ -87,7 +90,8 @@ data:extend({
8790
category = "excess-neutron-capture",
8891
ingredients = {{"uranium-238", 10}},
8992
icon = "__PlutoniumEnergy__/graphics/icons/uranium-238-excess-neutron-capture.png",
90-
icon_size = 32,
93+
icon_size = 64,
94+
icon_mipmaps = 4,
9195
subgroup = "raw-material",
9296
order = "m[excess-neutron-capture]",
9397
results = {
@@ -116,7 +120,8 @@ data:extend({
116120
category = "centrifuging",
117121
ingredients = {{"used-up-MOX-fuel", 5}},
118122
icon = "__PlutoniumEnergy__/graphics/icons/MOX-fuel-reprocessing.png",
119-
icon_size = 32,
123+
icon_size = 64,
124+
icon_mipmaps = 4,
120125
subgroup = "intermediate-product",
121126
order = "r[uranium-processing]-e[MOX-fuel-reprocessing]",
122127
main_product = "",

0 commit comments

Comments
 (0)