Updated Readme again and updated the drop rarity of bones in dirt (was set to 100% for debug) to 1 in 50

This commit is contained in:
0siribix 2021-09-26 20:08:13 -05:00
parent 8b94a7c434
commit a30b911c9e
2 changed files with 4 additions and 6 deletions

View File

@ -8,13 +8,13 @@ Minetest 5.0.0+
Description
-------------
Blink is a short distance teleport with a cooldown period. The further you blink, the longer the cooldown. You can also place a temporary marker that will display your destination if you were to blink. This will add a new dynamic to PvP and/or survival servers. If you blink into a player or a mob, you will find yourself directly behind them facing their back.
Blink is a short distance teleport with a cooldown period, similar to a reuseable ender pearl. The further you blink, the longer the cooldown. You can also place a temporary marker that will display your destination if you were to blink. This will add a new dynamic to PvP and/or survival servers. If you blink into a player or a mob, you will find yourself directly behind them facing their back.
Right click or double tap to blink in the direction you are looking. Left click or tap and hold to show a glowing orb at the location you would blink to. If you do this twice in the same place, you will blink to that spot (see screenshots)
Blink Rune is limited uses (150 by default) and fairly easy to craft. Forever Rune is infinite uses and requires 8 Blink Runes plus a mese block to craft.
Blink Rune is limited uses (150 by default) and fairly easy to craft. Forever Rune is infinite uses and is more expensive to craft. Craft recipes vary depending on which game you are playing or which mods are installed.
Blink adds a few items for crafting purposes: Bone and Bone Shard. If Bonemeal is detected, that bone will be used instead. If Techpack is installed, a grinder recipe is added.
Blink adds a few items for crafting purposes: Bone and Bone Shard. If Bonemeal is detected, that bone will be used instead. If Techpack is installed, a grinder recipe is added. If Bonemeal is not installed then there is a small chance of finding a bone when digging any type of soil.
Blink does not depend on MTG so it will work with any game including Mineclone.
@ -58,7 +58,5 @@ TODO
License
-------
`May change in the future!`
Licensed under the GNU LGPL version 3 or later.
See LICENSE.txt and http://www.gnu.org/licenses/lgpl-3.txt

View File

@ -340,7 +340,7 @@ else
end
table.insert(ndrop.items, {
items = {"blink:bone"},
rarity = 1
rarity = 50
})
core.override_item(k, {drop = ndrop})
end