This commit is contained in:
Xeno333 2024-11-07 16:52:32 -06:00
parent a1827ea766
commit 3395add6f6
2 changed files with 19 additions and 2 deletions

View File

@ -88,4 +88,13 @@ We Hope you enjoy playing it and all feedback is welcome!
- `enable_node_specular = true`
- `soft_clouds = true`
- `connected_glass = true`
- `enable_fog = true`
- `enable_fog = true`
## Contributing
1042 is a free and open-source game and is licensed under the MIT license. If you would like to help develop you can make PRs on our github (`https://github.com/Xeno333/1042/`). You can also join our [discord](https://github.com/Xeno333/1042/) at
## Online Resources
- Github `https://github.com/Xeno333/1042/`
- 1042 Discord `https://discord.gg/7YTMtyPgrD`

View File

@ -4,9 +4,17 @@
-- Land Nodes
core.register_node("1042_nodes:bedrock", {
description = "Bedrock",
tiles = {"1042_plain_node.png^[colorize:#110a02:200"},
use_texture_alpha = "opaque",
groups = {unbreakable = 1},
})
core.register_node("1042_nodes:dirt", {
description = "Dirt",
tiles = {"1042_plain_node.png^[colorize:#8B4513:128"},
tiles = {"1042_plain_node.png^[colorize:#8b4513:128"},
use_texture_alpha = "opaque",
groups = {dirt = 1, breakable_by_hand = 2},