Change to Tome of Knowledge
This commit is contained in:
parent
061b4fb140
commit
1be3ddf6e8
|
@ -74,6 +74,8 @@ You can find the old textures and sounds by going back to previous commits in Gi
|
|||
## Changelog
|
||||
<details><summary>Look at this fancy expanding changelog</summary>
|
||||
|
||||
### v7.3
|
||||
|
||||
### v7.2
|
||||
* The Gem of Eternal Density now has filter options, accessed with left click (requested by @programmerjake).
|
||||
* Added support for the following mods:
|
||||
|
@ -83,6 +85,9 @@ You can find the old textures and sounds by going back to previous commits in Gi
|
|||
* Mobs Animals
|
||||
* When attempting to place a torch with an RM Pickaxe or Red Morningstar, if the player has no personal EMC, the torch is no longer placed.
|
||||
|
||||
### v7.2
|
||||
* Renamed Alchemical Tome to Tome of Knowledge, and made it uncraftable by default.
|
||||
|
||||
### v7.1
|
||||
* Axes and Katars now correctly function when used on bamboo and copper blocks.
|
||||
* The Gem of Eternal Density and various other things now respects players' actual hotbar size (reported by @programmerjake)
|
||||
|
|
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 282 B |
|
@ -373,13 +373,14 @@ minetest.register_node("exchangeclone:transmutation_table", {
|
|||
_mcl_blast_resistance = 6,
|
||||
})
|
||||
|
||||
minetest.register_tool("exchangeclone:alchemical_tome", {
|
||||
description = "Alchemical Tome\nKlein Star Omegas in crafting recipe must be full",
|
||||
inventory_image = "exchangeclone_alchemical_tome.png",
|
||||
wield_image = "exchangeclone_alchemical_tome.png",
|
||||
minetest.register_tool("exchangeclone:tome_of_knowledge", {
|
||||
description = "Tome of Knowledge\nKlein Star Omegas in crafting recipe must be full\nLearns all items when put into Transmutation Table(t)",
|
||||
inventory_image = "exchangeclone_tome_of_knowledge.png",
|
||||
groups = {disable_repair = 1, fire_immune = 1}
|
||||
})
|
||||
|
||||
minetest.register_alias("exchangeclone:alchemical_tome", "exchangeclone:tome_of_knowledge")
|
||||
|
||||
local book = "default:book"
|
||||
local obsidian = "default:obsidian"
|
||||
local stone = "default:stone"
|
||||
|
@ -408,7 +409,7 @@ minetest.register_craft({
|
|||
},
|
||||
})
|
||||
|
||||
if minetest.settings:get_bool("exchangeclone.allow_crafting_alchemical_tome", true) then
|
||||
if minetest.settings:get_bool("exchangeclone.allow_crafting_alchemical_tome", false) then
|
||||
minetest.register_craft({
|
||||
output = "exchangeclone:alchemical_tome",
|
||||
recipe = {
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
exchangeclone.keep_data (Keep temporary data after loading) bool false
|
||||
|
||||
# Allow the crafting recipe for the Alchemical Tome
|
||||
exchangeclone.allow_crafting_alchemical_tome (Allow crafting Alchemical Tome) bool true
|
||||
exchangeclone.allow_crafting_alchemical_tome (Allow crafting Alchemical Tome) bool false
|
Loading…
Reference in New Issue