From f9f21bc35509822427862066ed3f846c02923671 Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Fri, 30 Apr 2021 02:42:20 -0700 Subject: [PATCH] Move engine code to root directory --- README.txt | 34 +++++++----------- bower.json | 25 ------------- creatures/common.lua => common.lua | 0 creatures/LICENSE.txt | 20 ----------- creatures/README.txt | 26 -------------- creatures/depends.txt => depends.txt | 0 creatures/description.txt => description.txt | 0 creatures/functions.lua => functions.lua | 0 creatures/init.lua => init.lua | 0 creatures/items.lua => items.lua | 0 modpack.txt | 0 creatures/register.lua => register.lua | 0 .../sounds => sounds}/creatures_splash.1.ogg | Bin .../sounds => sounds}/creatures_splash.2.ogg | Bin .../textures => textures}/creatures_flesh.png | Bin .../textures => textures}/creatures_meat.png | Bin .../creatures_spawn_egg.png | Bin .../creatures_spawner.png | Bin 18 files changed, 12 insertions(+), 93 deletions(-) delete mode 100644 bower.json rename creatures/common.lua => common.lua (100%) delete mode 100644 creatures/LICENSE.txt delete mode 100644 creatures/README.txt rename creatures/depends.txt => depends.txt (100%) rename creatures/description.txt => description.txt (100%) rename creatures/functions.lua => functions.lua (100%) rename creatures/init.lua => init.lua (100%) rename creatures/items.lua => items.lua (100%) delete mode 100644 modpack.txt rename creatures/register.lua => register.lua (100%) rename {creatures/sounds => sounds}/creatures_splash.1.ogg (100%) rename {creatures/sounds => sounds}/creatures_splash.2.ogg (100%) rename {creatures/textures => textures}/creatures_flesh.png (100%) rename {creatures/textures => textures}/creatures_meat.png (100%) rename {creatures/textures => textures}/creatures_spawn_egg.png (100%) rename {creatures/textures => textures}/creatures_spawner.png (100%) diff --git a/README.txt b/README.txt index 767164e..0f70bc8 100644 --- a/README.txt +++ b/README.txt @@ -1,36 +1,26 @@ -Mod/Modpack Creatures -===================== +Creatures MOB-Engine +==================== Copyright (c) 2015-2016 BlockMen -Version: 2.3.1 +Version: 2.0.2 -A Mod(pack) for Minetest that provides a MOB-Engine and adds several creatures to the game. -Currently included: Ghosts, Zombies, Sheep, Chicken and Oerrki. +This mod provides an engine, that handles the base function for MOB in Minetest. +It offers an easy way to register MOB and allows to custom handling for the needs +of each mob. This engine aims to be a solid base, that has a good balance between +performance and functionality. +See API.txt for more informations on how to use this engine for mobs. -License: +License: ~~~~~~~~ -Code(if not stated differently): +Code: (c) Copyright 2015-2016 BlockMen; modified zlib-License see "LICENSE.txt" for details. -Media(if not stated differently): +Media(textures and other media): (c) Copyright (2014-2016) BlockMen; CC-BY-SA 3.0 -see each MOB-Module for detailed informations. - - Github: ~~~~~~~ -https://github.com/BlockMen/cme - - -Forum: -~~~~~~ -https://forum.minetest.net/viewtopic.php?id=8638 - - -Changelog: -~~~~~~~~~~ -see Changelog.txt +https://github.com/BlockMen/cme/creatures diff --git a/bower.json b/bower.json deleted file mode 100644 index f358d8f..0000000 --- a/bower.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "Creatures MOB-Engine", - "description": "A Mod(pack) for Minetest that provides a MOB-Engine and adds several creatures to the game.\n", - "keywords": [ - "creatures", - "mobs", - "MOB", - "MOB-Engine", - "Creatures MOB-Engine", - "cme", - "zombies", - "sheep", - "ghost", - "monsters", - "hostile" - ], - "homepage": "https://github.com/BlockMen/cme", - "forum": "http://forum.minetest.net/viewtopic.php?f=11&t=8638", - "screenshots": [ - "https://raw.githubusercontent.com/BlockMen/cme/master/screenshot.png" - ], - "authors": [ - "BlockMen" - ] -} diff --git a/creatures/common.lua b/common.lua similarity index 100% rename from creatures/common.lua rename to common.lua diff --git a/creatures/LICENSE.txt b/creatures/LICENSE.txt deleted file mode 100644 index ed5d50c..0000000 --- a/creatures/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2015-2016 BlockMen - - -This software is provided 'as-is', without any express or implied warranty. In no -event will the authors be held liable for any damages arising from the use of -this software. - -Permission is granted to anyone to use this software for any purpose, including -commercial applications, and to alter it and redistribute it freely, subject to the -following restrictions: - - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software in a -product, an acknowledgment in the product documentation is required. - -2. Altered source versions must be plainly marked as such, and must not -be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/creatures/README.txt b/creatures/README.txt deleted file mode 100644 index 0f70bc8..0000000 --- a/creatures/README.txt +++ /dev/null @@ -1,26 +0,0 @@ -Creatures MOB-Engine -==================== -Copyright (c) 2015-2016 BlockMen - -Version: 2.0.2 - - -This mod provides an engine, that handles the base function for MOB in Minetest. -It offers an easy way to register MOB and allows to custom handling for the needs -of each mob. This engine aims to be a solid base, that has a good balance between -performance and functionality. -See API.txt for more informations on how to use this engine for mobs. - - -License: -~~~~~~~~ -Code: -(c) Copyright 2015-2016 BlockMen; modified zlib-License -see "LICENSE.txt" for details. - -Media(textures and other media): -(c) Copyright (2014-2016) BlockMen; CC-BY-SA 3.0 - -Github: -~~~~~~~ -https://github.com/BlockMen/cme/creatures diff --git a/creatures/depends.txt b/depends.txt similarity index 100% rename from creatures/depends.txt rename to depends.txt diff --git a/creatures/description.txt b/description.txt similarity index 100% rename from creatures/description.txt rename to description.txt diff --git a/creatures/functions.lua b/functions.lua similarity index 100% rename from creatures/functions.lua rename to functions.lua diff --git a/creatures/init.lua b/init.lua similarity index 100% rename from creatures/init.lua rename to init.lua diff --git a/creatures/items.lua b/items.lua similarity index 100% rename from creatures/items.lua rename to items.lua diff --git a/modpack.txt b/modpack.txt deleted file mode 100644 index e69de29..0000000 diff --git a/creatures/register.lua b/register.lua similarity index 100% rename from creatures/register.lua rename to register.lua diff --git a/creatures/sounds/creatures_splash.1.ogg b/sounds/creatures_splash.1.ogg similarity index 100% rename from creatures/sounds/creatures_splash.1.ogg rename to sounds/creatures_splash.1.ogg diff --git a/creatures/sounds/creatures_splash.2.ogg b/sounds/creatures_splash.2.ogg similarity index 100% rename from creatures/sounds/creatures_splash.2.ogg rename to sounds/creatures_splash.2.ogg diff --git a/creatures/textures/creatures_flesh.png b/textures/creatures_flesh.png similarity index 100% rename from creatures/textures/creatures_flesh.png rename to textures/creatures_flesh.png diff --git a/creatures/textures/creatures_meat.png b/textures/creatures_meat.png similarity index 100% rename from creatures/textures/creatures_meat.png rename to textures/creatures_meat.png diff --git a/creatures/textures/creatures_spawn_egg.png b/textures/creatures_spawn_egg.png similarity index 100% rename from creatures/textures/creatures_spawn_egg.png rename to textures/creatures_spawn_egg.png diff --git a/creatures/textures/creatures_spawner.png b/textures/creatures_spawner.png similarity index 100% rename from creatures/textures/creatures_spawner.png rename to textures/creatures_spawner.png