summaryrefslogtreecommitdiff
path: root/craft_overrides/extracompost.lua
blob: 7795e497c35b7e56f6c88d70b7cc0e812198590f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
local compostables = {
	"underch:green_mushroom",
	"default:apple",
	"farming:eggplant",
	"ethereal:fern_tubers",
	"farming:parsley",
	"farming:asparagus",
	"farming:potato",
	"underch:dry_moss",
	"farming:pineapple_ring",
	"underch:torchberries",
	"farming:seed_rice",
	"underch:orange_mushroom",
	"underch:underground_vine",
	"underch:moss",
	"ethereal:pine_nuts",
	"farming:seed_oat",
	"default:cactus",
	"default:papyrus",
	"ethereal:fern",
	"ethereal:illumishroom1",
	"ethereal:illumishroom2",
	"ethereal:illumishroom3",
	"techage:leave_powder",
	"techage:needle_powder",
	"flowers:mushroom_red",
	"flowers:mushroom_brown",
	"underch:mossy_dirt",
}

for _,item in pairs(compostables) do compost.register_item(item) end

core.register_craft({
	type = "shapeless",
	output = "bonemeal:mulch 2",
	recipe = {"compost:compost"},
})