forked from minetest/minetest_game
Compare commits
5 Commits
master
...
experiment
Author | SHA1 | Date | |
---|---|---|---|
72da1cde3a | |||
|
508a9070a0 | ||
75858968ab | |||
93c1287cf1 | |||
2d6d4adfd7 |
|
@ -1,3 +1,3 @@
|
|||
title = Notre Ami Le Cube 1.6
|
||||
author = Minetest and Sys4
|
||||
description = A basic exploration, mining, crafting, and building, sandbox game with no NPCs, monsters, or animals. Minetest Game is usually used with mods added, and many mods are available for this game. Reliably maintained by Minetest Engine core developers.
|
||||
title = Notre Ami Le Cube 1.6
|
||||
author = Minetest and Sys4
|
||||
description = Minetest game slightly modified by Sys4
|
||||
|
|
|
@ -73,4 +73,4 @@ river_source_sounds = true
|
|||
|
||||
# Enable cloud variation by the 'weather' mod.
|
||||
# Non-functional in V6 or Singlenode mapgens.
|
||||
enable_weather = false
|
||||
enable_weather = true
|
||||
|
|
|
@ -8,19 +8,21 @@ local dyes = dye.dyes
|
|||
for i = 1, #dyes do
|
||||
local name, desc = unpack(dyes[i])
|
||||
|
||||
local color_group = "color_" .. name
|
||||
|
||||
minetest.register_node("wool:" .. name, {
|
||||
description = S(desc .. " Wool"),
|
||||
tiles = {"wool_" .. name .. ".png"},
|
||||
is_ground_content = false,
|
||||
groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3,
|
||||
flammable = 3, wool = 1},
|
||||
flammable = 3, wool = 1, [color_group] = 1},
|
||||
sounds = default.node_sound_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft{
|
||||
type = "shapeless",
|
||||
output = "wool:" .. name,
|
||||
recipe = {"group:dye,color_" .. name, "group:wool"},
|
||||
recipe = {"group:dye," .. color_group, "group:wool"},
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user