mirror of
https://github.com/tacigar/maidroid.git
synced 2024-11-16 23:30:21 +01:00
Merge pull request #17 from tacigar/tacigar/delete-files
[DELETE] Delete some files
This commit is contained in:
commit
7458d61269
14
_aux.lua
14
_aux.lua
|
@ -1,14 +0,0 @@
|
||||||
------------------------------------------------------------
|
|
||||||
-- Copyright (c) 2016 tacigar
|
|
||||||
-- https://github.com/tacigar/maidroid
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
maidroid._aux = {}
|
|
||||||
|
|
||||||
-- get inventory of the maidroid
|
|
||||||
function maidroid._aux.get_maidroid_inventory(self)
|
|
||||||
return minetest.get_inventory{
|
|
||||||
type = "detached",
|
|
||||||
name = self.invname,
|
|
||||||
}
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
default
|
|
||||||
dye
|
|
15
init.lua
15
init.lua
|
@ -1,15 +0,0 @@
|
||||||
------------------------------------------------------------
|
|
||||||
-- Copyright (c) 2016 tacigar
|
|
||||||
-- https://github.com/tacigar/maidroid
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
maidroid = {}
|
|
||||||
maidroid.modname = "maidroid"
|
|
||||||
maidroid.modpath = minetest.get_modpath("maidroid")
|
|
||||||
|
|
||||||
dofile(maidroid.modpath.."/_aux.lua")
|
|
||||||
dofile(maidroid.modpath.."/util.lua")
|
|
||||||
dofile(maidroid.modpath.."/api.lua")
|
|
||||||
dofile(maidroid.modpath.."/modules.lua")
|
|
||||||
dofile(maidroid.modpath.."/maidroids.lua")
|
|
||||||
dofile(maidroid.modpath.."/recipe.lua")
|
|
|
@ -1,24 +0,0 @@
|
||||||
------------------------------------------------------------
|
|
||||||
-- Copyright (c) 2016 tacigar
|
|
||||||
-- https://github.com/tacigar/maidroid
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
maidroid.register_maidroid("maidroid:maidroid", {
|
|
||||||
hp_max = 10,
|
|
||||||
description = "Maidroid : Maidroid",
|
|
||||||
inventory_image = "maidroid_maidroid.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
maidroid.register_maidroid("maidroid:maidroid_mk2", {
|
|
||||||
hp_max = 10,
|
|
||||||
description = "Maidroid : Maidroid MkII",
|
|
||||||
textures = {"maidroid_mk2.png"},
|
|
||||||
inventory_image = "maidroid_maidroid_mk2.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
maidroid.register_maidroid("maidroid:maidroid_mk3", {
|
|
||||||
hp_max = 10,
|
|
||||||
description = "Maidroid : Maidroid MkIII",
|
|
||||||
textures = {"maidroid_mk3.png"},
|
|
||||||
inventory_image = "maidroid_maidroid_mk3.png",
|
|
||||||
})
|
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 971 B |
Binary file not shown.
Before Width: | Height: | Size: 1005 B |
Binary file not shown.
Before Width: | Height: | Size: 990 B |
13
modules.lua
13
modules.lua
|
@ -1,13 +0,0 @@
|
||||||
------------------------------------------------------------
|
|
||||||
-- Copyright (c) 2016 tacigar
|
|
||||||
-- https://github.com/tacigar/maidroid
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
maidroid.modules = {}
|
|
||||||
local modules_dir = maidroid.modpath.."/modules"
|
|
||||||
|
|
||||||
dofile(modules_dir.."/_aux.lua")
|
|
||||||
dofile(modules_dir.."/empty_module.lua")
|
|
||||||
dofile(modules_dir.."/chasing_player_module.lua")
|
|
||||||
dofile(modules_dir.."/farming_module.lua")
|
|
||||||
dofile(modules_dir.."/lumberjack_module.lua")
|
|
69
recipe.lua
69
recipe.lua
|
@ -1,69 +0,0 @@
|
||||||
------------------------------------------------------------
|
|
||||||
-- Copyright (c) 2016 tacigar
|
|
||||||
-- https://github.com/tacigar/maidroid
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
-- maidroids
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:maidroid_spawn_egg",
|
|
||||||
recipe = {
|
|
||||||
{"default:diamond", "default:diamond", "default:diamond"},
|
|
||||||
{"default:steel_ingot", "default:mese_crystal", "default:steel_ingot"},
|
|
||||||
{"default:papyrus", "default:mese_crystal", "default:papyrus"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:maidroid_mk2_spawn_egg",
|
|
||||||
recipe = {
|
|
||||||
{"dye:blue", "dye:blue", "dye:blue"},
|
|
||||||
{"dye:blue", "maidroid:maidroid_spawn_egg", "dye:blue"},
|
|
||||||
{"dye:blue", "dye:blue", "dye:blue"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:maidroid_mk3_spawn_egg",
|
|
||||||
recipe = {
|
|
||||||
{"dye:pink", "dye:pink", "dye:pink"},
|
|
||||||
{"dye:pink", "maidroid:maidroid_spawn_egg", "dye:pink"},
|
|
||||||
{"dye:pink", "dye:pink", "dye:pink"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- modules
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:empty_module",
|
|
||||||
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"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:chasing_player_module",
|
|
||||||
recipe = {
|
|
||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
||||||
{"default:steel_ingot", "maidroid:empty_module", "default:steel_ingot"},
|
|
||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:farming_module",
|
|
||||||
recipe = {
|
|
||||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
|
||||||
{"default:gold_ingot", "maidroid:empty_module", "default:gold_ingot"},
|
|
||||||
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
minetest.register_craft{
|
|
||||||
output = "maidroid:lumberjack_module",
|
|
||||||
recipe = {
|
|
||||||
{"default:diamond", "default:diamond", "default:diamond"},
|
|
||||||
{"default:diamond", "maidroid:empty_module", "default:diamond"},
|
|
||||||
{"default:diamond", "default:diamond", "default:diamond"},
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user