diff --git a/README.md b/README.md index af00d0c..064c7be 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,31 @@ +# minetest modpack water + A few water critters ported from other mob frameworks to "Mobs-Redo". -depends on Mobs-Redo framework: https://github.com/tenplus1/mobs_redo +## Information + + +It Contains: + +* blue/white fish from animals_modpack see [mobs_fish/readme.md](mobs_fish/readme.md) +* crocodile from not-so-simple-mobs [mobs_crocs/readme.md](mobs_crocs/readme.md) +* clownfish from animals_modpack see [mobs_fish/readme.md](mobs_fish/readme.md) +* jellyfish by check [mobs_jellyfish/readme.md](mobs_jellyfish/readme.md) +* shark from animals_modpack see [mobs_sharks/readme.md](mobs_sharks/readme.md) +* turtle by AspireMint see [mobs_turtles/readme.md](mobs_turtles/readme.md) + +Supports the seaplants, seacoral, and seawrecks mods by spawning near certain node types, if available. + +## License License information for the models and textures can be found inside the respective folders. + +CC-BY-SA-NC 2024+ + +* Copyright (C) 2024 mckaygerhard +* Copyright (C) 2015 Sapier +* Copyright (C) 2015 blert2112 +* Copyright (C) 2045 NPX team +* Copyright (C) 2015 AspireMint + diff --git a/mobs_crocs/License.txt b/mobs_crocs/License.txt index eb859b6..13ddf8e 100644 --- a/mobs_crocs/License.txt +++ b/mobs_crocs/License.txt @@ -1,4 +1,5 @@ Licenses +Code: CC-BY-SA-NC Model/Textures: GPL v3 Author: Team NPX diff --git a/mobs_crocs/description.txt b/mobs_crocs/description.txt new file mode 100644 index 0000000..2f210e4 --- /dev/null +++ b/mobs_crocs/description.txt @@ -0,0 +1 @@ +Adds crocodiles into your world like NSSM does. \ No newline at end of file diff --git a/mobs_crocs/mod.conf b/mobs_crocs/mod.conf new file mode 100644 index 0000000..e9f3028 --- /dev/null +++ b/mobs_crocs/mod.conf @@ -0,0 +1,7 @@ +name = mobs_crocs +depends = default, mobs +optional_depends = +description = Adds crocodiles into your world like NSSM does +min_minetest_version = 0.4.16 +media_license = CC-BY-SA-3.0 +license = CC-BY-SA-3.0 diff --git a/mobs_crocs/readme.md b/mobs_crocs/readme.md new file mode 100644 index 0000000..af121d7 --- /dev/null +++ b/mobs_crocs/readme.md @@ -0,0 +1,33 @@ +# minetest-mod-mobs_crocs + +crocodriles for mobs_redo, backported by blert2112 for minetest from NSSM + +## Information + +### Requirements + +* Minetest >= 0.4.17 + +## Settings + +### mobs_crocs.enable_walkers + +these guys are spawned on land near water, they do not +float so they will not attack you if they happen to +stumble into the water (L.O.S. limitation*) + +default: **true** + +### mobs_crocs.enable_floaters + +these guys are spawned in shallow water, they float so they +will follow you onto land to take a bite out of you + +default: **true** + +### mobs_crocs.enable_swimmers + +these guys are spawned in shallow water, they do not float and +will attack you on sight. + +default: **true** diff --git a/mobs_fish/License.txt b/mobs_fish/License.txt index 76852f6..90a8972 100644 --- a/mobs_fish/License.txt +++ b/mobs_fish/License.txt @@ -1,5 +1,6 @@ Licenses +Code: CC-BY-SA-NC Model/Textures: CC-BY-SA 3.0 Author: Sapier diff --git a/mobs_fish/description.txt b/mobs_fish/description.txt new file mode 100644 index 0000000..8f99290 --- /dev/null +++ b/mobs_fish/description.txt @@ -0,0 +1 @@ +Add few fishs into your world. \ No newline at end of file diff --git a/mobs_fish/mod.conf b/mobs_fish/mod.conf new file mode 100644 index 0000000..9bafc61 --- /dev/null +++ b/mobs_fish/mod.conf @@ -0,0 +1,7 @@ +name = mobs_fish +depends = default, mobs +optional_depends = +description = Adds few fishs into your world. +min_minetest_version = 0.4.16 +media_license = CC-BY-SA-3.0 +license = CC-BY-SA-3.0 \ No newline at end of file diff --git a/mobs_fish/readme.md b/mobs_fish/readme.md index a857a20..901bec5 100644 --- a/mobs_fish/readme.md +++ b/mobs_fish/readme.md @@ -1,9 +1,12 @@ +# minetest-mod-mobs_fish -# fish for mobs_water +fish for mobs_water ## Requirements * Minetest >= 0.4.17 +* default +* mobs ## Settings @@ -15,3 +18,10 @@ Enable use sprites on slow cpus that dont have good 3d opengl procesing default: **false** +## License + +CC-BY-SA-NC + +* Copyright (C) 2024 mckaygerhard +* Copyright (C) 2015 Sapier +* Copyright (C) 2015 blert2112 diff --git a/mobs_jellyfish/License.txt b/mobs_jellyfish/License.txt index f10d72f..aa7f841 100644 --- a/mobs_jellyfish/License.txt +++ b/mobs_jellyfish/License.txt @@ -1,5 +1,6 @@ Licenses +Code: CC-BY-SA blert2112 Model/Textures: WTFPL Author: blert2112 @@ -18,4 +19,4 @@ Author: blert2112 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. You just DO WHAT THE FUCK YOU WANT TO. - \ No newline at end of file + diff --git a/mobs_jellyfish/depends.txt b/mobs_jellyfish/depends.txt index 0980886..cc03398 100644 --- a/mobs_jellyfish/depends.txt +++ b/mobs_jellyfish/depends.txt @@ -1,3 +1,2 @@ default - mobs diff --git a/mobs_jellyfish/description.txt b/mobs_jellyfish/description.txt new file mode 100644 index 0000000..682c2b4 --- /dev/null +++ b/mobs_jellyfish/description.txt @@ -0,0 +1 @@ +Add jelyfishs into your world. \ No newline at end of file diff --git a/mobs_jellyfish/mod.conf b/mobs_jellyfish/mod.conf new file mode 100644 index 0000000..17ca4d8 --- /dev/null +++ b/mobs_jellyfish/mod.conf @@ -0,0 +1,7 @@ +name = mobs_jellyfish +depends = default, mobs +optional_depends = +description = Adds jellyfish into your world. +min_minetest_version = 0.4.16 +media_license = CC-BY-SA-3.0 +license = CC-BY-SA-3.0 diff --git a/mobs_jellyfish/readme.md b/mobs_jellyfish/readme.md new file mode 100644 index 0000000..6342bd7 --- /dev/null +++ b/mobs_jellyfish/readme.md @@ -0,0 +1,17 @@ +# minetest-mod-mobs_yellyfish + +Jelly fish for mobs_water + +## Requirements + +* Minetest >= 0.4.17 +* default +* mobs + + +## License + +CC-BY-SA-NC + +* Copyright (C) 2024 mckaygerhard +* Copyright (C) 2015 blert2112 diff --git a/mobs_sharks/License.txt b/mobs_sharks/License.txt index 527ace0..b2e86aa 100644 --- a/mobs_sharks/License.txt +++ b/mobs_sharks/License.txt @@ -1,7 +1,6 @@ Licenses Model/Textures: CC-BY-SA 3.0 - http://creativecommons.org/licenses/by-sa/3.0/de/legalcode Author: Sapier texture modification by: blert2112 diff --git a/mobs_sharks/description.txt b/mobs_sharks/description.txt new file mode 100644 index 0000000..dbfd665 --- /dev/null +++ b/mobs_sharks/description.txt @@ -0,0 +1 @@ +Add sharks to your world \ No newline at end of file diff --git a/mobs_sharks/mod.conf b/mobs_sharks/mod.conf index 138e607..8b2fe32 100644 --- a/mobs_sharks/mod.conf +++ b/mobs_sharks/mod.conf @@ -1,4 +1,7 @@ name = mobs_sharks depends = default, mobs optional_depends = -description = Adds sharks into your world. +description = Add sharks to your world +min_minetest_version = 0.4.17.1 +media_license = CC-BY-SA-NC-3.0 +license = CC-BY-SA-NC-3.0 diff --git a/mobs_sharks/readme.md b/mobs_sharks/readme.md new file mode 100644 index 0000000..7029793 --- /dev/null +++ b/mobs_sharks/readme.md @@ -0,0 +1,32 @@ +# minetest-mod-mobs_sharks + +Add sharks for mobs_water + +## Requirements + +* Minetest >= 0.4.17 +* default +* mobs + +## Settings + +### Enable large shark + +mobs_sharks.enable_large (Enable large shark) bool true + +### Enable medium shark + +mobs_sharks.enable_medium (Enable medium shark) bool true + +### Enable small shark + +mobs_sharks.enable_small (Enable small shark) bool true + + +## License + +CC-BY-SA-NC + +* Copyright (C) 2024 mckaygerhard +* Copyright (C) 2015 Sapier +* Copyright (C) 2015 blert2112 diff --git a/mobs_turtles/License.txt b/mobs_turtles/License.txt index 2b26bff..c67d201 100644 --- a/mobs_turtles/License.txt +++ b/mobs_turtles/License.txt @@ -1,4 +1,6 @@ Licenses -Model/textures: unknown +Code: CC-BY-SA 3.0 blert2112 +Model/Textures: CC-BY-SA 3.0 + http://creativecommons.org/licenses/by-sa/3.0/de/legalcode Author: AspireMint diff --git a/mobs_turtles/description.txt b/mobs_turtles/description.txt new file mode 100644 index 0000000..2d051a9 --- /dev/null +++ b/mobs_turtles/description.txt @@ -0,0 +1 @@ +Adds turtles into your world. \ No newline at end of file diff --git a/mobs_turtles/mod.conf b/mobs_turtles/mod.conf new file mode 100644 index 0000000..097a030 --- /dev/null +++ b/mobs_turtles/mod.conf @@ -0,0 +1,7 @@ +name = mobs_turtles +depends = default, mobs +optional_depends = +description = Adds turtles into your world. +min_minetest_version = 0.4.16 +media_license = CC-BY-SA-3.0 +license = CC-BY-SA-3.0 diff --git a/mobs_turtles/readme.md b/mobs_turtles/readme.md new file mode 100644 index 0000000..8648da9 --- /dev/null +++ b/mobs_turtles/readme.md @@ -0,0 +1,17 @@ +# minetest-mod-mobs_turtles + +turtles for mobs_water + +## Requirements + +* Minetest >= 0.4.17 +* default +* mobs + +## License + +CC-BY-SA-NC + +* Copyright (C) 2024 mckaygerhard +* Copyright (C) 2015 AspireMint +* Copyright (C) 2015 blert2112