Merge branch 'master' of https://github.com/MT-CTF/capturetheflag
This commit is contained in:
commit
a993113194
6 changed files with 12 additions and 10 deletions
|
@ -49,7 +49,7 @@ minetest.register_tool("ctf_classes:sword_bronze", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=0, maxlevel=2},
|
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=0, maxlevel=2},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=6},
|
damage_groups = {fleshy=6, sword=1},
|
||||||
punch_attack_uses = 0,
|
punch_attack_uses = 0,
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
|
|
|
@ -124,7 +124,7 @@ ctf.register_on_killedplayer(function(victim, killer, stack, tool_caps)
|
||||||
local victim_color = ctf_colors.get_color(ctf.player(victim))
|
local victim_color = ctf_colors.get_color(ctf.player(victim))
|
||||||
local killer_color = ctf_colors.get_color(ctf.player(killer))
|
local killer_color = ctf_colors.get_color(ctf.player(killer))
|
||||||
|
|
||||||
local type = "sword"
|
local type = "sword" -- Also used for unknown attacks
|
||||||
|
|
||||||
if tool_caps.damage_groups.grenade then
|
if tool_caps.damage_groups.grenade then
|
||||||
type = "grenade"
|
type = "grenade"
|
||||||
|
|
BIN
mods/ctf/ctf_events/textures/ctf_events_kill_unknown.png
Normal file
BIN
mods/ctf/ctf_events/textures/ctf_events_kill_unknown.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 161 B |
|
@ -8,8 +8,7 @@ local RESPAWN_MESSAGE = "Respawning in "
|
||||||
|
|
||||||
minetest.register_on_dieplayer(function(player, reason)
|
minetest.register_on_dieplayer(function(player, reason)
|
||||||
local pname = player:get_player_name()
|
local pname = player:get_player_name()
|
||||||
if ctf_match.is_in_build_time() or (reason.type == "punch" and reason.object and
|
if ctf_match.is_in_build_time() or ctf_respawn_delay.players[pname] then -- what is dead may never die
|
||||||
reason.object:is_player() and reason.object:get_player_name() == pname) then
|
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,10 @@ minetest.register_node("ctf_traps:damage_cobble", {
|
||||||
if placerobj then
|
if placerobj then
|
||||||
digger:punch(placerobj, 10, {damage_groups = {fleshy = 7}}, vector.new(0, 1, 0))
|
digger:punch(placerobj, 10, {damage_groups = {fleshy = 7}}, vector.new(0, 1, 0))
|
||||||
else
|
else
|
||||||
digger:set_hp(digger:get_hp() - 7)
|
local hp = digger:get_hp()
|
||||||
|
if hp > 0 then
|
||||||
|
digger:set_hp(hp - 7)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.remove_node(pos)
|
minetest.remove_node(pos)
|
||||||
|
|
|
@ -257,7 +257,7 @@ minetest.register_tool("default:sword_stone", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1},
|
snappy={times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=4},
|
damage_groups = {fleshy=4, sword=1},
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
})
|
})
|
||||||
|
@ -271,7 +271,7 @@ minetest.register_tool("default:sword_bronze", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[1]=2.75, [2]=1.30, [3]=0.375}, uses=25, maxlevel=2},
|
snappy={times={[1]=2.75, [2]=1.30, [3]=0.375}, uses=25, maxlevel=2},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=6},
|
damage_groups = {fleshy=6, sword=1},
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
})
|
})
|
||||||
|
@ -285,7 +285,7 @@ minetest.register_tool("default:sword_steel", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2},
|
snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=6},
|
damage_groups = {fleshy=6, sword=1},
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
})
|
})
|
||||||
|
@ -299,7 +299,7 @@ minetest.register_tool("default:sword_mese", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=30, maxlevel=3},
|
snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=30, maxlevel=3},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=7},
|
damage_groups = {fleshy=7, sword=1},
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
})
|
})
|
||||||
|
@ -313,7 +313,7 @@ minetest.register_tool("default:sword_diamond", {
|
||||||
groupcaps={
|
groupcaps={
|
||||||
snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
|
snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
|
||||||
},
|
},
|
||||||
damage_groups = {fleshy=8},
|
damage_groups = {fleshy=8, sword=1},
|
||||||
},
|
},
|
||||||
sound = {breaks = "default_tool_breaks"},
|
sound = {breaks = "default_tool_breaks"},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue