[pyutest_mobs] Fix mob drops

This commit is contained in:
IamPyu
2024-09-30 22:04:30 -06:00
parent 287cfdcb4a
commit 2ce0077927
4 changed files with 8 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ mobs:register_mob("pyutest_mobs:monster", {
drops = {
{
name = "pyutest_core:bone",
name = "pyutest_tools:bone",
min = 2,
max = 3,
chance = 1
@@ -64,13 +64,13 @@ mobs:register_mob("pyutest_mobs:human", {
makes_footstep_sound = true,
drops = {
{
name = "pyutest_core:bone",
name = "pyutest_tools:bone",
min = 2,
max = 3,
chance = 1
},
{
name = "pyutest_core:apple",
name = "pyutest_tools:apple",
min = 1,
max = 4,
chance = 2.5

View File

@@ -64,7 +64,7 @@ mobs:register_mob("pyutest_mobs:necromancer", {
},
drops = {
{
name = "pyutest_core:magic_shards",
name = "pyutest_magic:magic_shards",
min = 4,
max = 8,
chance = 1

View File

@@ -58,14 +58,14 @@ mobs:register_mob("pyutest_mobs:snowman", {
drops = {
{
name = "pyutest_core:magic_shards",
name = "pyutest_magic:magic_shards",
min = 2,
max = 5,
chance = 1
},
{
name = "pyutest_core:snowball",
name = "pyutest_tools:snowball",
min = 4,
max = 9,
chance = 1

View File

@@ -61,14 +61,14 @@ mobs:register_mob("pyutest_mobs:wind_warrior", {
drops = {
{
name = "pyutest_core:magic_shards",
name = "pyutest_magic:magic_shards",
min = 4,
max = 7,
chance = 1
},
{
name = "pyutest_core:windball",
name = "pyutest_magic:windball",
min = 2,
max = 4,
chance = 1