diff --git a/README.md b/README.md index 2c47d3ec..042cb3ad 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m * [rat][mobs_rat] ([MIT][lic.mobs_rat]) -- version: [2a8d115 Git][ver.mobs_rat] *2021-05-20* * [sand_monster][mobs_monster] ([MIT][lic.sand_monster]) -- version: [3dd5954 Git][ver.sand_monster] *2021-05-20* * [shark][] ([CC0 / CC BY-SA][lic.cmer_shark]) -- version: [cb35cb2 Git][ver.cmer_shark] *2021-05-25* - * [sheep][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [0b17528 Git][ver.cmer_sheep] *2021-05-25* + * [sheep][creatures] ([Zlib][lic.creatures] / [CC BY-SA][lic.ccbysa3.0]) -- version: [e5e0e31 Git][ver.cmer_sheep] *2021-05-25* * [skeleton][cmer_skeleton] ([MIT][lic.cmer_skeleton]) -- version: [df839f1 Git][ver.cmer_skeleton] *2021-05-24* * [sneeker][] ([MIT][lic.sneeker]) -- version: [1.0][ver.sneeker] *2021-05-08* * [spider][cmer_spider] ([unilicense][lic.cmer_spider]) -- version: [dd31f74 Git][ver.cmer_spider] *2021-05-24* @@ -526,7 +526,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m [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/cb35cb2 -[ver.cmer_sheep]: https://github.com/AntumMT/mod-cmer/tree/0b17528 +[ver.cmer_sheep]: https://github.com/AntumMT/mod-cmer/tree/e5e0e31 [ver.cmer_skeleton]: https://github.com/AntumMT/mod-skeleton/tree/df839f1 [ver.cmer_spider]: https://github.com/AntumMT/mod-spider/tree/dd31f74 [ver.cmer_zombie]: https://github.com/AntumMT/mod-cmer/tree/3dd783c diff --git a/mods/mobiles/sheep/TODO.txt b/mods/mobiles/sheep/TODO.txt index ea80a3cd..497916d6 100644 --- a/mods/mobiles/sheep/TODO.txt +++ b/mods/mobiles/sheep/TODO.txt @@ -3,3 +3,4 @@ TODO: - add localization support - use settings for lifespan, spawn interval, & spawn chance - don't let owned sheep be killed by other players +- store color & wool state in spawnegg when picked up diff --git a/mods/mobiles/sheep/init.lua b/mods/mobiles/sheep/init.lua index 8b60cabb..3c76fb7d 100644 --- a/mods/mobiles/sheep/init.lua +++ b/mods/mobiles/sheep/init.lua @@ -237,7 +237,7 @@ creatures.register_mob(def) if core.global_exists("asm") then asm.addEgg({ name = "sheep", - inventory_image = "creatures_egg_sheep.png", + inventory_image = "creatures_sheep_inv.png", spawn = "creatures:sheep", ingredients = "group:wool", }) diff --git a/mods/mobiles/sheep/screenshot.png b/mods/mobiles/sheep/screenshot.png index 1fba4c20..4c543aa4 100644 Binary files a/mods/mobiles/sheep/screenshot.png and b/mods/mobiles/sheep/screenshot.png differ diff --git a/mods/mobiles/sheep/textures/creatures_sheep_inv.png b/mods/mobiles/sheep/textures/creatures_sheep_inv.png new file mode 100644 index 00000000..baaa1bbc Binary files /dev/null and b/mods/mobiles/sheep/textures/creatures_sheep_inv.png differ