0cc652eea5
* Update warp_device.lua * Update backbone.lua * Update engine.lua * Update fleet_controller.lua
14 lines
344 B
Lua
14 lines
344 B
Lua
|
|
|
|
minetest.register_node("jumpdrive:warp_device", {
|
|
description = "Warp Device",
|
|
|
|
tiles = {"jumpdrive_warpdevice.png"},
|
|
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(),
|
|
is_ground_content = false,
|
|
light_source = 4
|
|
})
|