Skip to content

Commit

Permalink
Add support for Bob's Mods Synthetic Wood
Browse files Browse the repository at this point in the history
  • Loading branch information
AnodeCathode committed Dec 31, 2014
1 parent aa73a1d commit 1ef5810
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
5 changes: 4 additions & 1 deletion data.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
require("prototypes.entities")
require("prototypes.items")
require("prototypes.recipes")
require("prototypes.projectiles")
require("prototypes.projectiles")
if data.raw.item["synthetic-wood"] then
require("prototypes.mod_recipes")
end
4 changes: 2 additions & 2 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Landfill",
"version": "2.1.2",
"version": "2.1.3",
"title": "Landfill",
"author": "GotLag (modified by Rseding91)",
"homepage": "http://www.factorioforums.com/forum/viewtopic.php?f=14&t=4973",
"dependencies": ["base"],
"dependencies": ["base", "? bobplates >= 0.7.5"],
"description": "Use stone to reclaim land and explosions to remove it."
}
16 changes: 16 additions & 0 deletions prototypes/mod_recipes.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
data:extend(
{
{
type = "recipe",
name = "landfill2by2synthetic",
enabled = "true",
ingredients =
{
{"stone", 100},
{"synthetic-wood", 25},
{"stone-wall", 10},
},
result = "landfill2by2"
}
}
)

0 comments on commit 1ef5810

Please sign in to comment.