Add reinforced cobble
This commit is contained in:
parent
ee8073eed1
commit
2b2a4222a8
4 changed files with 17 additions and 0 deletions
|
@ -65,6 +65,14 @@ crafting.register_recipe({
|
|||
})
|
||||
|
||||
-- Wooden plank x4
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "ctf_team_base:reinforced_cobble",
|
||||
items = { "default:cobble 4" },
|
||||
always_known = true,
|
||||
level = 1,
|
||||
})
|
||||
|
||||
crafting.register_recipe({
|
||||
type = "inv",
|
||||
output = "default:wood 4",
|
||||
|
|
|
@ -5,3 +5,11 @@ minetest.register_node("ctf_team_base:ind_cobble", {
|
|||
groups = {immortal = 1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("ctf_team_base:reinforced_cobble", {
|
||||
description = "Reinforced Cobblestone",
|
||||
tiles = {"ctf_team_base_reinforced_cobble.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 1, stone = 2},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
|
BIN
mods/ctf_team_base/textures/ctf_team_base_reinforced_cobble.png
Normal file
BIN
mods/ctf_team_base/textures/ctf_team_base_reinforced_cobble.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 665 B |
|
@ -56,6 +56,7 @@ function random_messages.read_messages()
|
|||
"Players are immune to attack for 15 seconds after they respawn.",
|
||||
"Access the pro section of the chest by achieving a 1k+ score and killing 3 people for every 2 deaths.",
|
||||
"Use team doors (steel) to stop the enemy walking into your base.",
|
||||
"Craft 4 cobbles together to make reinforced cobble.",
|
||||
"Sprint by pressing the fast key (E) when you have stamina.",
|
||||
"Like CTF? Give feedback using /report, and consider donating at rubenwardy.com/donate",
|
||||
"Map makers needed! Visit ctf.rubenwardy.com to get involved.",
|
||||
|
|
Loading…
Reference in a new issue