Update dirt_monster mod to Git commit d8d7ef6...

https://github.com/AntumMT/mod-mob_dirt_monster/tree/d8d7ef6
This commit is contained in:
Jordan Irwin 2021-05-20 00:01:17 -07:00
parent a5ec98076c
commit c4d81f0ee5
11 changed files with 23 additions and 5 deletions

View File

@ -90,6 +90,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
* mobiles/
* [chicken][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [b126cdb Git][ver.chicken] *2021-05-19*
* [cow][mobs_cow] ([MIT][lic.mobs_cow]) -- version: [85af09a Git][ver.mobs_cow] *2021-05-19*
* [dirt_monster][] ([MIT][lic.dirt_monster] -- version: [d8d7ef6 Git][ver.dirt_monster] *2021-05-19*
* [folks][] ([GPL][lic.gpl3.0]) -- version: [0.2.0][ver.folks] *2021-02-23*
* [ghost][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [c09aacb Git][ver.ghost] *2021-05-19*
* [horse][] ([MIT][lic.horse]) -- version: [3240dde Git][ver.horse] *2021-05-19*
@ -284,6 +285,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[deploy_nodes]: https://cornernote.github.io/minetest-deploy_nodes/
[desert_life]: https://forum.minetest.net/viewtopic.php?t=16054
[dinosaurs_aggressive]: https://github.com/AntumMT/mp-dinosaurs_aggressive
[dirt_monster]: https://github.com/AntumMT/mod-mob_dirt_monster
[drawers]: https://forum.minetest.net/viewtopic.php?t=17134
[elevator]: https://forum.minetest.net/viewtopic.php?t=12944
[enchanting]: https://forum.minetest.net/viewtopic.php?t=7354
@ -403,6 +405,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[lic.creatures]: mods/mobiles/engine/creatures/LICENSE.txt
[lic.crops]: mods/farming/crops/LICENSE
[lic.deploy_nodes]: mods/modpacks/deploy_nodes/LICENSE
[lic.dirt_monster]: mods/mobiles/dirt_monster/license.txt
[lic.drawers]: mods/storage/drawers/LICENSE.txt
[lic.elevator]: mods/buildings/elevator/readme.txt
[lic.enchanting]: mods/enchanting/LICENSE
@ -520,6 +523,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[ver.deploy_nodes]: https://github.com/cornernote/minetest-deploy_nodes/tree/b67e162
[ver.desert_life]: https://github.com/NathanSalapat/desert_life/tree/188f984
[ver.dinosaurs_aggressive]: https://github.com/AntumMT/mp-dinosaurs_aggressive/tree/874f299
[ver.dirt_monster]: https://github.com/AntumMT/mod-mob_dirt_monster/tree/d8d7ef6
[ver.drawers]: https://github.com/minetest-mods/drawers/releases/tag/v0.6.2
[ver.enchanting]: https://github.com/minetest-mods/enchanting/tree/13ea31c
[ver.equip_exam]: https://github.com/AntumMT/mod-equip_exam/releases/tag/v1.2

View File

@ -0,0 +1,5 @@
default
mobs
stone_monster
intllib?
asm_spawneggs?

View File

@ -4,7 +4,7 @@ local S = mobs.intllib
-- Dirt Monster by PilzAdam
mobs:register_mob("mobs:dirt_monster", {
mobs:register_mob(":mobs:dirt_monster", {
type = "monster",
passive = false,
attack_type = "dogfight",
@ -69,4 +69,16 @@ mobs:spawn({
})
mobs:register_egg("mobs:dirt_monster", S("Dirt Monster"), "default_dirt.png", 1)
--mobs:register_egg("mobs:dirt_monster", S("Dirt Monster"), "default_dirt.png", 1)
if core.global_exists("asm") then
asm.addEgg({
name = "dirt_monster",
title = S("Dirt Monster"),
inventory_image = "default_dirt.png",
spawn = "mobs:dirt_monster",
ingredients = "default:dirt",
})
end
core.register_alias("mobs:dirt_monster", "spawneggs:dirt_monster")
mobs:alias_mob("mobs_monster:dirt_monster", "mobs:dirt_monster") -- compatibility

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,3 +0,0 @@
default
mobs
intllib?