2017-05-17 08:57:14 -07:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Plants
|
|
|
|
--
|
|
|
|
|
2015-09-01 08:15:24 -07:00
|
|
|
farming.register_plant(
|
2017-07-04 09:48:25 -07:00
|
|
|
"farming:wheat",
|
2015-09-01 08:15:24 -07:00
|
|
|
{
|
2017-07-04 09:48:25 -07:00
|
|
|
grow_time = 600,
|
2015-09-01 08:15:24 -07:00
|
|
|
grows_near = {"group:water"},
|
|
|
|
growing_distance = 3,
|
2015-10-08 11:05:50 -07:00
|
|
|
grows_on = {"group:plantable_soil"},
|
2015-09-01 08:15:24 -07:00
|
|
|
light_min = 8,
|
|
|
|
light_max = 15,
|
2017-07-04 09:48:25 -07:00
|
|
|
}
|
|
|
|
)
|
2015-09-01 08:15:24 -07:00
|
|
|
|
|
|
|
farming.register_plant(
|
2017-07-04 09:48:25 -07:00
|
|
|
"farming:cotton",
|
2015-09-01 08:15:24 -07:00
|
|
|
{
|
2017-07-04 09:48:25 -07:00
|
|
|
grow_time = 780,
|
2015-09-01 08:15:24 -07:00
|
|
|
grows_near = {"group:water"},
|
|
|
|
growing_distance = 4,
|
2015-10-17 17:31:07 -07:00
|
|
|
grows_on = {"group:plantable_sandy", "group:plantable_soil"},
|
2015-09-01 08:15:24 -07:00
|
|
|
light_min = 12,
|
|
|
|
light_max = 15,
|
2017-07-04 09:48:25 -07:00
|
|
|
}
|
|
|
|
)
|
2015-09-01 08:15:24 -07:00
|
|
|
|
2017-05-17 08:57:14 -07:00
|
|
|
default.log("plants", "loaded")
|