Skip to content

block_transmutation_map.json

Skirlez edited this page Feb 11, 2024 · 1 revision

This page will discuss the block_transmutation_map.json file in the mod's config folder.

Purpose

This file defines which blocks the Philosopher's Stone can transmute between. Here's an example sequence entry:

[
   "minecraft:gravel",
   "minecraft:sandstone"
],

With this sequence added, right-clicking Gravel with the Philosopher's Stone held will transmute it into Sandstone, and right-clicking Sandstone will transmute it into Gravel.

Sequences can be as long as you'd like, for example:

[
   "minecraft:oak_log",
   "minecraft:birch_log",
   "minecraft:spruce_log",
   "minecraft:jungle_log",
   "minecraft:dark_oak_log",
   "minecraft:acacia_log"
],

Continuously right-clicking will transmute the block from Oak Log to Birch Log to Spruce Log, and so on, and will eventually loop back around to Oak Log.

If you do NOT want the looping behavior, you can specify a null at the end, like so:

[
   "minecraft:dirt",
   "minecraft:sand",
   null
],

No quotations, just a null. This makes Dirt go to Sand, and it will then stop (unless Sand is in another sequence).

Clone this wiki locally