From 83223e544adc4828b4f918b0470d2c0fe8940b99 Mon Sep 17 00:00:00 2001 From: COW Date: Fri, 26 Jul 2024 11:13:48 -0400 Subject: [PATCH] Update README.md --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc2b3546..0b09abfc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,48 @@ -# Cawez's Dimensional Connectivity +# CAWEZ's Dimensional Connectivity A simple lightweight Minecraft mod that allows for stacking dimensions. -The mod will generate a config file with the tag "default", stacking the End, the Nether and the Overworld. This will be overwritten automatically by CAWEZ's Mantle to Stratus +The mod will generate a config file with the tag "default", stacking the End, the Nether and the Overworld. It will be overwritten automatically by CAWEZ's Mantle to Stratus (unless the name is changed from "default"). The mod will place "Wells" blocks where + + +Sample format: + +{ + "name": "default", + "stack": { + "minecraft:the_end":{ + "dim_height": 256, + "ceiling_replace": "none", + "ceiling_with": "none", + "dim_above": "none", + + "dim_depth": 0, + "floor_replace": "none", + "floor_with": "none", + "dim_below": "minecraft:overowrld" + }, + + "minecraft:overworld":{ + "dim_height": 320, + "ceiling_replace": "none", + "ceiling_with": "none", + "dim_above": "the_end", + + "dim_depth": -64, + "floor_replace": "minecraft:bedrock", + "floor_with": "minecraft:obsidian", + "dim_below": "minecraft:the_nether" + }, + + "minecraft:the_nether":{ + "dim_height": 128, + "ceiling_replace": "minecraft:bedrock", + "ceiling_with": "minecraft:obsidian", + "dim_above": "none", + + "dim_depth": 0, + "floor_replace": "none", + "floor_with": "none", + "dim_below": "none" + } + } +} \ No newline at end of file