2022-10-30 18:49:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
minetest.register_node("jumpdrive:warp_device", {
|
|
|
|
description = "Warp Device",
|
|
|
|
|
|
|
|
tiles = {"jumpdrive_warpdevice.png"},
|
2023-09-08 21:33:40 +02:00
|
|
|
groups = {cracky=5,oddly_breakable_by_hand=1,handy=1,pickaxey=1},
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 0.9,
|
|
|
|
sounds = jumpdrive.sounds.node_sound_glass_defaults(),
|
2024-02-26 09:09:14 +01:00
|
|
|
is_ground_content = false,
|
2022-10-30 18:49:10 +01:00
|
|
|
light_source = 4
|
|
|
|
})
|