mirror of
https://github.com/tacigar/maidroid.git
synced 2024-11-05 01:30:31 +01:00
26 lines
966 B
Lua
26 lines
966 B
Lua
------------------------------------------------------------
|
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
|
-- https://github.com/tacigar/maidroid
|
|
------------------------------------------------------------
|
|
|
|
maidroid.register_core("maidroid_core:empty", {
|
|
description = "maidroid core : empty",
|
|
inventory_image = "maidroid_core_empty.png",
|
|
on_start = function(self) end,
|
|
on_stop = function(self) end,
|
|
on_resume = function(self) end,
|
|
on_pause = function(self) end,
|
|
on_step = function(self, dtime) end,
|
|
})
|
|
|
|
-- only a recipe of the empty core is registered.
|
|
-- other cores is created by writing on the empty core.
|
|
minetest.register_craft{
|
|
output = "maidroid_core:empty",
|
|
recipe = {
|
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
{"default:steel_ingot", "default:obsidian", "default:steel_ingot"},
|
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
},
|
|
}
|