Skip to content

Commit

Permalink
Merge pull request #44 from JohnTheCoolingFan/dev
Browse files Browse the repository at this point in the history
1.1.27
  • Loading branch information
JohnTheCoolingFan authored Dec 29, 2020
2 parents b966c76 + 2b580d3 commit 55fece8
Show file tree
Hide file tree
Showing 28 changed files with 27 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.27
Date: 29.12.2020
Graphics:
- Updated graphics for MOX reactor and Industrial reactor.
- Added remnants for MOX reactor.
---------------------------------------------------------------------------------------------------
Version: 1.1.26
Date: 24.11.2020
Major Features:
Expand Down
2 changes: 2 additions & 0 deletions data.lua
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)
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 graphics/entity/MOX-reactor/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.
Binary file modified graphics/entity/MOX-reactor/MOX-reactor-lights-color.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 graphics/entity/MOX-reactor/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.
Binary file modified graphics/entity/MOX-reactor/MOX-reactor-pipes.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 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.
Binary file modified graphics/entity/MOX-reactor/hr-MOX-reactor-lights-color.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 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.
Binary file modified graphics/entity/MOX-reactor/hr-MOX-reactor-pipes.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 not shown.
Binary file removed graphics/entity/MOX-reactor/hr-reactor-shadow.png
Binary file not shown.
Binary file removed graphics/entity/MOX-reactor/hr-reactor.png
Binary file not shown.
Binary file not shown.
Binary file removed graphics/entity/MOX-reactor/reactor-shadow.png
Binary file not shown.
Binary file removed graphics/entity/MOX-reactor/reactor.png
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PlutoniumEnergy",
"version": "1.1.26",
"version": "1.1.27",
"title": "Plutonium Energy",
"author": "JohnTheCoolingFan",
"contact": "https://discord.gg/grHVhE2",
Expand Down
18 changes: 18 additions & 0 deletions prototypes/entity/remnants.lua
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)

0 comments on commit 55fece8

Please sign in to comment.