techage_modpack/techage/energy_storage/nodes.lua

37 lines
649 B
Lua
Raw Normal View History

2020-05-31 23:31:18 +03:00
--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
2020-10-25 23:32:47 +03:00
AGPL v3
2020-05-31 23:31:18 +03:00
See LICENSE.txt for more information
2022-01-04 21:43:30 +03:00
2020-05-31 23:31:18 +03:00
TA4 Nodes
]]--
-- for lazy programmers
local P = minetest.string_to_pos
local M = minetest.get_meta
local S = techage.S
minetest.register_node("techage:glow_gravel", {
description = S("TechAge Gravel"),
tiles = {{
name = "techage_gravel4.png",
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.2,
},
}},
paramtype = "light",
light_source = 8,
2022-12-31 12:51:49 +03:00
groups = {crumbly = 2, falling_node = 1, not_in_creative_inventory = 1},
2020-05-31 23:31:18 +03:00
sounds = default.node_sound_gravel_defaults(),
drop = "",
})