mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 01:50:25 +01:00
14 lines
402 B
Lua
14 lines
402 B
Lua
|
minetest.register_craftitem("multitest:handle_grip", {
|
||
|
description = "Grip",
|
||
|
inventory_image = "multitest_handle_grip.png",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("multitest:rubber", {
|
||
|
description = "Rubber",
|
||
|
inventory_image = "multitest_rubber.png",
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem("multitest:rubber_raw", {
|
||
|
description = "Raw Rubber",
|
||
|
inventory_image = "multitest_rubber_raw.png",
|
||
|
})
|