16 lines
433 B
Lua
16 lines
433 B
Lua
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
dofile(modpath .. "/api.lua")
|
|
|
|
PyuTest.make_crop("pyutest_farming:wheat", "Wheat", "pyutest_tools:wheat 2", 65, {
|
|
crop_color = "#eed89a",
|
|
grown_color = "#eed89a",
|
|
seed_color = "#eed89a"
|
|
})
|
|
|
|
PyuTest.make_crop("pyutest_farming:carrot", "Carrot", "pyutest_tools:carrot 3", 90, {
|
|
crop_color = "#d19d79",
|
|
grown_color = "#d19d79",
|
|
seed_color = "#d19d79"
|
|
})
|