Skip to content

Commit

Permalink
release for factorio 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
magu5026 committed May 27, 2018
1 parent c2cb717 commit 28e1d65
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 49 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---------------------------------------------------------------------------------------------------
Version: 0.16.1
Date: 27. 05. 2018
Major Features:
- First release v16
---------------------------------------------------------------------------------------------------
Version: 0.15.0
Date: 16. 05. 2017
Major Features:
- First release v15
Empty file removed control.lua
Empty file.
63 changes: 18 additions & 45 deletions data.lua
Original file line number Diff line number Diff line change
@@ -1,46 +1,19 @@
data:extend(
{
{
type = "technology",
name = "belt-immunity-equipment",
icon = "__BeltImmunity__/graphics/belt-immunity-equipment.png",
icon_size = 128,
prerequisites = {"modular-armor"},
effects =
{
{
type = "unlock-recipe",
recipe = "belt-immunity-equipment"
}
},
unit =
{
count = 50,
ingredients = {{"science-pack-1", 1}, {"science-pack-2", 1}},
time = 15
},
order = "g-g-b"
},

{
type = "recipe",
name = "belt-immunity-equipment",
enabled = false,
energy_required = 10,
ingredients =
local bie_tech = table.deepcopy(data.raw['technology']['night-vision-equipment'])
bie_tech.name = "belt-immunity-equipment"
bie_tech.icon = "__BeltImmunity__/graphics/belt-immunity-equipment.png"
bie_tech.effects =
{
{"advanced-circuit", 5},
{"steel-plate", 10}
},
result = "belt-immunity-equipment"
},

})


data.raw["belt-immunity-equipment"]['belt-immunity-equipment'].shape =
{
width = 1,
height = 2,
type = "full"
}
{
type = "unlock-recipe",
recipe = "belt-immunity-equipment"
}
}
bie_tech.order = "g-g-b"


local bie_rec = table.deepcopy(data.raw['recipe']['night-vision-equipment'])
bie_rec.name = "belt-immunity-equipment"
bie_rec.result = "belt-immunity-equipment"


data:extend({bie_tech,bie_rec})
8 changes: 4 additions & 4 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name":"BeltImmunity",
"author":"magu5026",
"version":"0.15.0",
"version":"0.16.1",
"title":"Belt Immunity",
"description":"Add Belt Immunity Equipment.",
"factorio_version":"0.15",
"dependencies": ["base >= 0.15.9"]
}
"factorio_version":"0.16",
"dependencies": ["base"]
}

0 comments on commit 28e1d65

Please sign in to comment.