From 1be3ddf6e86099a33ad04eed7f791d9b98e75683 Mon Sep 17 00:00:00 2001 From: ThePython <87204246+ThePython10110@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:03:23 -0800 Subject: [PATCH] Change to Tome of Knowledge --- README.md | 5 +++++ ...tome.png => exchangeclone_tome_of_knowledge.png} | Bin exchangeclone/transmutation_table.lua | 11 ++++++----- settingtypes.txt | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) rename exchangeclone/textures/{exchangeclone_alchemical_tome.png => exchangeclone_tome_of_knowledge.png} (100%) diff --git a/README.md b/README.md index fc68466..b6027b5 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ You can find the old textures and sounds by going back to previous commits in Gi ## Changelog
Look at this fancy expanding changelog +### 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) diff --git a/exchangeclone/textures/exchangeclone_alchemical_tome.png b/exchangeclone/textures/exchangeclone_tome_of_knowledge.png similarity index 100% rename from exchangeclone/textures/exchangeclone_alchemical_tome.png rename to exchangeclone/textures/exchangeclone_tome_of_knowledge.png diff --git a/exchangeclone/transmutation_table.lua b/exchangeclone/transmutation_table.lua index 7e33473..58f878a 100644 --- a/exchangeclone/transmutation_table.lua +++ b/exchangeclone/transmutation_table.lua @@ -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 = { diff --git a/settingtypes.txt b/settingtypes.txt index d805a01..b8bfd64 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -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 \ No newline at end of file +exchangeclone.allow_crafting_alchemical_tome (Allow crafting Alchemical Tome) bool false \ No newline at end of file