This commit is contained in:
KuacGraxa 2023-08-22 17:26:49 -03:00
parent 9edb196352
commit c455453cd5
6 changed files with 10 additions and 5 deletions

View File

@ -45,7 +45,7 @@ mobs:register_mob("skullberserker:skull_berserker", {
floats = 0,
view_range = 25,
drops = {
{name = "skullkingsitems:bone", chance = 2, min = 1, max = 1},
{name = "skullkingsitems:bone", chance = 1, min = 1, max = 2},
{name = "default:axe_stone", chance = 5, min = 1, max = 1},
{name = "default:iron_lump", chance = 3, min = 1, max = 1},
},

View File

@ -64,7 +64,7 @@ mobs:register_mob("skullarchers:sarchers", {
floats = 0,
view_range = 20,
drops = {
{name = "skullkingsitems:bone", chance = 2, min = 1, max = 1,},
{name = "skullkingsitems:bone", chance = 1, min = 1, max = 2,},
{name = "x_bows:arrow_stone", chance = 3, min = 1, max = 1},
{name = "x_bows:bow_wood", chance = 5, min = 1, max = 1},
},

View File

@ -60,7 +60,7 @@ mobs:register_mob("skulls:skull", {
floats = 0,
view_range = 20,
drops = {
{name = "skullkingsitems:bone", chance = 2, min = 1, max = 1},
{name = "skullkingsitems:bone", chance = 1, min = 1, max = 1},
},

View File

@ -63,7 +63,7 @@ mobs:register_mob("skullsword:ssword", {
floats = 0,
view_range = 25,
drops = {
{name = "skullkingsitems:bone", chance = 2, min = 1, max = 1},
{name = "skullkingsitems:bone", chance = 1, min = 1, max = 2},
{name = "default:sword_stone", chance = 5, min = 1, max = 1},
{name = "default:iron_lump", chance = 3, min = 1, max = 1},
},

View File

@ -25,7 +25,7 @@ mobs:register_mob("spectrum:spectrum", {
textures = {
{"spectrum.png"},
},
--glow = 8,
glow = 3,
blood_texture = "blood_spectrum.png",
sounds = {
random = "spectrum",
@ -62,6 +62,8 @@ mobs:register_mob("spectrum:spectrum", {
},
--[[
on_spawn = function(self)
@ -85,10 +87,12 @@ mobs:register_mob("spectrum:spectrum", {
--do_custom = function(self, dtime)
--end,
]]
})
--[[
minetest.register_entity("spectrum:spectrum_eyes", {
visual = "mesh",
mesh = "spectrum_eye.b3d",
@ -110,6 +114,7 @@ minetest.register_entity("spectrum:spectrum_eyes", {
})
]]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB