Refactor a few things
* Reorganize build.gradle * Upgrade gradle to 4.6 * Rename items in code to match actual names * Reformat JSON * Remove rift item * Move rift tile entity to tileentities package * Remove unnecessary .gitignore entries
3
.gitignore
vendored
|
@ -24,8 +24,5 @@ build
|
|||
|
||||
# other
|
||||
run
|
||||
libs
|
||||
forge-*-changelog.txt
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
logs
|
||||
|
|
87
build.gradle
|
@ -18,54 +18,6 @@ apply plugin: 'net.minecraftforge.gradle.forge'
|
|||
|
||||
repositories {
|
||||
maven { url "https://jitpack.io" }
|
||||
ivy {
|
||||
url 'https://github.com/'
|
||||
layout 'pattern', {
|
||||
//noinspection GroovyAssignabilityCheck (IntelliJ is wrong)
|
||||
artifact '/[organisation]/[module]/raw/master/repository/snapshots/[revision].[ext]'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Version info
|
||||
String baseversion = "3.0" // Set beta to 0 after changing this
|
||||
int beta = 7 // Set this to 0 for a non-beta release
|
||||
int betaSub = 1
|
||||
ext.mcversion = "1.12.2"
|
||||
ext.forgeversion = "14.23.2.2623"
|
||||
String mcpversion = "snapshot_20180227"
|
||||
|
||||
String suffix = ""
|
||||
String shortSuffix = ""
|
||||
if (beta != 0) {
|
||||
suffix += ".$beta" + "-b"
|
||||
if (betaSub != 0) {
|
||||
suffix += "-$betaSub"
|
||||
}
|
||||
shortSuffix = suffix
|
||||
if (System.getenv("TRAVIS_BUILD_NUMBER") != null && beta != 0) {
|
||||
suffix += "+${System.getenv("TRAVIS_BUILD_NUMBER")}"
|
||||
} else {
|
||||
suffix += "+UNOFFICIAL"
|
||||
}
|
||||
}
|
||||
version = ext.modversion = baseversion + suffix
|
||||
|
||||
group = "org.dimdev.dimdoors"
|
||||
archivesBaseName = "Dimdoors"
|
||||
jar.archiveName = "Dimdoors-" + version + ".jar" // Constant name for travis
|
||||
|
||||
sourceCompatibility = "1.8"
|
||||
compileJava {
|
||||
//options.compilerArgs += "-proc:only"
|
||||
}
|
||||
|
||||
minecraft {
|
||||
version = "$mcversion-$forgeversion"
|
||||
runDir = "run"
|
||||
mappings = mcpversion
|
||||
replace '${version}', baseversion + shortSuffix
|
||||
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
||||
}
|
||||
|
||||
configurations {
|
||||
|
@ -81,6 +33,45 @@ dependencies {
|
|||
compileOnly 'com.github.OpenCubicChunks:CubicChunks:MC_1.12-SNAPSHOT'
|
||||
}
|
||||
|
||||
// Mod version
|
||||
version = ext.modversion = "3.0.7"
|
||||
boolean isBeta = true
|
||||
group = "org.dimdev.dimdoors"
|
||||
|
||||
// Build number
|
||||
String fullVersion = version
|
||||
if (System.getenv("TRAVIS_BUILD_NUMBER") != null) {
|
||||
fullVersion += "+${System.getenv("TRAVIS_BUILD_NUMBER")}"
|
||||
} else {
|
||||
fullVersion += "+UNOFFICIAL"
|
||||
}
|
||||
if (isBeta) {
|
||||
fullVersion += "-b"
|
||||
}
|
||||
|
||||
// Jar name format
|
||||
archivesBaseName = "DimensionalDoors"
|
||||
jar.archiveName = "DimensionalDoors-" + fullVersion + ".jar" // Constant name for travis
|
||||
|
||||
// Minecraft, MCP, Forge, and Java versions
|
||||
sourceCompatibility = targetCompatibility = "1.8"
|
||||
ext.mcversion = "1.12.2"
|
||||
ext.forgeversion = "14.23.2.2623"
|
||||
String mcpversion = "snapshot_20180227"
|
||||
|
||||
minecraft {
|
||||
version = "$mcversion-$forgeversion"
|
||||
runDir = "run"
|
||||
mappings = mcpversion
|
||||
replace '${version}', fullVersion
|
||||
makeObfSourceJar = false // Unobfuscated sources jar
|
||||
}
|
||||
|
||||
// Tasks
|
||||
compileJava {
|
||||
//options.compilerArgs += "-proc:only" // To debug AnnotatedNBT code generation
|
||||
}
|
||||
|
||||
jar {
|
||||
from configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }
|
||||
}
|
||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
3
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,5 @@
|
|||
#Tue Dec 19 19:32:34 EST 2017
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
|
||||
|
|
6
gradlew
vendored
|
@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
|
|||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn ( ) {
|
||||
warn () {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die ( ) {
|
||||
die () {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
|
@ -155,7 +155,7 @@ if $cygwin ; then
|
|||
fi
|
||||
|
||||
# Escape application args
|
||||
save ( ) {
|
||||
save () {
|
||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||
echo " "
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package org.dimdev.dimdoors;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.entity.player.EntityPlayerMP;
|
||||
import net.minecraft.util.text.TextComponentTranslation;
|
||||
import org.dimdev.dimdoors.shared.ModConfig;
|
||||
import org.dimdev.dimdoors.shared.commands.CommandFabricConvert;
|
||||
|
@ -49,7 +48,7 @@ public class DimDoors {
|
|||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public ItemStack getTabIconItem() {
|
||||
return new ItemStack(ModItems.DIMENSIONAL_DOOR);
|
||||
return new ItemStack(ModItems.IRON_DIMENSIONAL_DOOR);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -31,24 +31,24 @@ public final class ModelManager {
|
|||
register(getItemFromBlock(ModBlocks.WOOD_DIMENSIONAL_TRAPDOOR));
|
||||
|
||||
//Item registration
|
||||
register(ModItems.DIMENSIONAL_DOOR);
|
||||
register(ModItems.IRON_DIMENSIONAL_DOOR);
|
||||
register(ModItems.GOLD_DIMENSIONAL_DOOR);
|
||||
register(ModItems.GOLD_DOOR);
|
||||
register(ModItems.PERSONAL_DIMENSIONAL_DOOR);
|
||||
register(ModItems.QUARTZ_DIMENSIONAL_DOOR);
|
||||
register(ModItems.QUARTZ_DOOR);
|
||||
register(ModItems.STABLE_FABRIC);
|
||||
register(ModItems.CHAOS_DOOR);
|
||||
register(ModItems.WARP_DIMENSIONAL_DOOR);
|
||||
register(ModItems.UNSTABLE_DIMENSIONAL_DOOR);
|
||||
register(ModItems.WOOD_DIMENSIONAL_DOOR);
|
||||
register(ModItems.WORLD_THREAD);
|
||||
register(ModItems.RIFT_CONNECTION_TOOL);
|
||||
register(ModItems.RIFT_CONFIGURATION_TOOL);
|
||||
register(ModItems.RIFT_BLADE);
|
||||
register(ModItems.RIFT_REMOVER);
|
||||
register(ModItems.RIFT_SIGNATURE);
|
||||
register(ModItems.STABILIZED_RIFT_SIGNATURE);
|
||||
register(ModItems.BOOTS_WOVEN_WORLD_THREAD);
|
||||
register(ModItems.CHESTPLATE_WOVEN_WORLD_THREAD);
|
||||
register(ModItems.HELMET_WOVEN_WORLD_THREAD);
|
||||
register(ModItems.LEGGINGS_WOVEN_WORLD_THREAD);
|
||||
register(ModItems.WOVEN_WORLD_THREAD_BOOTS);
|
||||
register(ModItems.WOVEN_WORLD_THREAD_CHESTPLATE);
|
||||
register(ModItems.WOVEN_WORLD_THREAD_HELMET);
|
||||
register(ModItems.WOVEN_WORLD_THREAD_LEGGINGS);
|
||||
}
|
||||
|
||||
public static void registerModelVariants() {
|
||||
|
|
|
@ -47,13 +47,13 @@ public final class CraftingManager {
|
|||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.STABLE_FABRIC, 1),
|
||||
"yxy", 'x', Items.ENDER_PEARL, 'y', ModItems.WORLD_THREAD));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.DIMENSIONAL_DOOR, 1),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.IRON_DIMENSIONAL_DOOR, 1),
|
||||
"yxy", 'x', ModItems.STABLE_FABRIC, 'y', Items.IRON_DOOR));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.CHAOS_DOOR, 1),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.UNSTABLE_DIMENSIONAL_DOOR, 1),
|
||||
"xyx", 'x', Items.ENDER_EYE, 'y', Items.IRON_DOOR));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WARP_DIMENSIONAL_DOOR, 1),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOOD_DIMENSIONAL_DOOR, 1),
|
||||
"yxy", 'x', Items.ENDER_PEARL, 'y', Items.OAK_DOOR));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModBlocks.WOOD_DIMENSIONAL_TRAPDOOR, 1),
|
||||
|
@ -65,7 +65,7 @@ public final class CraftingManager {
|
|||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.GOLD_DOOR, 1),
|
||||
"yy", "yy", "yy", 'y', Items.GOLD_INGOT));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.PERSONAL_DIMENSIONAL_DOOR, 1),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.QUARTZ_DIMENSIONAL_DOOR, 1),
|
||||
"yx", 'x', ModItems.STABLE_FABRIC, 'y', ModItems.QUARTZ_DOOR));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.QUARTZ_DOOR, 1),
|
||||
|
@ -75,7 +75,7 @@ public final class CraftingManager {
|
|||
"y", "y", "x", 'y', ModItems.STABLE_FABRIC, 'x', Items.IRON_SWORD));
|
||||
|
||||
//should not be craftable
|
||||
/*event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.RIFT_CONNECTION_TOOL),
|
||||
/*event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.RIFT_CONFIGURATION_TOOL),
|
||||
" w ", "xyx", "xzx", 'z', Items.DIAMOND_SHOVEL, 'y', ModItems.STABLE_FABRIC, 'x', ModItems.WORLD_THREAD, 'w', Items.DIAMOND));*/
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.RIFT_REMOVER),
|
||||
|
@ -93,28 +93,28 @@ public final class CraftingManager {
|
|||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.STABILIZED_RIFT_SIGNATURE),
|
||||
" x ", "xyx", " x ", 'x', ModItems.STABLE_FABRIC, 'y', ModItems.RIFT_SIGNATURE));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.HELMET_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_HELMET),
|
||||
"xxx", "x x", 'x', ModItems.WORLD_THREAD));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.CHESTPLATE_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_CHESTPLATE),
|
||||
"x x", "xxx", "xxx", 'x', ModItems.WORLD_THREAD));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.LEGGINGS_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_LEGGINGS),
|
||||
"xxx", "x x", "x x", 'x', ModItems.WORLD_THREAD));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.BOOTS_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_BOOTS),
|
||||
"x x", "x x", 'x', ModItems.WORLD_THREAD));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.HELMET_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_HELMET),
|
||||
"xyx", "x x", 'x', ModItems.WORLD_THREAD, 'y', Items.LEATHER_HELMET));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.CHESTPLATE_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_CHESTPLATE),
|
||||
"x x", "xyx", "x x", 'x', ModItems.WORLD_THREAD, 'y', Items.LEATHER_CHESTPLATE));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.LEGGINGS_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_LEGGINGS),
|
||||
"xyx", "x x", "x x", 'x', ModItems.WORLD_THREAD, 'y', Items.LEATHER_LEGGINGS));
|
||||
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.BOOTS_WOVEN_WORLD_THREAD),
|
||||
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WOVEN_WORLD_THREAD_BOOTS),
|
||||
" y ", "x x", 'x', ModItems.WORLD_THREAD, 'y', Items.LEATHER_BOOTS));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.dimdev.dimdoors.shared;
|
||||
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityFloatingRift;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.util.math.RayTraceResult;
|
||||
|
|
|
@ -24,7 +24,7 @@ public class BlockDimensionalDoorIron extends BlockDimensionalDoor {
|
|||
|
||||
@Override
|
||||
public Item getItem() {
|
||||
return ModItems.DIMENSIONAL_DOOR;
|
||||
return ModItems.IRON_DIMENSIONAL_DOOR;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -22,7 +22,7 @@ public class BlockDimensionalDoorQuartz extends BlockDimensionalDoor {
|
|||
|
||||
@Override
|
||||
public Item getItem() {
|
||||
return ModItems.PERSONAL_DIMENSIONAL_DOOR;
|
||||
return ModItems.QUARTZ_DIMENSIONAL_DOOR;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -23,7 +23,7 @@ public class BlockDimensionalDoorWood extends BlockDimensionalDoor { // TODO: al
|
|||
|
||||
@Override
|
||||
public Item getItem() {
|
||||
return ModItems.WARP_DIMENSIONAL_DOOR;
|
||||
return ModItems.WOOD_DIMENSIONAL_DOOR;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -82,8 +82,7 @@ public class BlockFloatingRift extends BlockSpecialAir implements ITileEntityPro
|
|||
// Render rift effects
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand) { // TODO
|
||||
//ArrayList<BlockPos> targets = findReachableBlocks(world, pos, 2, false);
|
||||
public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand) {
|
||||
TileEntity tileEntity = world.getTileEntity(pos);
|
||||
// Workaround minecraft/forge bug where this is called even before the TileEntity is created in multiplayer
|
||||
if (!(tileEntity instanceof TileEntityFloatingRift)) return;
|
||||
|
@ -99,7 +98,7 @@ public class BlockFloatingRift extends BlockSpecialAir implements ITileEntityPro
|
|||
FMLClientHandler.instance().getClient().effectRenderer.addEffect(new ParticleRiftEffect.ClosingRiftEffect(
|
||||
world,
|
||||
pos.getX() + .5, pos.getY() + .5, pos.getZ() + .5,
|
||||
rand.nextGaussian() * 0.01D, rand.nextGaussian() * 0.01D, rand.nextGaussian() * 0.01D));
|
||||
rand.nextGaussian() * 0.1D, rand.nextGaussian() * 0.1D, rand.nextGaussian() * 0.1D));
|
||||
}
|
||||
|
||||
// TODO: depend on size, direction of particles should be rift orientation
|
||||
|
|
|
@ -4,7 +4,7 @@ import net.minecraft.block.ITileEntityProvider;
|
|||
import net.minecraft.block.state.IBlockState;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
|
||||
public interface IRiftProvider<T extends TileEntityRift> extends ITileEntityProvider {
|
||||
public T getRift(World world, BlockPos pos, IBlockState state);
|
||||
|
|
|
@ -13,7 +13,7 @@ import org.dimdev.ddutils.WorldUtils;
|
|||
import org.dimdev.dimdoors.shared.pockets.PocketGenerator;
|
||||
import org.dimdev.dimdoors.shared.pockets.PocketTemplate;
|
||||
import org.dimdev.dimdoors.shared.pockets.SchematicHandler;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.RiftRegistry;
|
||||
import org.dimdev.dimdoors.shared.world.ModDimensions;
|
||||
import org.dimdev.pocketlib.Pocket;
|
||||
|
|
|
@ -24,7 +24,8 @@ import org.dimdev.dimdoors.shared.tileentities.TileEntityFloatingRift;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
public abstract class ItemDimensionalDoor extends ItemDoor { // TODO: All wood types, Biome O' Plenty support
|
||||
// TODO: All wood types, Biome O' Plenty support
|
||||
public abstract class ItemDimensionalDoor extends ItemDoor {
|
||||
|
||||
public <T extends Block & IRiftProvider<TileEntityEntranceRift>> ItemDimensionalDoor(T block) {
|
||||
super(block);
|
||||
|
|
|
@ -5,13 +5,14 @@ import org.dimdev.dimdoors.shared.blocks.ModBlocks;
|
|||
import net.minecraft.util.ResourceLocation;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityEntranceRift;
|
||||
|
||||
public class ItemDimensionalDoorChaos extends ItemDimensionalDoor { // TODO: remove this when converting to NBT setup, and just add creative menu item?
|
||||
// TODO: remove this when converting to NBT setup, and just add creative menu item?
|
||||
public class ItemDimensionalDoorUnstable extends ItemDimensionalDoor {
|
||||
|
||||
public ItemDimensionalDoorChaos() {
|
||||
public ItemDimensionalDoorUnstable() {
|
||||
super(ModBlocks.IRON_DIMENSIONAL_DOOR);
|
||||
setCreativeTab(DimDoors.DIM_DOORS_CREATIVE_TAB);
|
||||
setUnlocalizedName("chaos_dimensional_door");
|
||||
setRegistryName(new ResourceLocation(DimDoors.MODID, "chaos_dimensional_door"));
|
||||
setUnlocalizedName("unstable_dimensional_door");
|
||||
setRegistryName(new ResourceLocation(DimDoors.MODID, "unstable_dimensional_door"));
|
||||
}
|
||||
|
||||
@Override
|
|
@ -19,7 +19,8 @@ import org.dimdev.dimdoors.shared.tileentities.TileEntityEntranceRift;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
public abstract class ItemDimensionalTrapdoor extends ItemBlock { // TODO: Iron dimensional trapdoor
|
||||
// TODO: Iron dimensional trapdoor
|
||||
public abstract class ItemDimensionalTrapdoor extends ItemBlock {
|
||||
|
||||
public <T extends Block & IRiftProvider<TileEntityEntranceRift>>ItemDimensionalTrapdoor(T block) {
|
||||
super(block);
|
||||
|
|
|
@ -51,8 +51,6 @@ public class ItemRiftRemover extends Item {
|
|||
if (!rift.closing) {
|
||||
rift.setClosing(true);
|
||||
world.playSound(null, player.getPosition(), ModSounds.RIFT_CLOSE, SoundCategory.BLOCKS, 0.6f, 1);
|
||||
// TODO: render rift removing animation
|
||||
|
||||
stack.damageItem(10, player);
|
||||
player.sendStatusMessage(new TextComponentTranslation("item.rift_remover.closing"), true);
|
||||
return new ActionResult<>(EnumActionResult.SUCCESS, stack);
|
||||
|
|
|
@ -17,11 +17,11 @@ public final class ModItems {
|
|||
public static final ItemDoorQuartz QUARTZ_DOOR = new ItemDoorQuartz();
|
||||
|
||||
// Dimensional doors
|
||||
public static final ItemDimensionalDoorIron DIMENSIONAL_DOOR = new ItemDimensionalDoorIron();
|
||||
public static final ItemDimensionalDoorIron IRON_DIMENSIONAL_DOOR = new ItemDimensionalDoorIron();
|
||||
public static final ItemDimensionalDoorGold GOLD_DIMENSIONAL_DOOR = new ItemDimensionalDoorGold();
|
||||
public static final ItemDimensionalDoorQuartz PERSONAL_DIMENSIONAL_DOOR = new ItemDimensionalDoorQuartz();
|
||||
public static final ItemDimensionalDoorChaos CHAOS_DOOR = new ItemDimensionalDoorChaos();
|
||||
public static final ItemDimensionalDoorWood WARP_DIMENSIONAL_DOOR = new ItemDimensionalDoorWood();
|
||||
public static final ItemDimensionalDoorQuartz QUARTZ_DIMENSIONAL_DOOR = new ItemDimensionalDoorQuartz();
|
||||
public static final ItemDimensionalDoorUnstable UNSTABLE_DIMENSIONAL_DOOR = new ItemDimensionalDoorUnstable();
|
||||
public static final ItemDimensionalDoorWood WOOD_DIMENSIONAL_DOOR = new ItemDimensionalDoorWood();
|
||||
|
||||
// Crafting ingredients
|
||||
private static final String WORLD_THREAD_ID = "world_thread";
|
||||
|
@ -30,52 +30,50 @@ public final class ModItems {
|
|||
public static final Item STABLE_FABRIC = new Item().setUnlocalizedName(STABLE_FABRIC_ID).setFull3D().setCreativeTab(DimDoors.DIM_DOORS_CREATIVE_TAB).setRegistryName(new ResourceLocation(DimDoors.MODID, STABLE_FABRIC_ID));
|
||||
|
||||
// Tools
|
||||
public static final ItemRiftConfigurationTool RIFT_CONNECTION_TOOL = new ItemRiftConfigurationTool();
|
||||
public static final ItemRiftConfigurationTool RIFT_CONFIGURATION_TOOL = new ItemRiftConfigurationTool();
|
||||
public static final ItemRiftBlade RIFT_BLADE = new ItemRiftBlade();
|
||||
public static final ItemRiftRemover RIFT_REMOVER = new ItemRiftRemover();
|
||||
public static final ItemRiftSignature RIFT_SIGNATURE = new ItemRiftSignature();
|
||||
public static final ItemStabilizedRiftSignature STABILIZED_RIFT_SIGNATURE = new ItemStabilizedRiftSignature();
|
||||
|
||||
// Armours
|
||||
public static final ItemWovenWorldThreadArmor HELMET_WOVEN_WORLD_THREAD = new ItemWovenWorldThreadArmor("helmet_woven_world_thread", 1, EntityEquipmentSlot.HEAD);
|
||||
public static final ItemWovenWorldThreadArmor CHESTPLATE_WOVEN_WORLD_THREAD = new ItemWovenWorldThreadArmor("chestplate_woven_world_thread", 1, EntityEquipmentSlot.CHEST);
|
||||
public static final ItemWovenWorldThreadArmor LEGGINGS_WOVEN_WORLD_THREAD = new ItemWovenWorldThreadArmor("leggings_woven_world_thread", 2, EntityEquipmentSlot.LEGS);
|
||||
public static final ItemWovenWorldThreadArmor BOOTS_WOVEN_WORLD_THREAD = new ItemWovenWorldThreadArmor("boots_woven_world_thread", 1, EntityEquipmentSlot.FEET);
|
||||
// Armors
|
||||
public static final ItemWovenWorldThreadArmor WOVEN_WORLD_THREAD_HELMET = new ItemWovenWorldThreadArmor("woven_world_thread_helmet", 1, EntityEquipmentSlot.HEAD);
|
||||
public static final ItemWovenWorldThreadArmor WOVEN_WORLD_THREAD_CHESTPLATE = new ItemWovenWorldThreadArmor("woven_world_thread_chestplate", 1, EntityEquipmentSlot.CHEST);
|
||||
public static final ItemWovenWorldThreadArmor WOVEN_WORLD_THREAD_LEGGINGS = new ItemWovenWorldThreadArmor("woven_world_thread_leggings", 2, EntityEquipmentSlot.LEGS);
|
||||
public static final ItemWovenWorldThreadArmor WOVEN_WORLD_THREAD_BOOTS = new ItemWovenWorldThreadArmor("woven_world_thread_boots", 1, EntityEquipmentSlot.FEET);
|
||||
|
||||
// ItemBlocks
|
||||
public static final Item FABRIC = new ItemColored(ModBlocks.FABRIC, true).setSubtypeNames(new String[]{"white", "orange", "magenta", "lightBlue", "yellow", "lime", "pink", "gray", "silver", "cyan", "purple", "blue", "brown", "green", "red", "black"}).setRegistryName(ModBlocks.FABRIC.getRegistryName());
|
||||
public static final Item ANCIENT_FABRIC = new ItemColored(ModBlocks.ANCIENT_FABRIC, true).setSubtypeNames(new String[]{"white", "orange", "magenta", "lightBlue", "yellow", "lime", "pink", "gray", "silver", "cyan", "purple", "blue", "brown", "green", "red", "black"}).setRegistryName(ModBlocks.ANCIENT_FABRIC.getRegistryName());
|
||||
public static final Item UNRAVELLED_FABRIC = new ItemBlock(ModBlocks.UNRAVELLED_FABRIC).setRegistryName(ModBlocks.UNRAVELLED_FABRIC.getRegistryName());
|
||||
public static final Item ETERNAL_FABRIC = new ItemBlock(ModBlocks.ETERNAL_FABRIC).setRegistryName(ModBlocks.ETERNAL_FABRIC.getRegistryName());
|
||||
public static final Item RIFT = new ItemBlock(ModBlocks.RIFT).setRegistryName(ModBlocks.RIFT.getRegistryName());
|
||||
public static final ItemColored FABRIC = (ItemColored) new ItemColored(ModBlocks.FABRIC, true).setSubtypeNames(new String[]{"white", "orange", "magenta", "lightBlue", "yellow", "lime", "pink", "gray", "silver", "cyan", "purple", "blue", "brown", "green", "red", "black"}).setRegistryName(ModBlocks.FABRIC.getRegistryName());
|
||||
public static final ItemColored ANCIENT_FABRIC = (ItemColored) new ItemColored(ModBlocks.ANCIENT_FABRIC, true).setSubtypeNames(new String[]{"white", "orange", "magenta", "lightBlue", "yellow", "lime", "pink", "gray", "silver", "cyan", "purple", "blue", "brown", "green", "red", "black"}).setRegistryName(ModBlocks.ANCIENT_FABRIC.getRegistryName());
|
||||
public static final ItemBlock UNRAVELLED_FABRIC = (ItemBlock) new ItemBlock(ModBlocks.UNRAVELLED_FABRIC).setRegistryName(ModBlocks.UNRAVELLED_FABRIC.getRegistryName());
|
||||
public static final ItemBlock ETERNAL_FABRIC = (ItemBlock) new ItemBlock(ModBlocks.ETERNAL_FABRIC).setRegistryName(ModBlocks.ETERNAL_FABRIC.getRegistryName());
|
||||
public static final ItemDimensionalTrapdoorWood WOOD_DIMENSIONAL_TRAPDOOR = new ItemDimensionalTrapdoorWood();
|
||||
|
||||
@SubscribeEvent
|
||||
public static void registerItems(RegistryEvent.Register<Item> event) {
|
||||
event.getRegistry().registerAll(QUARTZ_DOOR,
|
||||
PERSONAL_DIMENSIONAL_DOOR,
|
||||
QUARTZ_DIMENSIONAL_DOOR,
|
||||
GOLD_DOOR,
|
||||
GOLD_DIMENSIONAL_DOOR,
|
||||
DIMENSIONAL_DOOR,
|
||||
WARP_DIMENSIONAL_DOOR,
|
||||
IRON_DIMENSIONAL_DOOR,
|
||||
WOOD_DIMENSIONAL_DOOR,
|
||||
STABLE_FABRIC,
|
||||
CHAOS_DOOR,
|
||||
UNSTABLE_DIMENSIONAL_DOOR,
|
||||
WORLD_THREAD,
|
||||
RIFT_CONNECTION_TOOL,
|
||||
RIFT_CONFIGURATION_TOOL,
|
||||
RIFT_BLADE,
|
||||
RIFT_REMOVER,
|
||||
RIFT_SIGNATURE,
|
||||
STABILIZED_RIFT_SIGNATURE,
|
||||
HELMET_WOVEN_WORLD_THREAD,
|
||||
CHESTPLATE_WOVEN_WORLD_THREAD,
|
||||
LEGGINGS_WOVEN_WORLD_THREAD,
|
||||
BOOTS_WOVEN_WORLD_THREAD,
|
||||
WOVEN_WORLD_THREAD_HELMET,
|
||||
WOVEN_WORLD_THREAD_CHESTPLATE,
|
||||
WOVEN_WORLD_THREAD_LEGGINGS,
|
||||
WOVEN_WORLD_THREAD_BOOTS,
|
||||
FABRIC,
|
||||
ANCIENT_FABRIC,
|
||||
UNRAVELLED_FABRIC,
|
||||
ETERNAL_FABRIC,
|
||||
WOOD_DIMENSIONAL_TRAPDOOR,
|
||||
RIFT);
|
||||
WOOD_DIMENSIONAL_TRAPDOOR);
|
||||
|
||||
DimDoors.proxy.afterItemsRegistered();
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.dimdev.ddutils.schem.Schematic;
|
|||
import org.dimdev.dimdoors.DimDoors;
|
||||
import org.dimdev.dimdoors.shared.entities.EntityMonolith;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.rifts.destinations.PocketEntranceMarker;
|
||||
import org.dimdev.dimdoors.shared.rifts.destinations.PocketExitMarker;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.LinkProperties;
|
||||
|
|
|
@ -16,6 +16,7 @@ import org.dimdev.ddutils.RotatedLocation;
|
|||
import org.dimdev.ddutils.WorldUtils;
|
||||
import org.dimdev.ddutils.math.MathUtils;
|
||||
import org.dimdev.ddutils.nbt.NBTUtils;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.pocketlib.VirtualLocation;
|
||||
import org.dimdev.dimdoors.shared.blocks.ModBlocks;
|
||||
import org.dimdev.pocketlib.Pocket;
|
||||
|
|
|
@ -4,7 +4,7 @@ import org.dimdev.ddutils.RotatedLocation;
|
|||
import org.dimdev.dimdoors.DimDoors;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.RiftRegistry;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.world.ModDimensions;
|
||||
import org.dimdev.dimdoors.shared.world.limbo.WorldProviderLimbo;
|
||||
import org.dimdev.ddutils.Location;
|
||||
|
|
|
@ -12,7 +12,7 @@ import org.dimdev.ddutils.nbt.NBTUtils;
|
|||
import org.dimdev.annotatednbt.Saved;
|
||||
import org.dimdev.annotatednbt.NBTSerializable;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
|
||||
@Getter @AllArgsConstructor @Builder(toBuilder = true) @ToString
|
||||
@NBTSerializable public class GlobalDestination extends RiftDestination {
|
||||
|
|
|
@ -13,7 +13,7 @@ import net.minecraft.util.math.BlockPos;
|
|||
import org.dimdev.annotatednbt.Saved;
|
||||
import org.dimdev.annotatednbt.NBTSerializable;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
|
||||
@Getter @AllArgsConstructor @Builder(toBuilder = true) @ToString
|
||||
@NBTSerializable public class LocalDestination extends RiftDestination {
|
||||
|
|
|
@ -9,7 +9,7 @@ import org.dimdev.pocketlib.Pocket;
|
|||
import org.dimdev.dimdoors.shared.pockets.PocketGenerator;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.RiftRegistry;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.ddutils.EntityUtils;
|
||||
import org.dimdev.ddutils.Location;
|
||||
import lombok.AllArgsConstructor;
|
||||
|
|
|
@ -12,7 +12,7 @@ import org.dimdev.pocketlib.PrivatePocketData;
|
|||
import org.dimdev.pocketlib.Pocket;
|
||||
import org.dimdev.pocketlib.PocketRegistry;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.RiftRegistry;
|
||||
import org.dimdev.dimdoors.shared.world.limbo.WorldProviderLimbo;
|
||||
import org.dimdev.dimdoors.shared.world.pocketdimension.WorldProviderPersonalPocket;
|
||||
|
|
|
@ -13,7 +13,7 @@ import net.minecraft.util.math.Vec3i;
|
|||
import org.dimdev.annotatednbt.Saved;
|
||||
import org.dimdev.annotatednbt.NBTSerializable;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
|
||||
@Getter @AllArgsConstructor @Builder(toBuilder = true) @ToString
|
||||
@NBTSerializable public class RelativeDestination extends RiftDestination {
|
||||
|
|
|
@ -9,7 +9,7 @@ import org.dimdev.annotatednbt.Saved;
|
|||
import org.dimdev.ddutils.Location;
|
||||
import org.dimdev.ddutils.nbt.NBTUtils;
|
||||
import org.dimdev.dimdoors.DimDoors;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.dimdoors.shared.tileentities.TileEntityRift;
|
||||
|
||||
@NoArgsConstructor @AllArgsConstructor @ToString
|
||||
@NBTSerializable public class Rift extends RegistryVertex {
|
||||
|
|
|
@ -13,7 +13,6 @@ import org.dimdev.annotatednbt.Saved;
|
|||
import org.dimdev.annotatednbt.NBTSerializable;
|
||||
import org.dimdev.dimdoors.DimDoors;
|
||||
import org.dimdev.dimdoors.shared.ModConfig;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
import org.dimdev.ddutils.RGBA;
|
||||
import org.dimdev.ddutils.TeleportUtils;
|
||||
import lombok.Getter;
|
||||
|
|
|
@ -20,7 +20,6 @@ import org.dimdev.dimdoors.DimDoors;
|
|||
import org.dimdev.dimdoors.shared.ModConfig;
|
||||
import org.dimdev.dimdoors.shared.blocks.BlockFloatingRift;
|
||||
import org.dimdev.dimdoors.shared.blocks.ModBlocks;
|
||||
import org.dimdev.dimdoors.shared.rifts.TileEntityRift;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.dimdev.dimdoors.shared.rifts;
|
||||
package org.dimdev.dimdoors.shared.tileentities;
|
||||
|
||||
import lombok.Getter;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
@ -15,6 +15,7 @@ import org.dimdev.annotatednbt.Saved;
|
|||
import org.dimdev.ddutils.*;
|
||||
import org.dimdev.ddutils.nbt.NBTUtils;
|
||||
import org.dimdev.dimdoors.DimDoors;
|
||||
import org.dimdev.dimdoors.shared.rifts.RiftDestination;
|
||||
import org.dimdev.pocketlib.VirtualLocation;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.LinkProperties;
|
||||
import org.dimdev.dimdoors.shared.rifts.registry.Rift;
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:chaos_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:chaos_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:chaos_dimensional_door_top", "y": 180 }
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:unstable_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:unstable_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:unstable_dimensional_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:gold_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:gold_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:gold_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:gold_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:iron_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:iron_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:iron_dimensional_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:oak_dimensional_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:oak_dimensional_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:oak_dimensional_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "dimdoors:quartz_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "dimdoors:quartz_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "dimdoors:quartz_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "dimdoors:quartz_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {"model": "dimdoors:no_texture"}
|
||||
}
|
||||
"variants": {
|
||||
"normal": {"model": "dimdoors:no_texture"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": { "model": "dimdoors:unravelled_fabric" }
|
||||
"normal": { "model": "dimdoors:unravelled_fabric" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Dimensional Doors: Items
|
||||
|
||||
tile.gold_door.name=Goldtür
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Quarztür
|
|||
tile.iron_dimensional_door.name=Dimensionaltür
|
||||
tile.gold_dimensional_door.name=Goldene Dimensionaltür
|
||||
tile.quartz_dimensional_door.name=Persönliche Dimensionaltür
|
||||
tile.chaos_dimensional_door.name=Instabile Tür
|
||||
tile.unstable_dimensional_door.name=Instabile Tür
|
||||
tile.oak_dimensional_door.name=Warp-Tür
|
||||
tile.dimensional_trapdoor.name=Transdimensionale Falltür
|
||||
tile.dimensional_portal.name=Vergängliche Tür
|
||||
|
@ -25,7 +26,7 @@ item.quartz_door.name=Quarztür
|
|||
item.iron_dimensional_door.name=Dimensionaltür
|
||||
item.gold_dimensional_door.name=Goldene Dimensionaltür
|
||||
item.quartz_dimensional_door.name=Persönliche Dimensionaltür
|
||||
item.chaos_dimensional_door.name=Instabile Tür
|
||||
item.unstable_dimensional_door.name=Instabile Tür
|
||||
item.oak_dimensional_door.name=Warp-Tür
|
||||
|
||||
item.rift_key=Spaltschlüssel
|
||||
|
@ -50,7 +51,7 @@ item.rift_signature.bound.info=Führt zu(%d, %d, %d) in Dimension #%d
|
|||
item.rift_signature.unbound.info=Erster Klick speichert die Position; \nzweiter Klick kreiert ein Paar von Spalten, \nwelche zu den zwei Positionen führen.
|
||||
item.stabilized_rift_signature.bound.info=Führt zu(%d, %d, %d) in Dimension #%d
|
||||
item.stabilized_rift_signature.unbound.info=Erster Klick speichert die Position, \nweitere Klicks kreieren Spalte, die \ndie erste und die aktuelle Position verbinden.
|
||||
item.chaos_dimensional_door.info=Vorsicht: Führt zu einem zufälligen Ziel
|
||||
item.unstable_dimensional_door.info=Vorsicht: Führt zu einem zufälligen Ziel
|
||||
item.oak_dimensional_door.info=Platziere auf dem Block unterhalb eines \nSpalts, um ein Portal zu erstellen, \noder platziere irgendwo in einer \nkleinen Dimension, um sie zu verlassen.
|
||||
|
||||
entity.dimdoors.monolith.name=Monolith
|
||||
|
|
|
@ -8,7 +8,7 @@ tile.quartz_door.name=Quartz Door
|
|||
tile.iron_dimensional_door.name=Iron Dimensional Door
|
||||
tile.gold_dimensional_door.name=Gold Dimensional Door
|
||||
tile.quartz_dimensional_door.name=Quartz Dimensional Door
|
||||
tile.chaos_dimensional_door.name=Unstable Dimensional Door
|
||||
tile.unstable_dimensional_door.name=Unstable Dimensional Door
|
||||
tile.oak_dimensional_door.name=Oak Dimensional Door
|
||||
tile.dimensional_trapdoor.name=Oak Dimensional Trapdoor
|
||||
tile.dimensional_portal.name=Transient Portal
|
||||
|
@ -59,7 +59,7 @@ item.quartz_door.name=Quartz Door
|
|||
item.iron_dimensional_door.name=Iron Dimensional Door
|
||||
item.gold_dimensional_door.name=Gold Dimensional Door
|
||||
item.quartz_dimensional_door.name=Quartz Dimensional Door
|
||||
item.chaos_dimensional_door.name=Unstable Dimensional Door
|
||||
item.unstable_dimensional_door.name=Unstable Dimensional Door
|
||||
item.oak_dimensional_door.name=Wood Dimensional Door
|
||||
|
||||
item.rift_key=Rift Key
|
||||
|
@ -78,10 +78,10 @@ item.rift_blade.name=Rift Blade
|
|||
item.world_thread.name=World Thread
|
||||
item.stable_fabric.name=Stable Fabric
|
||||
|
||||
item.boots_woven_world_thread.name=Woven World Thread Boots
|
||||
item.helmet_woven_world_thread.name=Woven World Thread Helmet
|
||||
item.leggings_woven_world_thread.name=Woven World Thread Leggings
|
||||
item.chestplate_woven_world_thread.name=Woven World Thread Chestplate
|
||||
item.woven_world_thread_boots.name=Woven World Thread Boots
|
||||
item.woven_world_thread_helmet.name=Woven World Thread Helmet
|
||||
item.woven_world_thread_leggings.name=Woven World Thread Leggings
|
||||
item.woven_world_thread_chestplate.name=Woven World Thread Chestplate
|
||||
|
||||
item.rift_key.bound.info=Bound
|
||||
item.rift_key.unbound.info=Unbound
|
||||
|
@ -95,7 +95,7 @@ item.rift_signature.bound.info=Leads to (%d, %d, %d) at dimension #%d
|
|||
item.rift_signature.unbound.info=First click stores a location; \nsecond click creates a pair of \nrifts linking the two locations.
|
||||
item.stabilized_rift_signature.bound.info=Leads to (%d, %d, %d) at dimension #%d
|
||||
item.stabilized_rift_signature.unbound.info=First click stores a location, \nother clicks create rifts linking \nthe first and last locations together.
|
||||
item.chaos_dimensional_door.info=Caution: Leads to random destination
|
||||
item.unstable_dimensional_door.info=Caution: Leads to random destination
|
||||
item.oak_dimensional_door.info=Place on the block under a rift \nto create a portal, or place anywhere \nin a pocket dimension to exit.
|
||||
|
||||
entity.dimdoors.monolith.name=Monolith
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Objets Portes dimensionelles
|
||||
|
||||
tile.gold_door.name=Porte d'or
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Porte de quartz
|
|||
tile.iron_dimensional_door.name=Porte dimensionnelle de fer
|
||||
tile.gold_dimensional_door.name=Porte dimensionnelle d'or
|
||||
tile.quartz_dimensional_door.name=Porte dimensionnelle de quartz
|
||||
tile.chaos_dimensional_door.name=Porte dimensionelle instable
|
||||
tile.unstable_dimensional_door.name=Porte dimensionelle instable
|
||||
tile.oak_dimensional_door.name=Porte dimensionelle de bois
|
||||
tile.dimensional_trapdoor.name=Trappe dimensionnelle de bois
|
||||
tile.dimensional_portal.name=Portail dimensionel
|
||||
|
@ -56,7 +57,7 @@ item.quartz_door.name=Porte de quartz
|
|||
item.iron_dimensional_door.name=Porte dimensionnelle de fer
|
||||
item.gold_dimensional_door.name=Porte dimensionnelle d'or
|
||||
item.quartz_dimensional_door.name=Porte dimensionnelle de quartz
|
||||
item.chaos_dimensional_door.name=Porte dimensionelle instable
|
||||
item.unstable_dimensional_door.name=Porte dimensionelle instable
|
||||
item.oak_dimensional_door.name=Porte dimensionelle de bois
|
||||
|
||||
item.rift_key=Clé de fissure
|
||||
|
@ -81,7 +82,7 @@ item.rift_signature.bound.info=Mène aux coordonnées (%d, %d, %d) à la dimensi
|
|||
item.rift_signature.unbound.info=Le premier clic stocke un emplacement ; \nle deuxième clic crée une paire de \nfissures qui lient les deux emplacements.
|
||||
item.stabilized_rift_signature.bound.info=Mène aux coordonnées (%d, %d, %d) à la dimension #%d
|
||||
item.stabilized_rift_signature.unbound.info=Le premier clic stocke un emplacement, \nles autres clics créent des fissurent qui lient \nle premier et les derniers emplacements ensemble.
|
||||
item.chaos_dimensional_door.info=Attention : mène vers une destination aléatoire
|
||||
item.unstable_dimensional_door.info=Attention : mène vers une destination aléatoire
|
||||
item.oak_dimensional_door.info=Placez sur le bloc sous une \nfissure pour créer un portail, \nou placez n'importe où dans une \ndimension de poche pour sortir.
|
||||
entity.dimdoors.monolith.name=Monolithe
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Dimensional Doors oggetti
|
||||
|
||||
tile.gold_door.name=Porta d'oro
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Porta di quarzo
|
|||
tile.iron_dimensional_door.name=Porta dimensionale
|
||||
tile.gold_dimensional_door.name=Porta d'oro dimensionale
|
||||
tile.quartz_dimensional_door.name=Porta dimensionale personale
|
||||
tile.chaos_dimensional_door.name=Porta instabile
|
||||
tile.unstable_dimensional_door.name=Porta instabile
|
||||
tile.oak_dimensional_door.name=Porta distorta
|
||||
tile.dimensional_trapdoor.name=Botola transdimensionale
|
||||
tile.dimensional_portal.name=Porta transitoria
|
||||
|
@ -25,7 +26,7 @@ item.quartz_door.name=Porta di quarzo
|
|||
item.iron_dimensional_door.name=Porta dimensionale
|
||||
item.gold_dimensional_door.name=Porta d'oro dimensionale
|
||||
item.quartz_dimensional_door.name=Porta dimensionale personale
|
||||
item.chaos_dimensional_door.name=Porta instabile
|
||||
item.unstable_dimensional_door.name=Porta instabile
|
||||
item.oak_dimensional_door.name=Porta distorta
|
||||
|
||||
item.rift_key=Chiave per frattura
|
||||
|
@ -50,6 +51,6 @@ item.rift_signature.bound.info=Porta a (%d, %d, %d) nella dimensione #%d
|
|||
item.rift_signature.unbound.info=Al primo clic salva la posizione; al \nsecondo clic crea un paio di fratture \nche collegano le due posizioni.
|
||||
item.stabilized_rift_signature.bound.info=Porta a (%d, %d, %d) nella dimensione #%d
|
||||
item.stabilized_rift_signature.unbound.info=Al primo clic salva la posizione; al \nsecondo clic crea fratture che \ncollegano la prima e ultima posizione.
|
||||
item.chaos_dimensional_door.info=Attenziione: Porta a una destinazione casuale
|
||||
item.unstable_dimensional_door.info=Attenziione: Porta a una destinazione casuale
|
||||
item.oak_dimensional_door.info=Piazzalo sul blocco sotto una \nfrattura per creare un portale, \no piazzalo da qualunque altra parte \nin una dimensione tascabile per uscire.
|
||||
entity.dimdoors.monolith.name=Monolito
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Dimensional Doors Voorwerpen
|
||||
|
||||
tile.gold_door.name=Gouden Deur
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Kwartsen Deur
|
|||
tile.iron_dimensional_door.name=Dimensiedeur
|
||||
tile.gold_dimensional_door.name=Gouden Dimensiedeur
|
||||
tile.quartz_dimensional_door.name=Persoonlijke Dimensiedeur
|
||||
tile.chaos_dimensional_door.name=Chaos Deur
|
||||
tile.unstable_dimensional_door.name=Chaos Deur
|
||||
tile.oak_dimensional_door.name=Verdraaideur
|
||||
tile.dimensional_trapdoor.name=Transdimensionale Valdeur
|
||||
tile.dimensional_portal.name=Vergankelijk Portaal
|
||||
|
@ -56,7 +57,7 @@ item.quartz_door.name=Kwartsen Deur
|
|||
item.iron_dimensional_door.name=Dimensiedeur
|
||||
item.gold_dimensional_door.name=Gouden Dimensiedeur
|
||||
item.quartz_dimensional_door.name=Persoonlijke Dimensiedeur
|
||||
item.chaos_dimensional_door.name=Chaos Deur
|
||||
item.unstable_dimensional_door.name=Chaos Deur
|
||||
item.oak_dimensional_door.name=Verdraaideur
|
||||
|
||||
item.rift_key=Scheur Sleutel
|
||||
|
@ -81,6 +82,6 @@ item.rift_signature.bound.info=Leidt naar (%d, %d, %d) in dimensie #%d
|
|||
item.rift_signature.unbound.info=De eerste klik slaat een locatie op; \nde tweede creëert een paar scheuren \ndie beide locaties met elkaar verbinden.
|
||||
item.stabilized_rift_signature.bound.info=Leidt naar (%d, %d, %d) in dimensie #%d
|
||||
item.stabilized_rift_signature.unbound.info=De eerste klik slaat een locatie op, \nandere klikken creëren scheuren die de eerste \nen laatste locaties met elkaar verbinden.
|
||||
item.chaos_dimensional_door.info=Pas op: Leidt naar een willekeurige bestemming
|
||||
item.unstable_dimensional_door.info=Pas op: Leidt naar een willekeurige bestemming
|
||||
item.oak_dimensional_door.info=Plaats op het blok onder een scheur \nom een portaal te creëren, \nof plaats het ergens in een \nbroekzak dimensie om deze te verlaten.
|
||||
entity.dimdoors.monolith.name=Monoliet
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Obiecte Dimensional Doors
|
||||
|
||||
tile.gold_door.name=Ușă de aur
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Ușă de cuarț
|
|||
tile.iron_dimensional_door.name=Ușă dimensională
|
||||
tile.gold_dimensional_door.name=Ușă dimensională de aur
|
||||
tile.quartz_dimensional_door.name=Ușă dimensională de cuarț
|
||||
tile.chaos_dimensional_door.name=Ușă dimensională instabilă
|
||||
tile.unstable_dimensional_door.name=Ușă dimensională instabilă
|
||||
tile.oak_dimensional_door.name=Ușă dimensională de lemn
|
||||
tile.dimensional_trapdoor.name=Trapă dimensională
|
||||
tile.dimensional_portal.name=Portal dimensional
|
||||
|
@ -42,7 +43,7 @@ item.quartz_door.name=Ușă de cuarț
|
|||
item.iron_dimensional_door.name=Ușă dimensională
|
||||
item.gold_dimensional_door.name=Ușă dimensională de aur
|
||||
item.quartz_dimensional_door.name=Ușă dimensională de cuarț
|
||||
item.chaos_dimensional_door.name=Ușă instabilă
|
||||
item.unstable_dimensional_door.name=Ușă instabilă
|
||||
item.oak_dimensional_door.name=Ușă de distorsiune
|
||||
|
||||
item.rift_key=Cheie de fisură
|
||||
|
@ -67,6 +68,6 @@ item.rift_signature.bound.info=Duce la (%d, %d, %d) în dimensiunea #%d
|
|||
item.rift_signature.unbound.info=Primul clic stochează o locație; \nal doilea clic crează o pereche \nde fisuri conectând cele doua locații.
|
||||
item.stabilized_rift_signature.bound.info=Duce la (%d, %d, %d) în dimensiunea #%d
|
||||
item.stabilized_rift_signature.unbound.info=Primul clic stochează o locație; \nalte clicuri crează fisuri conectând \nprima și ultima conectiuni împreună.
|
||||
item.chaos_dimensional_door.info=Atenție: Duce la o destinație aleatorie
|
||||
item.unstable_dimensional_door.info=Atenție: Duce la o destinație aleatorie
|
||||
item.oak_dimensional_door.info=Plasează pe blocul sub o fisură \npentru a crea un portal sau \nplasează ori unde într-o dimensiune \nde buzunar pentru a ieșii.
|
||||
entity.dimdoors.monolith.name=Monolit
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=Dimensional Doors: Предметы
|
||||
|
||||
tile.gold_door.name=Золотая дверь
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=Кварцевая дверь
|
|||
tile.iron_dimensional_door.name=Пространственная дверь
|
||||
tile.gold_dimensional_door.name=Золотая пространственная дверь
|
||||
tile.quartz_dimensional_door.name=Личная пространственная дверь
|
||||
tile.chaos_dimensional_door.name=Нестабильная дверь
|
||||
tile.unstable_dimensional_door.name=Нестабильная дверь
|
||||
tile.oak_dimensional_door.name=Дверь искажения
|
||||
tile.dimensional_trapdoor.name=Межпространственный люк
|
||||
tile.dimensional_portal.name=Временная дверь
|
||||
|
@ -25,7 +26,7 @@ item.quartz_door.name=Кварцевая дверь
|
|||
item.iron_dimensional_door.name=Пространственная дверь
|
||||
item.gold_dimensional_door.name=Золотая пространственная дверь
|
||||
item.quartz_dimensional_door.name=Личная пространственная дверь
|
||||
item.chaos_dimensional_door.name=Нестабильная дверь
|
||||
item.unstable_dimensional_door.name=Нестабильная дверь
|
||||
item.oak_dimensional_door.name=Дверь искажения
|
||||
|
||||
item.rift_key=Ключ разлома
|
||||
|
@ -50,6 +51,6 @@ item.rift_signature.bound.info=Ведёт в (%d, %d, %d) в измерение
|
|||
item.rift_signature.unbound.info=Первое нажатие сохраняет расположение; \nвторое нажатие создаёт пару \nразломов, соединяющих два расположения.
|
||||
item.stabilized_rift_signature.bound.info=Ведёт в (%d, %d, %d) в измерение #%d
|
||||
item.stabilized_rift_signature.unbound.info=Первое нажатие сохраняет расположение, \nостальные нажатия создают разломы, соединяющие \nпервое и последнее расположения вместе.
|
||||
item.chaos_dimensional_door.info=Внимание: Ведёт неизвестно куда
|
||||
item.unstable_dimensional_door.info=Внимание: Ведёт неизвестно куда
|
||||
item.oak_dimensional_door.info=Поставьте на блок под \nразломом, чтобы создать портал \nили поставьте куда угодно в \nкарманном измерении, чтобы выйти из него.
|
||||
entity.dimdoors.monolith.name=Монолит
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#PARSE_ESCAPES
|
||||
|
||||
itemGroup.dimensional_doors_creative_tab=次元门物品
|
||||
|
||||
tile.gold_door.name=金门
|
||||
|
@ -7,7 +8,7 @@ tile.quartz_door.name=石英门
|
|||
tile.iron_dimensional_door.name=次元门
|
||||
tile.gold_dimensional_door.name=金制次元门
|
||||
tile.quartz_dimensional_door.name=私人次元门
|
||||
tile.chaos_dimensional_door.name=不稳定的门
|
||||
tile.unstable_dimensional_door.name=不稳定的门
|
||||
tile.oak_dimensional_door.name=扭曲之门
|
||||
tile.dimensional_trapdoor.name=空间活板门
|
||||
tile.dimensional_portal.name=瞬息之门
|
||||
|
@ -25,7 +26,7 @@ item.quartz_door.name=石英门
|
|||
item.iron_dimensional_door.name=次元门
|
||||
item.gold_dimensional_door.name=金制次元门
|
||||
item.quartz_dimensional_door.name=私人次元门
|
||||
item.chaos_dimensional_door.name=不稳定的门
|
||||
item.unstable_dimensional_door.name=不稳定的门
|
||||
item.oak_dimensional_door.name=扭曲之门
|
||||
|
||||
item.rift_key=裂痕钥匙
|
||||
|
@ -50,6 +51,6 @@ item.rift_signature.bound.info=指向(%d, %d, %d) 位于#%d
|
|||
item.rift_signature.unbound.info=第一次点击记录一个位置; \n第二次点击在两地间创造 \n一对相互连接的裂痕.
|
||||
item.stabilized_rift_signature.bound.info=指向(%d, %d, %d) 位于#%d
|
||||
item.stabilized_rift_signature.unbound.info=首次点击记录一个位置, \n再次点击生成连接两地的 \n裂痕.
|
||||
item.chaos_dimensional_door.info=注意: 将会随机传送
|
||||
item.unstable_dimensional_door.info=注意: 将会随机传送
|
||||
item.oak_dimensional_door.info=放在裂痕下方的方块上 \n来制造传送门, \n放在口袋次元中 \n以退出空间.
|
||||
entity.dimdoors.monolith.name=巨石
|
||||
|
|
|
@ -1,89 +1,89 @@
|
|||
{
|
||||
"pools": [
|
||||
"pools": [
|
||||
{
|
||||
"name": "default",
|
||||
"rolls": {
|
||||
"min": 2,
|
||||
"max": 3
|
||||
},
|
||||
"entries": [
|
||||
{
|
||||
"name": "default",
|
||||
"rolls": {
|
||||
"type": "item",
|
||||
"name": "minecraft:arrow",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 2,
|
||||
"max": 5
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 100
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:fire_charge",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
},
|
||||
"entries": [
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:arrow",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 2,
|
||||
"max": 5
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 100
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:fire_charge",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 15
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:spectral_arrow",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 1
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:snowball",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 4,
|
||||
"max": 16
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:water_bucket",
|
||||
"weight": 5
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:lava_bucket",
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "loot_table",
|
||||
"name": "dimdoors:dispenser_splash_potions",
|
||||
"weight": 15
|
||||
},
|
||||
{
|
||||
"type": "loot_table",
|
||||
"name": "dimdoors:dispenser_potion_arrows",
|
||||
"weight": 15
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 15
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:spectral_arrow",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 1
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:snowball",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 4,
|
||||
"max": 16
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:water_bucket",
|
||||
"weight": 5
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:lava_bucket",
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "loot_table",
|
||||
"name": "dimdoors:dispenser_splash_potions",
|
||||
"weight": 15
|
||||
},
|
||||
{
|
||||
"type": "loot_table",
|
||||
"name": "dimdoors:dispenser_potion_arrows",
|
||||
"weight": 15
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,162 +1,162 @@
|
|||
{
|
||||
"pools": [
|
||||
"pools": [
|
||||
{
|
||||
"name": "default",
|
||||
"rolls": {
|
||||
"min": 2,
|
||||
"max": 6
|
||||
},
|
||||
"entries": [
|
||||
{
|
||||
"name": "default",
|
||||
"rolls": {
|
||||
"min": 2,
|
||||
"max": 6
|
||||
},
|
||||
"entries": [
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:diamond",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 4
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:iron_ingot",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 16
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:gold_ingot",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 8
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:emerald",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:coal",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 12
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:quartz",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 12
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "dimdoors:world_thread",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 2,
|
||||
"max": 12
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 8
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "dimdoors:fabric",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 16,
|
||||
"max": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"function": "set_data",
|
||||
"data": 15
|
||||
}
|
||||
],
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:book",
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:golden_apple",
|
||||
"weight": 1
|
||||
}
|
||||
]
|
||||
"type": "item",
|
||||
"name": "minecraft:diamond",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 4
|
||||
},
|
||||
{
|
||||
"name": "ench_book",
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:book",
|
||||
"weight": 1,
|
||||
"functions": [
|
||||
{
|
||||
"function": "enchant_with_levels",
|
||||
"levels": 30,
|
||||
"treasure": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "empty",
|
||||
"name": "minecraft:air",
|
||||
"weight": 14
|
||||
}
|
||||
]
|
||||
"type": "item",
|
||||
"name": "minecraft:iron_ingot",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 16
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:gold_ingot",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 8
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:emerald",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 2
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:coal",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 12
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:quartz",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 3
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 12
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "dimdoors:world_thread",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 2,
|
||||
"max": 12
|
||||
}
|
||||
}
|
||||
],
|
||||
"weight": 8
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "dimdoors:fabric",
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 16,
|
||||
"max": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"function": "set_data",
|
||||
"data": 15
|
||||
}
|
||||
],
|
||||
"weight": 2
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:book",
|
||||
"weight": 10
|
||||
},
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:golden_apple",
|
||||
"weight": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ench_book",
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "item",
|
||||
"name": "minecraft:book",
|
||||
"weight": 1,
|
||||
"functions": [
|
||||
{
|
||||
"function": "enchant_with_levels",
|
||||
"levels": 30,
|
||||
"treasure": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "empty",
|
||||
"name": "minecraft:air",
|
||||
"weight": 14
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/trapdoor_bottom",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
"parent": "block/trapdoor_bottom",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/trapdoor_open",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
"parent": "block/trapdoor_open",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/trapdoor_top",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
"parent": "block/trapdoor_top",
|
||||
"textures": {
|
||||
"texture": "dimdoors:blocks/dimensional_trapdoor"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/oak_dimensional_door_lower",
|
||||
"top": "dimdoors:blocks/oak_dimensional_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "dimdoors:blocks/quartz_door_lower",
|
||||
"top": "dimdoors:blocks/quartz_door_upper"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/boots_woven_world_thread"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/chaos_dimensional_door"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/chestplate_woven_world_thread"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/helmet_woven_world_thread"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/leggings_woven_world_thread"
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/unstable_dimensional_door"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/woven_world_thread_boots"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/woven_world_thread_chestplate"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/woven_world_thread_helmet"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:items/woven_world_thread_leggings"
|
||||
}
|
||||
}
|
|
@ -1,101 +1,101 @@
|
|||
{
|
||||
"group": "blank",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "blank_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_7",
|
||||
"size": 7
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_7",
|
||||
"size": 7
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
"group": "blank",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "blank_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "blank_pocket_7",
|
||||
"size": 7
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "void_pocket_7",
|
||||
"size": 7
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "resizable_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,152 +1,152 @@
|
|||
{
|
||||
"group": "nether",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "courtyard_ambush",
|
||||
"type": "complex_hall",
|
||||
"name": "Courtyard Ambush",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "intersection",
|
||||
"type": "complex_hall",
|
||||
"name": "Intersection",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 2,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "soul_wastes",
|
||||
"type": "complex_hall",
|
||||
"name": "Soul Wastes",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "starfall",
|
||||
"type": "complex_hall",
|
||||
"name": "Starfall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "the_cauldron",
|
||||
"type": "complex_hall",
|
||||
"name": "The Cauldron",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "brimstone_mines",
|
||||
"type": "maze",
|
||||
"name": "Brimstone Mines",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 6,
|
||||
"baseWeight": 80
|
||||
},
|
||||
{
|
||||
"id": "quartzfold_cave",
|
||||
"type": "maze",
|
||||
"name": "Quartzfold Cave",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 40
|
||||
},
|
||||
{
|
||||
"id": "swirls_upon_swirls",
|
||||
"type": "maze",
|
||||
"name": "Swirls Upon Swirls",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 40
|
||||
},
|
||||
{
|
||||
"id": "tangle",
|
||||
"type": "maze",
|
||||
"name": "Tangle",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 80
|
||||
},
|
||||
{
|
||||
"id": "anvil_valley",
|
||||
"type": "simple_hall",
|
||||
"name": "Anvil Valley",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "arena",
|
||||
"type": "simple_hall",
|
||||
"name": "Arena",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "dark_path_left",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 50
|
||||
},
|
||||
{
|
||||
"id": "dark_path_right",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 50
|
||||
},
|
||||
{
|
||||
"id": "diamond_room",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "long_bridge",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "spiral_stairs_down",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 0,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "the_furnace",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
}
|
||||
]
|
||||
"group": "nether",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "courtyard_ambush",
|
||||
"type": "complex_hall",
|
||||
"name": "Courtyard Ambush",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "intersection",
|
||||
"type": "complex_hall",
|
||||
"name": "Intersection",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 2,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "soul_wastes",
|
||||
"type": "complex_hall",
|
||||
"name": "Soul Wastes",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "starfall",
|
||||
"type": "complex_hall",
|
||||
"name": "Starfall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "the_cauldron",
|
||||
"type": "complex_hall",
|
||||
"name": "The Cauldron",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "brimstone_mines",
|
||||
"type": "maze",
|
||||
"name": "Brimstone Mines",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 6,
|
||||
"baseWeight": 80
|
||||
},
|
||||
{
|
||||
"id": "quartzfold_cave",
|
||||
"type": "maze",
|
||||
"name": "Quartzfold Cave",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 40
|
||||
},
|
||||
{
|
||||
"id": "swirls_upon_swirls",
|
||||
"type": "maze",
|
||||
"name": "Swirls Upon Swirls",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 40
|
||||
},
|
||||
{
|
||||
"id": "tangle",
|
||||
"type": "maze",
|
||||
"name": "Tangle",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 80
|
||||
},
|
||||
{
|
||||
"id": "anvil_valley",
|
||||
"type": "simple_hall",
|
||||
"name": "Anvil Valley",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 5,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "arena",
|
||||
"type": "simple_hall",
|
||||
"name": "Arena",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "dark_path_left",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 50
|
||||
},
|
||||
{
|
||||
"id": "dark_path_right",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 50
|
||||
},
|
||||
{
|
||||
"id": "diamond_room",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 1,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "long_bridge",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 4,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "spiral_stairs_down",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 0,
|
||||
"baseWeight": 100
|
||||
},
|
||||
{
|
||||
"id": "the_furnace",
|
||||
"type": "simple_hall",
|
||||
"author": "SenseiKiwi",
|
||||
"open": true,
|
||||
"size": 3,
|
||||
"baseWeight": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,37 +1,37 @@
|
|||
{
|
||||
"group": "private",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "private_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
"group": "private",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "private_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "private_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,37 +1,37 @@
|
|||
{
|
||||
"group": "public",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "public_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
"group": "public",
|
||||
"pockets": [
|
||||
{
|
||||
"id": "public_pocket_0",
|
||||
"size": 0
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_1",
|
||||
"size": 1
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_2",
|
||||
"size": 2
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_3",
|
||||
"size": 3
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_4",
|
||||
"size": 4
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_5",
|
||||
"size": 5
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_6",
|
||||
"size": 6
|
||||
},
|
||||
{
|
||||
"id": "public_pocket_7",
|
||||
"size": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"crack" : { "sounds" : [ "dimdoors:crack"] },
|
||||
"creepy" : { "sounds" : ["dimdoors:creepy_faded_rv_002" ] },
|
||||
"creepy" : { "sounds" : ["dimdoors:creepy_faded" ] },
|
||||
"door_locked": { "sounds": [ "dimdoors:door_locked" ] },
|
||||
"door_lock_removed": { "sounds": [ "dimdoors:door_lock_removed" ] },
|
||||
"key_lock" : { "sounds" : [ "dimdoors:key_lock" ] },
|
||||
|
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 291 B |
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 347 B |