123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- -- Global farming namespace
- farming = {}
- farming.path = minetest.get_modpath("farming")
- farming.select = {
- type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
- }
- -- Load files
- dofile(farming.path .. "/api.lua")
- dofile(farming.path .. "/nodes.lua")
- dofile(farming.path .. "/hoes.lua")
- -- WHEAT
- farming.register_plant("farming:wheat", {
- description = "Wheat Seed",
- paramtype2 = "meshoptions",
- inventory_image = "farming_wheat_seed.png",
- steps = 8,
- minlight = 13,
- maxlight = default.LIGHT_MAX,
- fertility = {"grassland"},
- groups = {flammable = 4},
- place_param2 = 3,
- flowerpot_drop = "farming:wheat",
- flowerpot_insert = {"farming:wheat_1", "farming:wheat_2", "farming:wheat_3", "farming:wheat_4", "farming:wheat_5", "farming:wheat_6", "farming:wheat_7", "farming:wheat_8"},
- })
- minetest.register_craftitem("farming:flour", {
- description = "Flour",
- inventory_image = "farming_flour.png",
- groups = {flammable = 1, foodrot=1},
- })
- minetest.register_craftitem("farming:bread", {
- description = "Bread",
- inventory_image = "farming_bread.png",
- on_use = minetest.item_eat(5),
- groups = {flammable = 2, foodrot=1},
- })
- minetest.register_craft({
- type = "shapeless",
- output = "farming:flour",
- recipe = {"farming:wheat", "farming:wheat", "farming:wheat", "farming:wheat"}
- })
- minetest.register_craft({
- type = "cooking",
- cooktime = 5,
- output = "farming:bread",
- recipe = "farming:flour"
- })
- -- Cotton
- farming.register_plant("farming:cotton", {
- description = "Cotton Seed",
- inventory_image = "farming_cotton_seed.png",
- paramtype2 = "degrotate",
- steps = 8,
- minlight = 13,
- maxlight = default.LIGHT_MAX,
- fertility = {"grassland", "desert"},
- groups = {flammable = 4},
- flowerpot_drop = "farming:cotton",
- flowerpot_insert = {"farming:cotton_1", "farming:cotton_2", "farming:cotton_3", "farming:cotton_4", "farming:cotton_5", "farming:cotton_6", "farming:cotton_7", "farming:cotton_8"},
- })
- -- alias no longer used -- we have an actual string item that is craftable from cotton
- --minetest.register_alias("farming:string", "farming:cotton")
- minetest.register_craft({
- output = "wool:white",
- recipe = {
- {"farming:cloth", "farming:cloth"},
- {"farming:cloth", "farming:cloth"},
- }
- })
- -- Straw
- minetest.register_craft({
- output = "farming:straw 3",
- recipe = {
- {"farming:wheat", "farming:wheat", "farming:wheat"},
- {"farming:wheat", "farming:wheat", "farming:wheat"},
- {"farming:wheat", "farming:wheat", "farming:wheat"},
- }
- })
- minetest.register_craft({
- output = "farming:straw_weathered 4",
- recipe = {
- {"farming:straw", "farming:straw"},
- {"farming:straw", "farming:straw"},
- }
- })
- minetest.register_craft({
- output = "farming:wheat 3",
- recipe = {
- {"farming:straw"},
- }
- })
- --------------------------------------------------------------------------------
- minetest.register_craftitem("farming:cloth", {
- description = "Cloth",
- inventory_image = "farming_cloth.png",
- groups = {flammable = 3, cloth = 1},
- })
- minetest.register_craft({
- output = "farming:cloth",
- recipe = {
- {"farming:cotton", "farming:string", "farming:cotton"},
- },
- })
- minetest.register_craft({
- type = "fuel",
- recipe = "farming:cloth",
- burntime = 3,
- })
|