2017-03-21 16:16:58 +01:00
|
|
|
if not minetest.get_modpath("technic") then
|
|
|
|
minetest.log("warning", "hazmat_suit: Mod loaded but unused.")
|
|
|
|
return
|
|
|
|
end
|
2017-03-31 20:54:12 +02:00
|
|
|
local S = function(s) return s end
|
|
|
|
if minetest.global_exists("intllib") then
|
|
|
|
S = intllib.Getter()
|
|
|
|
end
|
2017-03-21 16:16:58 +01:00
|
|
|
|
2016-04-10 16:56:33 +02:00
|
|
|
local part_count = 4
|
|
|
|
|
|
|
|
local level = 35
|
|
|
|
local heal = 20
|
|
|
|
local use = 1000
|
|
|
|
local fire = 4
|
|
|
|
local water = 1
|
|
|
|
local radiation = 50
|
|
|
|
|
|
|
|
if minetest.get_modpath("shields") then
|
|
|
|
level = level / 0.9
|
|
|
|
end
|
|
|
|
|
2016-05-18 20:41:39 +02:00
|
|
|
if part_count == #armor.elements then
|
2016-04-10 16:56:33 +02:00
|
|
|
level = level / 1.1
|
|
|
|
end
|
|
|
|
|
|
|
|
level = math.floor(level / part_count)
|
|
|
|
heal = math.floor(heal / part_count)
|
|
|
|
fire = math.floor(fire / part_count)
|
|
|
|
radiation = math.floor(radiation / part_count)
|
|
|
|
|
|
|
|
minetest.register_craftitem("hazmat_suit:helmet_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Helmet"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_helmet_hazmat.png",
|
|
|
|
stack_max = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("hazmat_suit:chestplate_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Chestplate"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_chestplate_hazmat.png",
|
|
|
|
stack_max = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("hazmat_suit:sleeve_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Sleeve"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_sleeve_hazmat.png",
|
|
|
|
stack_max = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("hazmat_suit:leggings_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Leggins"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_leggings_hazmat.png",
|
|
|
|
stack_max = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("hazmat_suit:boots_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Boots"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_boots_hazmat.png",
|
|
|
|
stack_max = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_tool("hazmat_suit:suit_hazmat", {
|
2017-03-31 20:54:12 +02:00
|
|
|
description = S("Hazmat Suit"),
|
2016-04-10 16:56:33 +02:00
|
|
|
inventory_image = "hazmat_suit_inv_suit_hazmat.png",
|
|
|
|
groups = {
|
|
|
|
armor_head = level,
|
|
|
|
armor_torso = level,
|
|
|
|
armor_legs = level,
|
|
|
|
armor_feet = level,
|
|
|
|
armor_heal = heal,
|
|
|
|
armor_use = use,
|
|
|
|
armor_fire = fire,
|
|
|
|
armor_water = water,
|
|
|
|
armor_radiation = radiation,
|
|
|
|
},
|
|
|
|
wear = 0,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:helmet_hazmat",
|
|
|
|
recipe = {
|
|
|
|
{"", "technic:stainless_steel_ingot", ""},
|
|
|
|
{"technic:stainless_steel_ingot", "default:glass", "technic:stainless_steel_ingot"},
|
|
|
|
{"technic:rubber", "technic:rubber", "technic:rubber"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:chestplate_hazmat",
|
|
|
|
recipe = {
|
|
|
|
{"technic:lead_ingot", "dye:yellow", "technic:lead_ingot"},
|
|
|
|
{"technic:stainless_steel_ingot", "technic:lead_ingot", "technic:stainless_steel_ingot"},
|
|
|
|
{"technic:lead_ingot", "technic:stainless_steel_ingot", "technic:lead_ingot"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:sleeve_hazmat",
|
|
|
|
recipe = {
|
|
|
|
{"technic:rubber", "dye:yellow"},
|
|
|
|
{"", "technic:stainless_steel_ingot"},
|
|
|
|
{"", "technic:rubber"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:leggings_hazmat",
|
|
|
|
recipe = {
|
|
|
|
{"technic:rubber", "technic:lead_ingot", "technic:rubber"},
|
|
|
|
{"technic:stainless_steel_ingot", "technic:rubber", "technic:stainless_steel_ingot"},
|
|
|
|
{"technic:lead_ingot", "", "technic:lead_ingot"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:boots_hazmat",
|
|
|
|
recipe = {
|
|
|
|
{"", "", ""},
|
|
|
|
{"technic:rubber", "", "technic:rubber"},
|
|
|
|
{"technic:stainless_steel_ingot", "", "technic:stainless_steel_ingot"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "hazmat_suit:suit_hazmat",
|
|
|
|
type = "shapeless",
|
|
|
|
recipe = {
|
|
|
|
"hazmat_suit:helmet_hazmat",
|
|
|
|
"hazmat_suit:chestplate_hazmat",
|
|
|
|
"hazmat_suit:leggings_hazmat",
|
|
|
|
"hazmat_suit:boots_hazmat",
|
|
|
|
"hazmat_suit:sleeve_hazmat",
|
|
|
|
"hazmat_suit:sleeve_hazmat",
|
|
|
|
},
|
|
|
|
})
|