2017-07-05 03:15:46 +02:00
--MCmobs v0.5
--maikerumine
--made for MC like Survival game
--License for code WTFPL and otherwise stated in readmes
2019-03-14 00:09:09 +01:00
-- NOTE: Strings intentionally not marked for translation, other mods already have these items.
-- TODO: Remove this file eventually, all items here are already outsourced in other mods.
2019-03-07 20:43:39 +01:00
local S = minetest.get_translator ( " mobs_mc " )
2017-07-05 03:15:46 +02:00
--maikerumines throwing code
--arrow (weapon)
local c = mobs_mc.is_item_variable_overridden
minetest.register_node ( " mobs_mc:arrow_box " , {
drawtype = " nodebox " ,
2019-09-19 12:27:27 +02:00
is_ground_content = false ,
2017-07-05 03:15:46 +02:00
node_box = {
type = " fixed " ,
fixed = {
-- Shaft
2019-09-19 12:27:27 +02:00
{ - 6.5 / 17 , - 1.5 / 17 , - 1.5 / 17 , - 4.5 / 17 , 1.5 / 17 , 1.5 / 17 } ,
{ - 4.5 / 17 , - 0.5 / 17 , - 0.5 / 17 , 5.5 / 17 , 0.5 / 17 , 0.5 / 17 } ,
{ 5.5 / 17 , - 1.5 / 17 , - 1.5 / 17 , 6.5 / 17 , 1.5 / 17 , 1.5 / 17 } ,
-- Tip
2017-07-05 03:15:46 +02:00
{ - 4.5 / 17 , 2.5 / 17 , 2.5 / 17 , - 3.5 / 17 , - 2.5 / 17 , - 2.5 / 17 } ,
{ - 8.5 / 17 , 0.5 / 17 , 0.5 / 17 , - 6.5 / 17 , - 0.5 / 17 , - 0.5 / 17 } ,
2019-09-19 12:27:27 +02:00
-- Fletching
2017-07-05 03:15:46 +02:00
{ 6.5 / 17 , 1.5 / 17 , 1.5 / 17 , 7.5 / 17 , 2.5 / 17 , 2.5 / 17 } ,
{ 7.5 / 17 , - 2.5 / 17 , 2.5 / 17 , 6.5 / 17 , - 1.5 / 17 , 1.5 / 17 } ,
{ 7.5 / 17 , 2.5 / 17 , - 2.5 / 17 , 6.5 / 17 , 1.5 / 17 , - 1.5 / 17 } ,
{ 6.5 / 17 , - 1.5 / 17 , - 1.5 / 17 , 7.5 / 17 , - 2.5 / 17 , - 2.5 / 17 } ,
{ 7.5 / 17 , 2.5 / 17 , 2.5 / 17 , 8.5 / 17 , 3.5 / 17 , 3.5 / 17 } ,
{ 8.5 / 17 , - 3.5 / 17 , 3.5 / 17 , 7.5 / 17 , - 2.5 / 17 , 2.5 / 17 } ,
{ 8.5 / 17 , 3.5 / 17 , - 3.5 / 17 , 7.5 / 17 , 2.5 / 17 , - 2.5 / 17 } ,
{ 7.5 / 17 , - 2.5 / 17 , - 2.5 / 17 , 8.5 / 17 , - 3.5 / 17 , - 3.5 / 17 } ,
}
} ,
2018-05-07 23:10:49 +02:00
tiles = { " mcl_bows_arrow.png^[transformFX " , " mcl_bows_arrow.png^[transformFX " , " mcl_bows_arrow_back.png " , " mcl_bows_arrow_front.png " , " mcl_bows_arrow.png " , " mcl_bows_arrow.png^[transformFX " } ,
2019-09-19 12:27:27 +02:00
paramtype = " light " ,
paramtype2 = " facedir " ,
sunlight_propagates = true ,
groups = { not_in_creative_inventory = 1 , dig_immediate = 3 } ,
node_placement_prediction = " " ,
on_construct = function ( pos )
minetest.log ( " error " , " [mobs_mc] Trying to construct mobs_mc:arrow_box at " .. minetest.pos_to_string ( pos ) )
minetest.remove_node ( pos )
end ,
drop = " " ,
2017-07-05 03:15:46 +02:00
} )
local THROWING_ARROW_ENTITY = {
physical = false ,
timer = 0 ,
visual = " wielditem " ,
visual_size = { x = 0.1 , y = 0.1 } ,
textures = { " mobs_mc:arrow_box " } ,
velocity = 10 ,
lastpos = { } ,
collisionbox = { 0 , 0 , 0 , 0 , 0 , 0 } ,
}
--ARROW CODE
THROWING_ARROW_ENTITY.on_step = function ( self , dtime )
self.timer = self.timer + dtime
2019-02-01 06:33:07 +01:00
local pos = self.object : get_pos ( )
2017-07-05 03:15:46 +02:00
local node = minetest.get_node ( pos )
minetest.add_particle ( {
pos = pos ,
2017-08-18 23:23:07 +02:00
velocity = { x = 0 , y = 0 , z = 0 } ,
acceleration = { x = 0 , y = 0 , z = 0 } ,
2017-07-05 03:15:46 +02:00
expirationtime = .3 ,
size = 1 ,
collisiondetection = false ,
vertical = false ,
texture = " mobs_mc_arrow_particle.png " ,
} )
if self.timer > 0.2 then
local objs = minetest.get_objects_inside_radius ( { x = pos.x , y = pos.y , z = pos.z } , 1.5 )
for k , obj in pairs ( objs ) do
if obj : get_luaentity ( ) ~= nil then
if obj : get_luaentity ( ) . name ~= " mobs_mc:arrow_entity " and obj : get_luaentity ( ) . name ~= " __builtin:item " then
local damage = 3
minetest.sound_play ( " damage " , { pos = pos } )
obj : punch ( self.object , 1.0 , {
full_punch_interval = 1.0 ,
damage_groups = { fleshy = damage } ,
} , nil )
self.object : remove ( )
end
else
local damage = 3
minetest.sound_play ( " damage " , { pos = pos } )
obj : punch ( self.object , 1.0 , {
full_punch_interval = 1.0 ,
damage_groups = { fleshy = damage } ,
} , nil )
self.object : remove ( )
end
end
end
if self.lastpos . x ~= nil then
if node.name ~= " air " then
minetest.sound_play ( " bowhit1 " , { pos = pos } )
minetest.add_item ( self.lastpos , ' mobs_mc:arrow ' )
self.object : remove ( )
end
end
self.lastpos = { x = pos.x , y = pos.y , z = pos.z }
end
minetest.register_entity ( " mobs_mc:arrow_entity " , THROWING_ARROW_ENTITY )
2017-08-06 14:09:25 +02:00
local arrows = {
2017-07-05 03:15:46 +02:00
{ " mobs_mc:arrow " , " mobs_mc:arrow_entity " } ,
}
local throwing_shoot_arrow = function ( itemstack , player )
for _ , arrow in ipairs ( arrows ) do
if player : get_inventory ( ) : get_stack ( " main " , player : get_wield_index ( ) + 1 ) : get_name ( ) == arrow [ 1 ] then
if not minetest.settings : get_bool ( " creative_mode " ) then
player : get_inventory ( ) : remove_item ( " main " , arrow [ 1 ] )
end
2019-02-01 06:33:07 +01:00
local playerpos = player : get_pos ( )
2017-07-05 03:15:46 +02:00
local obj = minetest.add_entity ( { x = playerpos.x , y = playerpos.y + 1.5 , z = playerpos.z } , arrow [ 2 ] ) --mc
local dir = player : get_look_dir ( )
2019-03-06 04:38:57 +01:00
obj : set_velocity ( { x = dir.x * 22 , y = dir.y * 22 , z = dir.z * 22 } )
obj : set_acceleration ( { x = dir.x *- 3 , y =- 10 , z = dir.z *- 3 } )
obj : set_yaw ( player : get_look_yaw ( ) + math.pi )
2017-07-05 03:15:46 +02:00
minetest.sound_play ( " throwing_sound " , { pos = playerpos } )
if obj : get_luaentity ( ) . player == " " then
obj : get_luaentity ( ) . player = player
end
obj : get_luaentity ( ) . node = player : get_inventory ( ) : get_stack ( " main " , 1 ) : get_name ( )
return true
end
end
return false
end
if c ( " arrow " ) then
minetest.register_craftitem ( " mobs_mc:arrow " , {
2019-03-14 00:09:09 +01:00
description = " Arrow " ,
_doc_items_longdesc = " Arrows are ammunition for bows. " ,
_doc_items_usagehelp = " To use arrows as ammunition for a bow, put them in the inventory slot following the bow. Slots are counted left to right, top to bottom. " ,
2018-05-07 23:10:49 +02:00
inventory_image = " mcl_bows_arrow_inv.png " ,
2017-07-05 03:15:46 +02:00
} )
end
if c ( " arrow " ) and c ( " flint " ) and c ( " feather " ) and c ( " stick " ) then
minetest.register_craft ( {
output = ' mobs_mc:arrow 4 ' ,
recipe = {
{ mobs_mc.items . flint } ,
{ mobs_mc.items . stick } ,
{ mobs_mc.items . feather } ,
}
} )
end
if c ( " bow " ) then
minetest.register_tool ( " mobs_mc:bow_wood " , {
2019-03-14 00:09:09 +01:00
description = " Bow " ,
_doc_items_longdesc = " Bows are ranged weapons to shoot arrows at your foes. " ,
_doc_items_usagehelp = " To use the bow, you first need to have at least one arrow in slot following the bow. Leftclick to shoot. Each hit deals 3 damage. " ,
2018-05-07 23:10:49 +02:00
inventory_image = " mcl_bows_bow.png " ,
2017-07-05 03:15:46 +02:00
on_use = function ( itemstack , user , pointed_thing )
if throwing_shoot_arrow ( itemstack , user , pointed_thing ) then
if not minetest.settings : get_bool ( " creative_mode " ) then
itemstack : add_wear ( 65535 / 50 )
end
end
return itemstack
end ,
} )
minetest.register_craft ( {
output = ' mobs_mc:bow_wood ' ,
recipe = {
{ mobs_mc.items . string , mobs_mc.items . stick , ' ' } ,
{ mobs_mc.items . string , ' ' , mobs_mc.items . stick } ,
{ mobs_mc.items . string , mobs_mc.items . stick , ' ' } ,
}
} )
end
2017-07-06 00:43:34 +02:00
local how_to_throw = " Hold it in your and and leftclick to throw. "
2017-07-05 03:15:46 +02:00
-- egg throwing item
-- egg entity
if c ( " egg " ) then
local egg_GRAVITY = 9
local egg_VELOCITY = 19
mobs : register_arrow ( " mobs_mc:egg_entity " , {
visual = " sprite " ,
visual_size = { x = .5 , y = .5 } ,
textures = { " mobs_chicken_egg.png " } ,
2017-08-06 14:09:25 +02:00
velocity = egg_VELOCITY ,
2017-07-05 03:15:46 +02:00
hit_player = function ( self , player )
player : punch ( minetest.get_player_by_name ( self.playername ) or self.object , 1.0 , {
full_punch_interval = 1.0 ,
damage_groups = { } ,
} , nil )
end ,
2019-03-11 13:25:06 +01:00
hit_mob = function ( self , mob )
mob : punch ( minetest.get_player_by_name ( self.playername ) or self.object , 1.0 , {
2017-07-05 03:15:46 +02:00
full_punch_interval = 1.0 ,
damage_groups = { } ,
} , nil )
end ,
hit_node = function ( self , pos , node )
if math.random ( 1 , 10 ) > 1 then
return
end
pos.y = pos.y + 1
local nod = minetest.get_node_or_nil ( pos )
if not nod
or not minetest.registered_nodes [ nod.name ]
or minetest.registered_nodes [ nod.name ] . walkable == true then
return
end
local mob = minetest.add_entity ( pos , " mobs_mc:chicken " )
local ent2 = mob : get_luaentity ( )
mob : set_properties ( {
visual_size = {
x = ent2.base_size . x / 2 ,
y = ent2.base_size . y / 2
} ,
collisionbox = {
ent2.base_colbox [ 1 ] / 2 ,
ent2.base_colbox [ 2 ] / 2 ,
ent2.base_colbox [ 3 ] / 2 ,
ent2.base_colbox [ 4 ] / 2 ,
ent2.base_colbox [ 5 ] / 2 ,
ent2.base_colbox [ 6 ] / 2
} ,
} )
ent2.child = true
ent2.tamed = true
ent2.owner = self.playername
end
} )
-- shoot egg
local mobs_shoot_egg = function ( item , player , pointed_thing )
2019-02-01 06:33:07 +01:00
local playerpos = player : get_pos ( )
2017-07-05 03:15:46 +02:00
minetest.sound_play ( " default_place_node_hard " , {
pos = playerpos ,
gain = 1.0 ,
max_hear_distance = 5 ,
} )
local obj = minetest.add_entity ( {
x = playerpos.x ,
y = playerpos.y + 1.5 ,
z = playerpos.z
} , " mobs_mc:egg_entity " )
local ent = obj : get_luaentity ( )
local dir = player : get_look_dir ( )
ent.velocity = egg_VELOCITY -- needed for api internal timing
ent.switch = 1 -- needed so that egg doesn't despawn straight away
2019-03-06 04:38:57 +01:00
obj : set_velocity ( {
2017-07-05 03:15:46 +02:00
x = dir.x * egg_VELOCITY ,
y = dir.y * egg_VELOCITY ,
z = dir.z * egg_VELOCITY
} )
2019-03-06 04:38:57 +01:00
obj : set_acceleration ( {
2017-07-05 03:15:46 +02:00
x = dir.x * - 3 ,
y = - egg_GRAVITY ,
z = dir.z * - 3
} )
-- pass player name to egg for chick ownership
local ent2 = obj : get_luaentity ( )
ent2.playername = player : get_player_name ( )
if not minetest.settings : get_bool ( " creative_mode " ) then
item : take_item ( )
end
return item
end
minetest.register_craftitem ( " mobs_mc:egg " , {
2019-03-14 00:09:09 +01:00
description = " Egg " ,
_doc_items_longdesc = " Eggs can be thrown and break on impact. There is a small chance that 1 or even 4 chicks will pop out " ,
2017-07-06 00:43:34 +02:00
_doc_items_usagehelp = how_to_throw ,
2017-07-05 03:15:46 +02:00
inventory_image = " mobs_chicken_egg.png " ,
on_use = mobs_shoot_egg ,
} )
end
2017-07-06 14:38:25 +02:00
-- Snowball
local snowball_GRAVITY = 9
local snowball_VELOCITY = 19
mobs : register_arrow ( " mobs_mc:snowball_entity " , {
visual = " sprite " ,
visual_size = { x = .5 , y = .5 } ,
textures = { " mcl_throwing_snowball.png " } ,
velocity = snowball_VELOCITY ,
hit_player = function ( self , player )
-- FIXME: No knockback
player : punch ( self.object , 1.0 , {
full_punch_interval = 1.0 ,
damage_groups = { } ,
} , nil )
end ,
hit_mob = function ( self , mob )
-- Hurt blazes, but not damage to anything else
local dmg = { }
if mob : get_luaentity ( ) . name == " mobs_mc:blaze " then
dmg = { fleshy = 3 }
end
-- FIXME: No knockback
mob : punch ( self.object , 1.0 , {
full_punch_interval = 1.0 ,
damage_groups = dmg ,
} , nil )
end ,
2017-07-05 03:15:46 +02:00
2017-07-06 14:38:25 +02:00
} )
2017-07-05 03:15:46 +02:00
2017-07-06 14:38:25 +02:00
if c ( " snowball " ) then
2017-07-05 03:15:46 +02:00
-- shoot snowball
local mobs_shoot_snowball = function ( item , player , pointed_thing )
2019-02-01 06:33:07 +01:00
local playerpos = player : get_pos ( )
2017-07-05 03:15:46 +02:00
local obj = minetest.add_entity ( {
x = playerpos.x ,
y = playerpos.y + 1.5 ,
z = playerpos.z
} , " mobs_mc:snowball_entity " )
local ent = obj : get_luaentity ( )
local dir = player : get_look_dir ( )
ent.velocity = snowball_VELOCITY -- needed for api internal timing
ent.switch = 1 -- needed so that egg doesn't despawn straight away
2019-03-06 04:38:57 +01:00
obj : set_velocity ( {
2017-07-05 03:15:46 +02:00
x = dir.x * snowball_VELOCITY ,
y = dir.y * snowball_VELOCITY ,
z = dir.z * snowball_VELOCITY
} )
2019-03-06 04:38:57 +01:00
obj : set_acceleration ( {
2017-07-05 03:15:46 +02:00
x = dir.x * - 3 ,
y = - snowball_GRAVITY ,
z = dir.z * - 3
} )
-- pass player name to egg for chick ownership
local ent2 = obj : get_luaentity ( )
ent2.playername = player : get_player_name ( )
if not minetest.settings : get_bool ( " creative_mode " ) then
item : take_item ( )
end
return item
end
-- Snowball
minetest.register_craftitem ( " mobs_mc:snowball " , {
2019-03-14 00:09:09 +01:00
description = " Snowball " ,
_doc_items_longdesc = " Snowballs can be thrown at your enemies. A snowball deals 3 damage to blazes, but is harmless to anything else. " ,
2017-07-06 00:43:34 +02:00
_doc_items_usagehelp = how_to_throw ,
2017-07-05 03:15:46 +02:00
inventory_image = " mcl_throwing_snowball.png " ,
on_use = mobs_shoot_snowball ,
} )
end
--end maikerumine code
if minetest.settings : get_bool ( " log_mods " ) then
minetest.log ( " action " , " MC mobs loaded " )
end