Skip to content
Snippets Groups Projects
Commit b39a9c79 authored by Milan's avatar Milan
Browse files

initial commit

parents
No related branches found
No related tags found
No related merge requests found
default
mobs
init.lua 0 → 100644
mobs:register_mob("golems:golem_friendly", {
type = "npc",
reach = 3,
damage = 140,
attack_type = "dogfight",
attacks_monsters = true,
hp_min = 2460,
hp_max = 2647,
armor = 1600,
collisionbox = {-0.4, 0, -0.4, 0.4, 2.5, 0.4},
visual = "mesh",
mesh = "golem.b3d",
textures = {
{"golems_golem.png"},
},
follow = "default:cobble",
blood_texture = "default_stone.png",
visual_size = {x=1, y=1},
makes_footstep_sound = true,
walk_velocity = 1,
run_velocity = 2.5,
jump = true,
water_damage = 0,
lava_damage = 120,
light_damage = 0,
fall_damage = 0,
fear_height = 10,
view_range = 14,
animation = {
speed_normal = 10,
speed_run = 14,
walk_start = 46,
walk_end = 66,
stand_start = 1,
stand_end = 20,
run_start = 46,
run_end = 66,
punch_start = 20,
punch_end = 45,
},
})
mobs:register_egg("golems:golem_friendly", "Stone Golem (friendly)", "default_stone.png", 1)
mobs:register_mob("golems:golem", {
type = "monster",
reach = 3,
damage = 280,
attack_type = "dogfight",
hp_min = 2560,
hp_max = 3630,
armor = 1800,
collisionbox = {-0.4, 0, -0.4, 0.4, 2.5, 0.4},
visual = "mesh",
mesh = "golem.b3d",
textures = {
{"golems_golem.png"},
},
blood_texture = "default_stone.png",
visual_size = {x=1, y=1},
makes_footstep_sound = true,
walk_velocity = 1,
run_velocity = 2.5,
jump = true,
drops = {
{name = "default:stone", chance = 2, min = 2, max = 8},
{name = "default:stone_with_mese", chance = 15, min = 2, max = 3},
},
water_damage = 0,
lava_damage = 2,
light_damage = 1,
fall_damage = 0,
fear_height = 10,
view_range = 14,
animation = {
speed_normal = 10,
speed_run = 14,
walk_start = 46,
walk_end = 66,
stand_start = 1,
stand_end = 20,
run_start = 46,
run_end = 66,
punch_start = 20,
punch_end = 45,
},
})
-- mobs:spawn_specfic(name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height, day_toggle)
--
mobs:spawn_specific("golems:golem_friendly", {"default:stone"}, {"default:stone_with_mese"}, 0, 14, 1, 2000, 1, -9000, -31000, nil)
mobs:spawn_specific("golems:golem", {"default:stone"}, {"default:stone_with_mese"}, 0, 14, 1, 45, 2000, 1, -16000, -31000, nil)
mobs:register_egg("golems:golem", "Stone Golem", "default_stone.png", 1)
# Golems for the Illuna Minetestserver
This code was splitted out from [DMobs](https://github.com/D00Med/dmobs).<br>
If you wanna use this repo, keep in mind that this code was modieied and optimized for our Minetestserver.<br>
We recommend to use the original Modpack (see link above).
## Licenses:
* Code: LGPL v2.1
* Lextures: CC-BY-SA v3.0
textures/golems_golem.png

120 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment