[DELETE] Delete some files

This commit is contained in:
tacigar 2016-09-14 23:35:17 +09:00
parent 45de44bb27
commit 76c8032a1e
10 changed files with 0 additions and 137 deletions

View File

@ -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

View File

@ -1,2 +0,0 @@
default
dye

View File

@ -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")

View File

@ -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

View File

@ -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")

View File

@ -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"},
},
}