Add more pool tile variants
14
src/main/java/com/zontreck/block/MiniSunBlock.java
Normal file
|
@ -0,0 +1,14 @@
|
|||
package com.zontreck.block;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.state.BlockState;
|
||||
|
||||
public class MiniSunBlock extends Block
|
||||
{
|
||||
|
||||
public MiniSunBlock(Properties props) {
|
||||
super(props);
|
||||
}
|
||||
}
|
|
@ -15,7 +15,7 @@ public class CreativeModeTabs {
|
|||
public static CreativeModeTab AETAB = new CreativeModeTab("ariasessentials") {
|
||||
@Override
|
||||
public ItemStack makeIcon() {
|
||||
return new ItemStack(ModBlocks.BLUE_POOL_TILE.get().asItem());
|
||||
return new ItemStack(ModBlocks.BLUE_POOL_TILES.get(0).get().asItem());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -53,4 +53,9 @@ public class ModItems {
|
|||
|
||||
public static final RegistryObject<Item> MAGMA_POWDER = CreativeModeTabs.addToAETab(ITEMS.register("magma_powder", ()-> new MagmaPowder(new Item.Properties().tab(CreativeModeTabs.AETAB))));
|
||||
|
||||
|
||||
|
||||
|
||||
public static final RegistryObject<Item> METAL_BAR = CreativeModeTabs.addToAETab(ITEMS.register("metal_bar", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB))));
|
||||
|
||||
}
|
||||
|
|
11
src/main/java/com/zontreck/mixin/BlockGetterMixin.java
Normal file
|
@ -0,0 +1,11 @@
|
|||
package com.zontreck.mixin;
|
||||
|
||||
import net.minecraft.world.level.chunk.ChunkAccess;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Overwrite;
|
||||
import org.spongepowered.asm.mixin.Unique;
|
||||
|
||||
@Mixin(ChunkAccess.class)
|
||||
public class BlockGetterMixin {
|
||||
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
"client": [
|
||||
],
|
||||
"mixins": [
|
||||
"BlockGetterMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_blue_pool_tile_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,209 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,90 @@
|
|||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/filthy_cyan_pool_tile_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/mini_sun"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/stable_singularity"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_catwalk"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_catwalk_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_dr",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_dr"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_dr",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_dr",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_lr",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_lr"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_lr",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_lr",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_rr",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_rr"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_rr",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/steel_catwalk_stairs_rr",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_catwalk_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_floor_grating"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_floor_grating_top"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/steel_railing",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/steel_railing"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/steel_railing",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/steel_railing",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/steel_table"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,64 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,inputpower=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,inputpower=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,inputpower=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,inputpower=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,inputpower=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,inputpower=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,inputpower=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,inputpower=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=south,inputpower=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,inputpower=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,inputpower=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,inputpower=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,inputpower=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,inputpower=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,inputpower=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,inputpower=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "ariasessentials:block/uncrafter",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "ariasessentials:block/uncrafter"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "ariasessentials:block/uncrafter",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "ariasessentials:block/uncrafter",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "ariasessentials:block/vault_steel_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -72,14 +72,14 @@
|
|||
"block.ariasessentials.cyan_tile_to_wall": "Cyan Floor To Wall Transition",
|
||||
"block.ariasessentials.cyan_wall_variant_1": "Cyan Wall",
|
||||
"block.ariasessentials.cyan_wall_variant_2": "Cyan Wall",
|
||||
"block.ariasessentials.pool_light": "Pool Light",
|
||||
"block.ariasessentials.dirty_pool_light": "Dirty Pool Light",
|
||||
"block.ariasessentials.filthy_pool_light": "Filthy Pool Light",
|
||||
"block.ariasessentials.dark_pool_light": "Dark Pool Light",
|
||||
"block.ariasessentials.blue_pool_light": "Blue Pool Light",
|
||||
"block.ariasessentials.dirty_red_pool_light": "Dirty Red Pool Light",
|
||||
"block.ariasessentials.filthy_red_pool_light": "Filthy Red Pool Light",
|
||||
"block.ariasessentials.filthy_blue_pool_light": "Filthy Blue Pool Light",
|
||||
"block.ariasessentials.pool_tile_light": "Pool Light",
|
||||
"block.ariasessentials.dirty_pool_tile_light": "Dirty Pool Light",
|
||||
"block.ariasessentials.filthy_pool_tile_light": "Filthy Pool Light",
|
||||
"block.ariasessentials.dark_pool_tile_light": "Dark Pool Light",
|
||||
"block.ariasessentials.blue_pool_tile_light": "Blue Pool Light",
|
||||
"block.ariasessentials.dirty_red_pool_tile_light": "Dirty Red Pool Light",
|
||||
"block.ariasessentials.filthy_red_pool_tile_light": "Filthy Red Pool Light",
|
||||
"block.ariasessentials.filthy_blue_pool_tile_light": "Filthy Blue Pool Light",
|
||||
"block.ariasessentials.pool_tile": "Pool Tiles",
|
||||
"block.ariasessentials.pool_tile_stairs": "Pool Tile Stairs",
|
||||
"block.ariasessentials.pool_tile_slab": "Pool Tile Slab",
|
||||
|
@ -99,12 +99,12 @@
|
|||
"block.ariasessentials.dirty_blue_pool_tile_stairs": "Dirty Blue Pool Tile Stairs",
|
||||
"block.ariasessentials.dirty_blue_pool_tile_slab": "Dirty Blue Pool Tile Slab",
|
||||
"block.ariasessentials.dirty_blue_pool_tile_wall": "Dirty Blue Pool Tile Wall",
|
||||
"block.ariasessentials.dirty_blue_pool_light": "Dirty Blue Pool Light",
|
||||
"block.ariasessentials.dirty_blue_pool_tile_light": "Dirty Blue Pool Light",
|
||||
"block.ariasessentials.red_pool_tile": "Red Pool Tiles",
|
||||
"block.ariasessentials.red_pool_tile_stairs": "Red Pool Tile Stairs",
|
||||
"block.ariasessentials.red_pool_tile_slab": "Red Pool Tile Slab",
|
||||
"block.ariasessentials.red_pool_tile_wall": "Red Pool Tile Wall",
|
||||
"block.ariasessentials.red_pool_light": "Red Pool Light",
|
||||
"block.ariasessentials.red_pool_tile_light": "Red Pool Light",
|
||||
"block.ariasessentials.dirty_red_pool_tile": "Dirty Red Pool Tile",
|
||||
"block.ariasessentials.dirty_red_pool_tile_stairs": "Dirty Red Pool Tile Stairs",
|
||||
"block.ariasessentials.dirty_red_pool_tile_slab": "Dirty Red Pool Tile Slab",
|
||||
|
@ -115,19 +115,37 @@
|
|||
"block.ariasessentials.green_pool_tile_stairs": "Green Pool Tile Stairs",
|
||||
"block.ariasessentials.green_pool_tile_slab": "Green Pool Tile Slab",
|
||||
"block.ariasessentials.green_pool_tile_wall": "Green Pool Tile Wall",
|
||||
"block.ariasessentials.green_pool_light": "Green Pool Light",
|
||||
"block.ariasessentials.green_pool_tile_light": "Green Pool Light",
|
||||
"block.ariasessentials.dirty_green_pool_tile": "Dirty Green Pool Tile",
|
||||
"block.ariasessentials.dirty_green_pool_tile_stairs": "Dirty Green Pool Tile Stairs",
|
||||
"block.ariasessentials.dirty_green_pool_tile_slab": "Dirty Green Pool Tile Slab",
|
||||
"block.ariasessentials.dirty_green_pool_tile_wall": "Dirty Green Pool Tile Wall",
|
||||
"block.ariasessentials.dirty_green_pool_light": "Dirty Green Pool Light",
|
||||
"block.ariasessentials.filthy_green_pool_light": "Filthy Green Pool Light",
|
||||
"block.ariasessentials.uncrafter": "Uncrafter",
|
||||
"block.ariasessentials.dirty_green_pool_tile_light": "Dirty Green Pool Light",
|
||||
"block.ariasessentials.filthy_green_pool_tile_light": "Filthy Green Pool Light",
|
||||
|
||||
|
||||
"block.ariasessentials.cyan_pool_tile": "Cyan Pool Tiles",
|
||||
"block.ariasessentials.cyan_pool_tile_stairs": "Cyan Pool Tile Stairs",
|
||||
"block.ariasessentials.cyan_pool_tile_slab": "Cyan Pool Tile Slab",
|
||||
"block.ariasessentials.cyan_pool_tile_wall": "Cyan Pool Tile Wall",
|
||||
"block.ariasessentials.cyan_pool_tile_light": "Cyan Pool Light",
|
||||
"block.ariasessentials.dirty_cyan_pool_tile": "Dirty Cyan Pool Tile",
|
||||
"block.ariasessentials.dirty_cyan_pool_tile_stairs": "Dirty Cyan Pool Tile Stairs",
|
||||
"block.ariasessentials.dirty_cyan_pool_tile_slab": "Dirty Cyan Pool Tile Slab",
|
||||
"block.ariasessentials.dirty_cyan_pool_tile_wall": "Dirty Cyan Pool Tile Wall",
|
||||
"block.ariasessentials.dirty_cyan_pool_tile_light": "Dirty Cyan Pool Light",
|
||||
"block.ariasessentials.filthy_cyan_pool_tile_light": "Filthy Cyan Pool Light",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"block.ariasessentials.rebar_concrete": "Rebar Concrete",
|
||||
"block.ariasessentials.rebar_concrete_slab": "Rebar Concrete Slab",
|
||||
"block.ariasessentials.rebar_concrete_stairs": "Rebar Concrete Stairs",
|
||||
"block.ariasessentials.rebar_concrete_wall": "Rebar Concrete Wall",
|
||||
"block.ariasessentials.panzerglass_block": "Panzerglass",
|
||||
"block.ariasessentials.mini_sun": "Miniature Sun",
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,86 +0,0 @@
|
|||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"texture_size": [32, 32],
|
||||
"textures": {
|
||||
"0": "ariasessentials:block/compression_chamber/bottom_plate",
|
||||
"1": "ariasessentials:block/compression_chamber/support0",
|
||||
"2": "ariasessentials:block/compression_chamber/power",
|
||||
"3": "ariasessentials:block/compression_chamber/compression_lid",
|
||||
"4": "ariasessentials:block/compression_chamber/compressor",
|
||||
"particle": "ariasessentials:block/compression_chamber/bottom_plate"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 16, 0.5], "texture": "#0"},
|
||||
"east": {"uv": [8, 0.5, 16, 1], "texture": "#0"},
|
||||
"south": {"uv": [8, 1, 16, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [8, 1.5, 16, 2], "texture": "#0"},
|
||||
"up": {"uv": [8, 8, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [8, 8, 0, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 1],
|
||||
"to": [9, 6, 3],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 5], "texture": "#1"},
|
||||
"east": {"uv": [2, 0, 4, 5], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 6, 5], "texture": "#1"},
|
||||
"west": {"uv": [0, 5, 2, 10], "texture": "#1"},
|
||||
"up": {"uv": [4, 7, 2, 5], "texture": "#1"},
|
||||
"down": {"uv": [6, 5, 4, 7], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 4, 0],
|
||||
"to": [12, 12, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 4], "texture": "#2"},
|
||||
"east": {"uv": [4, 0, 4.5, 4], "texture": "#2"},
|
||||
"south": {"uv": [0, 4, 4, 8], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 4.5, 8], "texture": "#2"},
|
||||
"up": {"uv": [8.5, 0.5, 4.5, 0], "texture": "#2"},
|
||||
"down": {"uv": [8.5, 0.5, 4.5, 1], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 9, 1],
|
||||
"to": [9, 13, 3],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 2], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 1, 2], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 1, 2], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 1, 2], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 1, 1], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 1, 1], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 12, 3],
|
||||
"to": [14, 13, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [6, 0, 12, 0.5], "texture": "#3"},
|
||||
"east": {"uv": [6, 1, 11.5, 1.5], "texture": "#3"},
|
||||
"south": {"uv": [6, 0.5, 12, 1], "texture": "#3"},
|
||||
"west": {"uv": [6, 1.5, 11.5, 2], "texture": "#3"},
|
||||
"up": {"uv": [6, 5.5, 0, 0], "texture": "#3"},
|
||||
"down": {"uv": [6, 5.5, 0, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 11, 4],
|
||||
"to": [13, 12, 13],
|
||||
"faces": {
|
||||
"north": {"uv": [5, 0, 10, 0.5], "texture": "#4"},
|
||||
"east": {"uv": [5, 1, 9.5, 1.5], "texture": "#4"},
|
||||
"south": {"uv": [5, 0.5, 10, 1], "texture": "#4"},
|
||||
"west": {"uv": [5, 1.5, 9.5, 2], "texture": "#4"},
|
||||
"up": {"uv": [5, 4.5, 0, 0], "texture": "#4"},
|
||||
"down": {"uv": [5, 4.5, 0, 9], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/dirty_red_pool_light"
|
||||
"all": "ariasessentials:block/cyan_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/cyan_pool_tile",
|
||||
"side": "ariasessentials:block/cyan_pool_tile",
|
||||
"top": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/cyan_pool_tile",
|
||||
"side": "ariasessentials:block/cyan_pool_tile",
|
||||
"top": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/cyan_pool_tile",
|
||||
"side": "ariasessentials:block/cyan_pool_tile",
|
||||
"top": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/cyan_pool_tile",
|
||||
"side": "ariasessentials:block/cyan_pool_tile",
|
||||
"top": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/cyan_pool_tile",
|
||||
"side": "ariasessentials:block/cyan_pool_tile",
|
||||
"top": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side_tall",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/filthy_green_pool_light"
|
||||
"all": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"side": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"top": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"side": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"top": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"side": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"top": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"side": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"top": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"side": "ariasessentials:block/dirty_cyan_pool_tile",
|
||||
"top": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side_tall",
|
||||
"textures": {
|
||||
"wall": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/dirty_green_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/compressed_obsidian_block"
|
||||
"all": "ariasessentials:block/dirty_red_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/filthy_blue_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/filthy_cyan_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/filthy_green_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "ariasessentials:block/filthy_red_pool_tile_light"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/cyan_pool_tile"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/cyan_pool_tile_light"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/cyan_pool_tile_slab"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/cyan_pool_tile_stairs"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/cyan_pool_tile_wall_inventory"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dark_pool_light"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dark_pool_tile_light"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dirty_cyan_pool_tile"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dirty_cyan_pool_tile_light"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dirty_cyan_pool_tile_slab"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dirty_cyan_pool_tile_stairs"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/dirty_cyan_pool_tile_wall_inventory"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "ariasessentials:item/encased_singularity"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/filthy_cyan_pool_tile_light"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/magical_scrubber"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/mini_sun"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/nether_vault_steel_ore_block"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/stable_singularity"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_block"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_stairs"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_stairs_dr"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_stairs_lr"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_stairs_rr"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_catwalk_top"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_floor_grating"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_floor_grating_top"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_railing"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/steel_table"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/tflipflop"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/uncrafter"
|
||||
}
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.3 KiB |