-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from JohnTheCoolingFan/dev
1.1.27
- Loading branch information
Showing
28 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
require("prototypes.item.items") | ||
require('prototypes.entity.remnants') | ||
require("prototypes.entity.entities") | ||
require("prototypes.entity.projectiles") | ||
require("prototypes.recipe.recipes") | ||
require("prototypes.technology.technology") | ||
require("prototypes.categories.fuel-category") | ||
require("prototypes.categories.recipe-category") | ||
|
||
-- TODO: add remnants (MOX reactor) | ||
-- TODO: Support for Schall Uranium Processing (https://mods.factorio.com/mod/PlutoniumEnergy/discussion/5de1876b082e2b000b966564) (https://mods.factorio.com/mod/SchallUraniumProcessing) | ||
-- I have and idea to make PE's recipes similar to SUP's recipes. | ||
-- TODO: Support for SChall Artillery (https://mods.factorio.com/mod/SchallArtillery) |
Binary file modified
BIN
-1.54 KB
(86%)
graphics/entity/MOX-reactor/MOX-reactor-connect-patches-heated.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-3.41 KB
(93%)
graphics/entity/MOX-reactor/hr-MOX-reactor-connect-patches-heated.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4.95 KB
(88%)
graphics/entity/MOX-reactor/hr-MOX-reactor-connect-patches.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-950 Bytes
(98%)
graphics/entity/MOX-reactor/hr-MOX-reactor-pipes-heated.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-400 KB
(54%)
graphics/entity/industrial-reactor/hr-industrial-reactor-A-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-450 KB
(54%)
graphics/entity/industrial-reactor/hr-industrial-reactor-B-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-614 KB
(52%)
graphics/entity/industrial-reactor/hr-industrial-reactor-C-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-113 KB
(55%)
graphics/entity/industrial-reactor/industrial-reactor-A-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-124 KB
(55%)
graphics/entity/industrial-reactor/industrial-reactor-B-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-198 KB
(45%)
graphics/entity/industrial-reactor/industrial-reactor-C-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
require 'util' | ||
|
||
local remnants = {} | ||
|
||
|
||
local MOX_reactor = util.table.deepcopy(data.raw['corpse']['nuclear-reactor-remnants']) | ||
|
||
MOX_reactor.name = 'MOX-reactor-remnants' | ||
MOX_reactor.icon = '__PlutoniumEnergy__/graphics/icons/MOX-reactor.png' | ||
MOX_reactor.animation.filename = '__PlutoniumEnergy__/graphics/entity/MOX-reactor/remnants/MOX-reactor-remnants.png' | ||
MOX_reactor.animation.scale = 0.6 | ||
MOX_reactor.animation.hr_version.filename = '__PlutoniumEnergy__/graphics/entity/MOX-reactor/remnants/hr-MOX-reactor-remnants.png' | ||
MOX_reactor.animation.hr_version.scale = 0.3 | ||
|
||
table.insert(remnants, MOX_reactor) | ||
|
||
|
||
data:extend(remnants) |