diff --git a/teleport_potion/README.md b/teleport_potion/README.md new file mode 100644 index 0000000..acf46cf --- /dev/null +++ b/teleport_potion/README.md @@ -0,0 +1,23 @@ +Teleport Potion + +This minetest mod adds both a teleportation potion and pad to the game + +https://forum.minetest.net/viewtopic.php?f=9&t=9234 + + +Change log: + +- 1.1 - Using 0.4.16+ code changes, can only teleport players now +- 1.0 - Added changes by maybe_dragon to bookmark teleport destination before using pads and potions +- 0.9 - Update to newer functions, requires Minetest 0.4.16 to work. +- 0.8 - Teleport pads now have arrows showing direction player will face after use +- 0.7 - Can now enter descriptions for teleport pads e.g. (0,12,0,Home) +- 0.6 - Tweaked and tidied code, added map_generation_limit's +- 0.5 - Added throwable potions +- 0.4 - Code tidy and particle effects added +- 0.3 - Added Teleport Pad +- 0.2 - Bug fixes +- 0.1 - Added SFX +- 0.0 - Initial release + +Lucky Blocks: 4 diff --git a/teleport_potion/description.txt b/teleport_potion/description.txt new file mode 100644 index 0000000..0f227cf --- /dev/null +++ b/teleport_potion/description.txt @@ -0,0 +1 @@ +Adds craftable teleport potions (throwable) and teleport pads. \ No newline at end of file diff --git a/teleport_potion/license.txt b/teleport_potion/license.txt new file mode 100644 index 0000000..fec6f6a --- /dev/null +++ b/teleport_potion/license.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 TenPlus1 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/teleport_potion/mod.conf b/teleport_potion/mod.conf new file mode 100644 index 0000000..5afd872 --- /dev/null +++ b/teleport_potion/mod.conf @@ -0,0 +1 @@ +name = teleport_potion \ No newline at end of file diff --git a/teleport_potion/screenshot.png b/teleport_potion/screenshot.png new file mode 100644 index 0000000..dd99b31 Binary files /dev/null and b/teleport_potion/screenshot.png differ