mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-25 18:20:36 +01:00
[mobs] Fix missing commas
This commit is contained in:
parent
f0d1a13e8d
commit
04d28d7a6b
@ -34,16 +34,16 @@ mobs:register_mob("mobs:pumpking", {
|
|||||||
stepheight = 1.1,
|
stepheight = 1.1,
|
||||||
drops = {
|
drops = {
|
||||||
-- Ressource & Decoration drops
|
-- Ressource & Decoration drops
|
||||||
{name = "farming:jackolantern", chance = 1, min = 1, max = 1}
|
{name = "farming:jackolantern", chance = 1, min = 1, max = 1},
|
||||||
{name = "default:diamond_block", chance = 2, min = 1, max = 3}
|
{name = "default:diamond_block", chance = 2, min = 1, max = 3},
|
||||||
-- Hunter drops
|
-- Hunter drops
|
||||||
{name = "3d_armor:helmet_hardenedleather", chance = 10, min = 1, max = 1}
|
{name = "3d_armor:helmet_hardenedleather", chance = 10, min = 1, max = 1},
|
||||||
{name = "3d_armor:chestplate_hardenedleather", chance = 10, min = 1, max = 1}
|
{name = "3d_armor:chestplate_hardenedleather", chance = 10, min = 1, max = 1},
|
||||||
{name = "throwing:bow_minotaur_horn", chance = 33, min = 1, max = 1}
|
{name = "throwing:bow_minotaur_horn", chance = 33, min = 1, max = 1},
|
||||||
-- Warrior drops
|
-- Warrior drops
|
||||||
{name = "3d_armor:helmet_mithril", chance = 10, min = 1, max = 1}
|
{name = "3d_armor:helmet_mithril", chance = 10, min = 1, max = 1},
|
||||||
{name = "3d_armor:chestplate_mithril", chance = 10, min = 1, max = 1}
|
{name = "3d_armor:chestplate_mithril", chance = 10, min = 1, max = 1},
|
||||||
{name = "moreores:sword_mithril", chance = 33, min = 1, max = 1}
|
{name = "moreores:sword_mithril", chance = 33, min = 1, max = 1},
|
||||||
},
|
},
|
||||||
lifetimer = 300, -- 5 minutes
|
lifetimer = 300, -- 5 minutes
|
||||||
--shoot_interval = 1000, -- (lifetimer - (lifetimer / 4)), borrowed for do_custom timer
|
--shoot_interval = 1000, -- (lifetimer - (lifetimer / 4)), borrowed for do_custom timer
|
||||||
|
Loading…
Reference in New Issue
Block a user