Added mod files
This commit is contained in:
95
overrides/config/blockswap/block_swap.json5
Normal file
95
overrides/config/blockswap/block_swap.json5
Normal file
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
This file uses the ".json5" file extension which allows for comments like this in a json file!
|
||||
Your text editor may show this file with invalid/no syntax, if so, we recommend you download:
|
||||
|
||||
VSCode: https://code.visualstudio.com/
|
||||
JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5
|
||||
|
||||
to make editing this file much easier.
|
||||
*/
|
||||
{
|
||||
// Generates all block states for all blocks in the registry.
|
||||
"generate_all_known_states": false,
|
||||
// Whether blocks are replaced in existing chunks.
|
||||
"retro_gen": true,
|
||||
/* A map of states that specifies what the "old" block state is and what its "new" block state is.
|
||||
See "known_states" folder("generate_all_known_states" must be set to true in this config) to see all known block states available for all blocks available in the registry.
|
||||
Example:
|
||||
"state_swapper": [
|
||||
{
|
||||
"new": {
|
||||
"Name": "minecraft:birch_log",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"axis": "x"
|
||||
}
|
||||
},
|
||||
"old": {
|
||||
"Name": "minecraft:oak_log",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"axis": "z"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"new": {
|
||||
"Name": "minecraft:birch_leaves",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"distance": "7",
|
||||
"persistent": "true"
|
||||
}
|
||||
},
|
||||
"old": {
|
||||
"Name": "minecraft:acacia_log",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"axis": "z"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"new": {
|
||||
"Name": "minecraft:jungle_log",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"axis": "x"
|
||||
}
|
||||
},
|
||||
"old": {
|
||||
"Name": "minecraft:birch_log",
|
||||
// Properties define the state of this block/fluid.
|
||||
"Properties": {
|
||||
"axis": "z"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"new": {
|
||||
"Name": "minecraft:jungle_planks",
|
||||
},
|
||||
"old": {
|
||||
"Name": "minecraft:acacia_planks",
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
*/
|
||||
"state_swapper": [],
|
||||
/* A map of blocks that specifies what the "old" block is and what its "new" block is.
|
||||
Example:
|
||||
"swapper": {
|
||||
"minecraft:coarse_dirt": "minecraft:dirt",
|
||||
"minecraft:diamond_block": "minecraft:emerald_block"
|
||||
}
|
||||
*/
|
||||
"swapper": {
|
||||
"minecraft:redstone_ore": "thermal:cinnabar_ore"
|
||||
"minecraft:deepslate_redstone_ore": "thermal:deepslate_cinnabar_ore",
|
||||
"ae2:flawless_budding_quartz": "ae2:quartz_block",
|
||||
"ae2:flawed_budding_quartz": "ae2:quartz_block",
|
||||
"ae2:chipped_budding_quartz": "ae2:quartz_block",
|
||||
"ae2:damaged_budding_quartz": "ae2:quartz_block"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user