Compare commits

...

4 Commits

Author SHA1 Message Date
epCode b90ff44f73 fix enderman walk velocity 2022-10-16 17:48:29 -07:00
epCode 3557f02b8f decrease damage animspeed 2022-10-16 17:41:45 -07:00
epCode c3425a69b1 allow player animations hit by mobs 2022-10-16 17:23:28 -07:00
epCode b7eda10054 add better pvp knockback 2022-10-16 17:16:38 -07:00
3 changed files with 35 additions and 8 deletions

View File

@ -292,7 +292,7 @@ mcl_mobs:register_mob("mobs_mc:enderman", {
random = {name="mobs_mc_enderman_random", gain=0.5},
distance = 16,
},
walk_velocity = 0.2,
walk_velocity = 2.5,
run_velocity = 3.4,
damage = 7,
reach = 2,

View File

@ -128,12 +128,34 @@ mcl_enchanting.enchantments.fire_aspect = {
}
minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch, tool_capabilities, dir, damage)
if hitter and hitter:is_player() then
local wielditem = hitter:get_wielded_item()
if wielditem then
local fire_aspect_level = mcl_enchanting.get_enchantment(wielditem, "fire_aspect")
if fire_aspect_level > 0 then
mcl_burning.set_on_fire(player, fire_aspect_level * 4)
if hitter then
local p = player:get_pos()
if time_from_last_punch > 0.5 then
local yy=0
if math.abs(player:get_velocity().y) < 0.1 then
yy=4
end
player:get_meta():set_string("punched", tostring(minetest.get_gametime()))
minetest.after(0.4, function()
player:get_meta():set_string("punched", "0")
end)
local d = vector.new()
if hitter:is_player() then
d = hitter:get_look_dir()
elseif hitter:get_luaentity() then
d = minetest.yaw_to_dir(hitter:get_yaw())
end
player:add_velocity({x=d.x*4,y=yy,z=d.z*4})
end
if hitter:is_player() then
local wielditem = hitter:get_wielded_item()
if wielditem then
local fire_aspect_level = mcl_enchanting.get_enchantment(wielditem, "fire_aspect")
if fire_aspect_level > 0 then
mcl_burning.set_on_fire(player, fire_aspect_level * 4)
end
end
end
end

View File

@ -91,7 +91,7 @@ local function update_player_textures(player)
end
player:set_properties({ textures = textures })
-- Delay calling the callbacks because mods (including mcl_player)
-- need to fully initialize player data from minetest.register_on_joinplayer
-- before callbacks run
@ -231,13 +231,18 @@ minetest.register_globalstep(function(dtime)
local velocity = player:get_velocity() or player:get_player_velocity()
local mod_speed = 5
-- Apply animations based on what the player is doing
if player:get_hp() == 0 then
player_set_animation(player, "die")
elseif player:get_meta():get("punched") and tonumber(player:get_meta():get("punched")) > 0 then
player_set_animation(player, "run_walk", animation_speed_mod)
player:set_animation_frame_speed((math.abs(velocity.x)+math.abs(velocity.z))*mod_speed)
elseif walking and velocity.x > 0.35
or walking and velocity.x < -0.35
or walking and velocity.z > 0.35
or walking and velocity.z < -0.35 then
player:set_animation_frame_speed((math.abs(velocity.x)+math.abs(velocity.z))*mod_speed)
local wielded_itemname = player:get_wielded_item():get_name()
local no_arm_moving = string.find(wielded_itemname, "mcl_bows:bow") or mcl_shields.wielding_shield(player, 1) or mcl_shields.wielding_shield(player, 2)
if player_sneak[name] ~= controls.sneak then