mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-02-11 17:20:24 +01:00
Farming : minors fixe, add the straw block Mobs : better api, swimming parameter for mobs, add eggs, code optimisation 3d_armor : change the model, many new textures, new shield, and new enchanted shield (which gain compared to normal shield +1 armor and x2 durability)
34 lines
1.2 KiB
Lua
Executable File
34 lines
1.2 KiB
Lua
Executable File
minetest.register_alias("adminboots","3d_armor:boots_admin")
|
|
minetest.register_alias("adminhelmet","3d_armor:helmet_admin")
|
|
minetest.register_alias("adminchestplate","3d_armor:chestplate_admin")
|
|
minetest.register_alias("adminlegginss","3d_armor:leggings_admin")
|
|
|
|
minetest.register_tool("3d_armor:helmet_admin", {
|
|
description = "Admin Helmet",
|
|
inventory_image = "3d_armor_inv_helmet_admin.png",
|
|
groups = {armor_head=1000, armor_heal=1000, armor_use=0, not_in_creative_inventory=1},
|
|
wear = 0,
|
|
})
|
|
|
|
minetest.register_tool("3d_armor:chestplate_admin", {
|
|
description = "Admin Chestplate",
|
|
inventory_image = "3d_armor_inv_chestplate_admin.png",
|
|
groups = {armor_torso=1000, armor_heal=1000, armor_use=0, not_in_creative_inventory=1},
|
|
wear = 0,
|
|
})
|
|
|
|
minetest.register_tool("3d_armor:leggings_admin", {
|
|
description = "Admin Leggings",
|
|
inventory_image = "3d_armor_inv_leggings_admin.png",
|
|
groups = {armor_legs=1000, armor_heal=1000, armor_use=0, not_in_creative_inventory=1},
|
|
wear = 0,
|
|
})
|
|
|
|
minetest.register_tool("3d_armor:boots_admin", {
|
|
description = "Admin Boots",
|
|
inventory_image = "3d_armor_inv_boots_admin.png",
|
|
groups = {armor_feet=1000, armor_heal=1000, armor_use=0, not_in_creative_inventory=1},
|
|
wear = 0,
|
|
})
|
|
|