add mesecons mods
|
@ -0,0 +1 @@
|
|||
Craftitem: It can't be placed! Made by cooking glue in the furnace. Used for insulated mesecon crafting.
|
BIN
mods/mesecons/mesecons_materials/doc/fiber/preview.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
mods/mesecons/mesecons_materials/doc/fiber/recipe.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
|
@ -0,0 +1 @@
|
|||
Craftitem: It can't be placed! Made by cooking saplings in furnace. Used for sticky pistons and sticky movestones.
|
BIN
mods/mesecons/mesecons_materials/doc/glue/preview.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
mods/mesecons/mesecons_materials/doc/glue/recipe.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1 @@
|
|||
Silicon is just a craftitem: It can't be placed. You'll need it in order to craft other items.
|
BIN
mods/mesecons/mesecons_materials/doc/silicon/preview.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
mods/mesecons/mesecons_materials/doc/silicon/recipe.png
Normal file
After Width: | Height: | Size: 6 KiB |
43
mods/mesecons/mesecons_materials/init.lua
Normal file
|
@ -0,0 +1,43 @@
|
|||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
-- Glue and fiber
|
||||
minetest.register_craftitem("mesecons_materials:glue", {
|
||||
inventory_image = "mesecons_glue.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description = S("Glue"),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mesecons_materials:fiber", {
|
||||
inventory_image = "mesecons_fiber.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description = S("Fiber"),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_materials:glue 2",
|
||||
type = "cooking",
|
||||
recipe = "group:sapling",
|
||||
cooktime = 2
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_materials:fiber 6",
|
||||
type = "cooking",
|
||||
recipe = "mesecons_materials:glue",
|
||||
cooktime = 4
|
||||
})
|
||||
|
||||
-- Silicon
|
||||
minetest.register_craftitem("mesecons_materials:silicon", {
|
||||
inventory_image = "mesecons_silicon.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
description = S("Silicon"),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_materials:silicon 4",
|
||||
recipe = {
|
||||
{"group:sand", "group:sand"},
|
||||
{"group:sand", "mesecons_gamecompat:steel_ingot"},
|
||||
}
|
||||
})
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_materials
|
||||
Glue=Klebstoff
|
||||
Fiber=Faser
|
||||
Silicon=Silizium
|
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Gluo
|
||||
Fiber=Fibro
|
||||
Silicon=Silicio
|
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Colle
|
||||
Fiber=Fibre
|
||||
Silicon=Silicone
|
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Клей
|
||||
Fiber=Волокно
|
||||
Silicon=Кремний
|
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Клей
|
||||
Fiber=Волокно
|
||||
Silicon=Кремній
|
6
mods/mesecons/mesecons_materials/locale/template.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=
|
||||
Fiber=
|
||||
Silicon=
|
2
mods/mesecons/mesecons_materials/mod.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = mesecons_materials
|
||||
depends = mesecons_gamecompat
|
BIN
mods/mesecons/mesecons_materials/textures/mesecons_fiber.png
Normal file
After Width: | Height: | Size: 427 B |
BIN
mods/mesecons/mesecons_materials/textures/mesecons_glue.png
Normal file
After Width: | Height: | Size: 421 B |
BIN
mods/mesecons/mesecons_materials/textures/mesecons_silicon.png
Normal file
After Width: | Height: | Size: 582 B |