Add indestructible floor to ctf_team_base
This commit is contained in:
parent
2a07b2d18f
commit
2bdb1e2a32
10 changed files with 37 additions and 13 deletions
4
mods/ctf_team_base/depends.txt
Normal file
4
mods/ctf_team_base/depends.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
ctf
|
||||
ctf_flag
|
||||
ctf_match
|
||||
ctf_barrier
|
102
mods/ctf_team_base/init.lua
Normal file
102
mods/ctf_team_base/init.lua
Normal file
|
@ -0,0 +1,102 @@
|
|||
local chest_formspec =
|
||||
"size[8,9]" ..
|
||||
default.gui_bg ..
|
||||
default.gui_bg_img ..
|
||||
default.gui_slots ..
|
||||
"list[current_name;main;0,0.3;8,4;]" ..
|
||||
"list[current_player;main;0,4.85;8,1;]" ..
|
||||
"list[current_player;main;0,6.08;8,3;8]" ..
|
||||
"listring[current_name;main]" ..
|
||||
"listring[current_player;main]" ..
|
||||
default.get_hotbar_bg(0,4.85)
|
||||
|
||||
local colors = {"red", "blue"}
|
||||
for _, color in pairs(colors) do
|
||||
minetest.register_node("ctf_team_base:chest_" .. color, {
|
||||
description = "Chest",
|
||||
tiles = {
|
||||
"default_chest_top_" .. color .. ".png",
|
||||
"default_chest_top_" .. color .. ".png",
|
||||
"default_chest_side_" .. color .. ".png",
|
||||
"default_chest_side_" .. color .. ".png",
|
||||
"default_chest_side_" .. color .. ".png",
|
||||
"default_chest_front_" .. color .. ".png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {choppy = 2, oddly_breakable_by_hand = 2},
|
||||
legacy_facedir_simple = true,
|
||||
is_ground_content = false,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", chest_formspec)
|
||||
meta:set_string("infotext", "Chest")
|
||||
local inv = meta:get_inventory()
|
||||
inv:set_size("main", 8*4)
|
||||
end,
|
||||
can_dig = function(pos,player)
|
||||
return false
|
||||
end,
|
||||
on_metadata_inventory_move = function(pos, from_list, from_index,
|
||||
to_list, to_index, count, player)
|
||||
minetest.log("action", player:get_player_name() ..
|
||||
" moves stuff in chest at " .. minetest.pos_to_string(pos))
|
||||
end,
|
||||
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
||||
minetest.log("action", player:get_player_name() ..
|
||||
" moves stuff to chest at " .. minetest.pos_to_string(pos))
|
||||
end,
|
||||
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
||||
minetest.log("action", player:get_player_name() ..
|
||||
" takes stuff from chest at " .. minetest.pos_to_string(pos))
|
||||
end
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_on_generated(function(minp, maxp, seed)
|
||||
for tname, team in pairs(ctf.teams) do
|
||||
for _, flag in pairs(team.flags) do
|
||||
if minp.x <= flag.x and maxp.x >= flag.x and
|
||||
minp.y <= flag.y and maxp.y >= flag.y and
|
||||
minp.z <= flag.z and maxp.z >= flag.z then
|
||||
-- Spawn ind base
|
||||
for x = flag.x - 2, flag.x + 2 do
|
||||
for z = flag.z - 2, flag.z + 2 do
|
||||
minetest.set_node({ x = x, y = flag.y - 1, z = z},
|
||||
{name = "ctf_barrier:ind_stone"})
|
||||
end
|
||||
end
|
||||
|
||||
-- Check for trees
|
||||
for y = flag.y, flag.y + 2 do
|
||||
for x = flag.x - 3, flag.x + 3 do
|
||||
for z = flag.z - 3, flag.z + 3 do
|
||||
local pos = {x=x, y=y, z=z}
|
||||
if minetest.get_node(pos).name == "default:tree" then
|
||||
minetest.set_node(pos, {name="air"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Spawn chest
|
||||
local chest = {name = "ctf_team_base:chest_" .. team.data.color}
|
||||
local dz = 2
|
||||
if flag.z < 0 then
|
||||
dz = -2
|
||||
chest.param2 = minetest.dir_to_facedir({x=0,y=0,z=-1})
|
||||
end
|
||||
local pos = {
|
||||
x = flag.x,
|
||||
y = flag.y,
|
||||
z = flag.z + dz
|
||||
}
|
||||
minetest.set_node(pos, chest)
|
||||
local inv = minetest.get_inventory({type = "node", pos=pos})
|
||||
inv:add_item("main", ItemStack("default:stone 99"))
|
||||
inv:add_item("main", ItemStack("default:stone 99"))
|
||||
inv:add_item("main", ItemStack("default:glass 10"))
|
||||
inv:add_item("main", ItemStack("default:torch 10"))
|
||||
end
|
||||
end
|
||||
end
|
||||
end)
|
BIN
mods/ctf_team_base/textures/default_chest_front_blue.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_front_blue.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 625 B |
BIN
mods/ctf_team_base/textures/default_chest_front_red.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_front_red.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 614 B |
BIN
mods/ctf_team_base/textures/default_chest_side_blue.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_side_blue.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 564 B |
BIN
mods/ctf_team_base/textures/default_chest_side_red.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_side_red.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 556 B |
BIN
mods/ctf_team_base/textures/default_chest_top_blue.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_top_blue.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 593 B |
BIN
mods/ctf_team_base/textures/default_chest_top_red.png
Normal file
BIN
mods/ctf_team_base/textures/default_chest_top_red.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 587 B |
Loading…
Add table
Add a link
Reference in a new issue