Update cmer_chicken to Git commit 6d0c186...

http://github.com/AntumMT/mod-cmer/tree/6d0c186
master
Jordan Irwin 2021-05-25 02:00:10 -07:00
parent 7520790db4
commit d9b5f7a991
8 changed files with 15 additions and 21 deletions

View File

@ -87,7 +87,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
* [painting][] (???) -- version [8961849 Git][ver.painting] *2016-05-05*
* [pipeworks][] ([LGPL][lic.lgpl3.0] / [CC BY-SA][lic.ccbysa4.0]) -- version: [2670fd8 Git][ver.pipeworks] *2021-05-06* ([patched][patch.pipeworks])
* mobiles/
* [chicken][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [d2ddf22 Git][ver.cmer_chicken] *2021-05-24*
* [chicken][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [6d0c186 Git][ver.cmer_chicken] *2021-05-25*
* [cow][mobs_animal] ([MIT][lic.mobs_cow]) -- version: [85af09a Git][ver.mobs_cow] *2021-05-19*
* [dirt_monster][mobs_monster] ([MIT][lic.dirt_monster] -- version: [40c48e0 Git][ver.dirt_monster] *2021-05-20*
* [dungeon_master][mobs_monster] ([MIT][lic.dungeon_master] -- version: [00c890f Git][ver.dungeon_master] *2021-05-20*
@ -522,7 +522,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[ver.christmas]: https://github.com/TheZenKitteh/minetest-christmas/tree/d3bd872
[ver.cleaner]: https://github.com/AntumMT/mod-cleaner/tree/e8359d8
[ver.cmer]: https://github.com/AntumMT/mod-cmer/tree/1000562
[ver.cmer_chicken]: http://github.com/AntumMT/mod-cmer/tree/d2ddf22
[ver.cmer_chicken]: http://github.com/AntumMT/mod-cmer/tree/6d0c186
[ver.cmer_ghost]: https://github.com/AntumMT/mod-cmer/tree/1ace22c
[ver.cmer_oerkki]: https://github.com/AntumMT/mod-cmer/tree/6e043e9
[ver.cmer_shark]: https://github.com/AntumMT/mod-shark/tree/a39634a

View File

@ -1,6 +0,0 @@
core.register_craftitem(":antum:feather", {
description = "Feather",
inventory_image = "antum_feather_white.png",
})
core.register_alias("antum:feather_white", "antum:feather")

View File

@ -1,6 +1,5 @@
local scripts = {
"animal",
"tool",
"misc",
"spawneggs",

View File

@ -24,7 +24,7 @@ if antum.dependsSatisfied({"throwing", "antum"}) then
antum.registerCraft({
output = "castle_weapons:crossbow_bolt 6",
recipe = {
{"antum:feather", "default:stick", "default:steel_ingot"},
{"creatures:feather", "default:stick", "default:steel_ingot"},
},
})
@ -32,7 +32,7 @@ if antum.dependsSatisfied({"throwing", "antum"}) then
antum.registerCraft({
output = "castle_weapons:crossbow_bolt 6",
recipe = {
{"default:steel_ingot", "default:stick", "antum:feather"},
{"default:steel_ingot", "default:stick", "creatures:feather"},
},
})
end

View File

@ -22,16 +22,6 @@ if core.get_modpath("spawneggs") then
end
end
-- Chicken spawnegg
if core.registered_entities["creatures:chicken"] then
asm.addEgg({
name = "chicken",
spawn = "creatures:chicken",
ingredients = "antum:feather",
})
end
-- cow
if core.registered_entities["mobs_animal:cow"] and core.registered_items["mobs:bucket_milk"] then
asm.addEgg({

View File

@ -165,3 +165,13 @@ local def = {
}
creatures.register_mob(def)
if core.global_exists("asm") then
asm.addEgg({
name = "chicken",
inventory_image = "creatures_chicken_spawnegg.png",
spawn = "creatures:chicken",
ingredients = "creatures:feather",
})
end
core.register_alias("creatures:chicken", "spawneggs:chicken")

View File

@ -1,3 +1,4 @@
name = cmer_chicken
title = Chicken for Revived Creatures mob engine.
depends = cmer, default
optional_depends = asm_spawneggs

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B