diff --git a/src/client/java/com/akiisqt/EntrappedClient.java b/src/client/java/com/akiisqt/EntrappedClient.java deleted file mode 100644 index 8fb4aab..0000000 --- a/src/client/java/com/akiisqt/EntrappedClient.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.akiisqt; - -import net.fabricmc.api.ClientModInitializer; - -public class EntrappedClient implements ClientModInitializer { - @Override - public void onInitializeClient() { - // This entrypoint is suitable for setting up client-specific logic, such as rendering. - } -} \ No newline at end of file diff --git a/src/client/java/com/akiisqt/mixin/client/ExampleClientMixin.java b/src/client/java/com/akiisqt/mixin/client/ExampleClientMixin.java deleted file mode 100644 index f00f2e7..0000000 --- a/src/client/java/com/akiisqt/mixin/client/ExampleClientMixin.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.akiisqt.mixin.client; - -import net.minecraft.client.MinecraftClient; -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; - -@Mixin(MinecraftClient.class) -public class ExampleClientMixin { - @Inject(at = @At("HEAD"), method = "run") - private void run(CallbackInfo info) { - // This code is injected into the start of MinecraftClient.run()V - } -} \ No newline at end of file diff --git a/src/client/resources/entrapped.client.mixins.json b/src/client/resources/entrapped.client.mixins.json deleted file mode 100644 index 445a136..0000000 --- a/src/client/resources/entrapped.client.mixins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "required": true, - "package": "com.akiisqt.mixin.client", - "compatibilityLevel": "JAVA_17", - "client": [ - "ExampleClientMixin" - ], - "injectors": { - "defaultRequire": 1 - } -} \ No newline at end of file diff --git a/src/main/java/com/akiisqt/Entrapped.java b/src/main/java/com/akiisqt/Entrapped.java deleted file mode 100644 index 8f42e8f..0000000 --- a/src/main/java/com/akiisqt/Entrapped.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblockentity.BarrelEntity; -import net.fabricmc.api.ModInitializer; - -import net.fabricmc.fabric.api.item.v1.FabricItemSettings; -import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup; -import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents; -import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder; -import net.minecraft.item.BlockItem; -import net.minecraft.item.ItemGroup; -import net.minecraft.item.ItemStack; -import net.minecraft.item.Items; -import net.minecraft.registry.Registries; -import net.minecraft.registry.Registry; -import net.minecraft.registry.RegistryKey; -import net.minecraft.registry.RegistryKeys; -import net.minecraft.text.Text; -import net.minecraft.util.Identifier; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class Entrapped implements ModInitializer { - public static final Logger LOGGER = LoggerFactory.getLogger("entrapped"); - public static final String ModId = "entrapped"; - private static final ItemGroup itemGroup = FabricItemGroup.builder() - .icon(() -> new ItemStack(Items.TNT)) - .displayName(Text.translatable("itemGroup.entrapped.main")) - .build(); - - @Override - public void onInitialize() { - LOGGER.info("Entrapped - Loading Registries!"); - - Registry.register(Registries.ITEM_GROUP, new Identifier(ModId, "main"), itemGroup); - for ( var Entry: EntrappedBlocks.blockMap.entrySet() ) { - var Item = Registry.register(Registries.ITEM, new Identifier(ModId, Entry.getKey()), new BlockItem(Entry.getValue(), new FabricItemSettings())); - ItemGroupEvents.modifyEntriesEvent(RegistryKey.of(RegistryKeys.ITEM_GROUP, new Identifier(ModId, "main"))).register((entries) -> - { - entries.add(Item); - }); - - EntrappedBlocks.blockMap.replace(Entry.getKey(), Registry.register(Registries.BLOCK, new Identifier(ModId, Entry.getKey().toLowerCase()), Entry.getValue())); - } - LOGGER.info("Entrapped - Blocks and their items Registered!"); - - EntrappedBlockEntities.registerAll(); -// for ( var Entry: EntrappedBlockEntities.blockEntityMap.entrySet() ) { -// EntrappedBlockEntities.blockEntityMap.replace(Entry.getKey(), -// Registry.register(Registries.BLOCK_ENTITY_TYPE, -// new Identifier(ModId, Entry.getKey()), -// FabricBlockEntityTypeBuilder.create(Entry.getValue().getValue(), EntrappedBlocks.blockMap.get(Entry.getValue().getKey())).build())); -// } - LOGGER.info("Entrapped - BlocksEntities Registered"); - - LOGGER.info("Entrapped Loaded!"); - } -} \ No newline at end of file diff --git a/src/main/java/com/akiisqt/EntrappedBlockEntities.java b/src/main/java/com/akiisqt/EntrappedBlockEntities.java deleted file mode 100644 index 8d24f36..0000000 --- a/src/main/java/com/akiisqt/EntrappedBlockEntities.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblockentity.BarrelEntity; -import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder; -import net.minecraft.block.entity.BlockEntityType; -import net.minecraft.registry.Registries; -import net.minecraft.registry.Registry; -import net.minecraft.util.Identifier; - -public class EntrappedBlockEntities { - public static BlockEntityType BarrelEntity = FabricBlockEntityTypeBuilder.create(BarrelEntity::new, EntrappedBlocks.blockMap.get("empty_barrel")).build(); - public static void registerAll() { - Registry.register(Registries.BLOCK_ENTITY_TYPE, new Identifier("entrapped", "empty_barrel_entity"), BarrelEntity); - } -//public static Map> blockEntityMap = new HashMap<>(); -//public static final BlockEntity -// -//static { -// setValuesOfKey(blockEntityMap,"empty_barrel_entity", "empty_barrel", (BlockEntity) BarrelEntity); -// } -// public static void setValuesOfKey(Map map, String entityName, String blockName, BlockEntity blockEntity) { -// Map innerMap = (Map) map.getOrDefault(entityName, new HashMap()); -// innerMap.put(blockName, blockEntity); -// map.replace(entityName, innerMap); -// } -} - - diff --git a/src/main/java/com/akiisqt/EntrappedBlocks.java b/src/main/java/com/akiisqt/EntrappedBlocks.java deleted file mode 100644 index 5b24d44..0000000 --- a/src/main/java/com/akiisqt/EntrappedBlocks.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblock.EmptyBarrel; -import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; -import net.minecraft.block.Block; -import net.minecraft.block.Blocks; - -import java.util.HashMap; -import java.util.Map; - - -public class EntrappedBlocks { - public static Map blockMap = new HashMap<>(); - static { - blockMap.put("empty_barrel", new EmptyBarrel(FabricBlockSettings.copy(Blocks.CHERRY_PLANKS))); - } -} diff --git a/src/main/java/com/akiisqt/EntrappedDataGenerator.java b/src/main/java/com/akiisqt/EntrappedDataGenerator.java deleted file mode 100644 index b20c86f..0000000 --- a/src/main/java/com/akiisqt/EntrappedDataGenerator.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.akiisqt; - -import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint; -import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; - -public class EntrappedDataGenerator implements DataGeneratorEntrypoint { - @Override - public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) { - - } -} diff --git a/src/main/java/com/akiisqt/EntrappedItems.java b/src/main/java/com/akiisqt/EntrappedItems.java deleted file mode 100644 index 643bc80..0000000 --- a/src/main/java/com/akiisqt/EntrappedItems.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblock.EmptyBarrel; -import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; -import net.minecraft.block.Block; -import net.minecraft.block.Blocks; - -import java.util.HashMap; -import java.util.Map; - -public class EntrappedItems { - public static Map itemMap = new HashMap<>(); - static { - itemMap.put("empty_barrel", new EmptyBarrel(FabricBlockSettings.copy(Blocks.CHERRY_PLANKS))); - } -} diff --git a/src/main/java/com/akiisqt/customblock/EmptyBarrel.java b/src/main/java/com/akiisqt/customblock/EmptyBarrel.java deleted file mode 100644 index 017cd17..0000000 --- a/src/main/java/com/akiisqt/customblock/EmptyBarrel.java +++ /dev/null @@ -1,54 +0,0 @@ -package com.akiisqt.customblock; - -import com.akiisqt.customblockentity.BarrelEntity; -import net.minecraft.block.*; -import net.minecraft.block.entity.BlockEntity; -import net.minecraft.entity.player.PlayerEntity; -import net.minecraft.state.StateManager; -import net.minecraft.state.property.IntProperty; -import net.minecraft.util.ActionResult; -import net.minecraft.util.Hand; -import net.minecraft.util.function.BooleanBiFunction; -import net.minecraft.util.hit.BlockHitResult; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.shape.VoxelShape; -import net.minecraft.util.shape.VoxelShapes; -import net.minecraft.world.World; -import net.minecraft.world.explosion.Explosion; - -import java.util.stream.Stream; - -public class EmptyBarrel extends Template implements BlockEntityProvider, Waterloggable { - private static final VoxelShape shape = Stream.of( - Block.createCuboidShape(2.5, 0, 2.5, 13.5, 1, 13.5), - Block.createCuboidShape(1, 0, 0.5, 15, 16, 2.5), - Block.createCuboidShape(13, 0, 2.5, 13.5, 16, 3), - Block.createCuboidShape(2.5, 0, 2.5, 3, 16, 3), - Block.createCuboidShape(2.5, 0, 13, 3, 16, 13.5), - Block.createCuboidShape(13, 0, 13, 13.5, 16, 13.5), - Block.createCuboidShape(1, 0, 13.5, 15, 16, 15.5), - Block.createCuboidShape(13.5, 0, 1, 15.5, 16, 15), - Block.createCuboidShape(0.5, 0, 1, 2.5, 16, 15) - ).reduce((v1, v2) -> VoxelShapes.combineAndSimplify(v1, v2, BooleanBiFunction.OR)).get(); - @Override - public BlockEntity createBlockEntity(BlockPos pos, BlockState state) { - return new BarrelEntity(pos, state); - } - public static final IntProperty Level = IntProperty.of("level", 0, 8); - public EmptyBarrel(AbstractBlock.Settings settings) { - super(settings, shape); - this.setDefaultState(this.getDefaultState().with(Level, 0)); - } - @Override - protected void appendProperties(StateManager.Builder builder) { - builder.add(Level); - } - @Override - public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player2, Hand hand, BlockHitResult hit) { - return ActionResult.SUCCESS; - } - @Override - public boolean shouldDropItemsOnExplosion(Explosion explosion) { - return false; - } -} \ No newline at end of file diff --git a/src/main/java/com/akiisqt/customblock/Template.java b/src/main/java/com/akiisqt/customblock/Template.java deleted file mode 100644 index 78eefd0..0000000 --- a/src/main/java/com/akiisqt/customblock/Template.java +++ /dev/null @@ -1,66 +0,0 @@ -package com.akiisqt.customblock; - -import com.akiisqt.util.VoxelShapeRotator; -import net.minecraft.block.Block; -import net.minecraft.block.BlockState; -import net.minecraft.block.ShapeContext; -import net.minecraft.entity.LivingEntity; -import net.minecraft.item.ItemPlacementContext; -import net.minecraft.item.ItemStack; -import net.minecraft.state.StateManager; -import net.minecraft.state.property.DirectionProperty; -import net.minecraft.state.property.Properties; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.math.Direction; -import net.minecraft.util.shape.VoxelShape; -import net.minecraft.world.BlockView; -import net.minecraft.world.World; -import org.jetbrains.annotations.Nullable; - -import java.util.Map; -import java.util.Objects; - -public abstract class Template extends Block { - final VoxelShape NORTH_SHAPE; - final Map SHAPE_MAP; - - public static final DirectionProperty FACING = Properties.HORIZONTAL_FACING; - - public Template(Settings settings, VoxelShape SHAPE) { - super(settings); - this.NORTH_SHAPE = SHAPE; - this.SHAPE_MAP = VoxelShapeRotator.rotateAllDirections(NORTH_SHAPE); - } - public Template(Settings settings) { - super(settings); - this.NORTH_SHAPE = null; - this.SHAPE_MAP = null; - } - - - @Override - public void onPlaced(World world, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack itemStack) { - if (placer != null) { - Direction direction = placer.getHorizontalFacing(); - world.setBlockState(pos, state.with(FACING, direction), 2); - } - } - - @Override - @SuppressWarnings("deprecation") - public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { - Direction facing = state.get(FACING); - return SHAPE_MAP.get(facing); - } - protected void appendProperties(StateManager.Builder builder) { - builder.add(FACING); - } - - @Nullable - @Override - public BlockState getPlacementState(ItemPlacementContext ctx) { - float yaw = Objects.requireNonNull(ctx.getPlayer()).getYaw(); - Direction dir = Direction.fromHorizontal(Math.floorMod((int)Math.floor((double)(yaw * 4.0F / 360.0F) + 0.5D), 4)); - return this.getDefaultState().with(FACING, dir); - } -} \ No newline at end of file diff --git a/src/main/java/com/akiisqt/customblockentity/BarrelEntity.java b/src/main/java/com/akiisqt/customblockentity/BarrelEntity.java deleted file mode 100644 index e08ea2f..0000000 --- a/src/main/java/com/akiisqt/customblockentity/BarrelEntity.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.akiisqt.customblockentity; - -import com.akiisqt.EntrappedBlockEntities; -import net.minecraft.block.BlockState; -import net.minecraft.block.entity.BlockEntity; -import net.minecraft.util.math.BlockPos; - -public class BarrelEntity extends BlockEntity { - public BarrelEntity(BlockPos pos, BlockState state) { - super(EntrappedBlockEntities.BarrelEntity, pos, state); - } -} diff --git a/src/main/java/com/akiisqt/mixin/ExampleMixin.java b/src/main/java/com/akiisqt/mixin/ExampleMixin.java deleted file mode 100644 index 6d4a35f..0000000 --- a/src/main/java/com/akiisqt/mixin/ExampleMixin.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.akiisqt.mixin; - -import net.minecraft.server.MinecraftServer; -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; - -@Mixin(MinecraftServer.class) -public class ExampleMixin { - @Inject(at = @At("HEAD"), method = "loadWorld") - private void init(CallbackInfo info) { - // This code is injected into the start of MinecraftServer.loadWorld()V - } -} \ No newline at end of file diff --git a/src/main/java/com/akiisqt/util/VoxelShapeRotator.java b/src/main/java/com/akiisqt/util/VoxelShapeRotator.java deleted file mode 100644 index 5bc2d18..0000000 --- a/src/main/java/com/akiisqt/util/VoxelShapeRotator.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.akiisqt.util; - -import net.minecraft.util.math.Box; -import net.minecraft.util.math.Direction; -import net.minecraft.util.shape.VoxelShape; -import net.minecraft.util.shape.VoxelShapes; - -import java.util.EnumMap; -import java.util.Map; - -public class VoxelShapeRotator { - - // Existing method - public static Map rotateAllDirections(VoxelShape originalShape) { - Map rotatedShapes = new EnumMap<>(Direction.class); - - rotatedShapes.put(Direction.NORTH, originalShape); - rotatedShapes.put(Direction.EAST, rotate90Degrees(originalShape)); - rotatedShapes.put(Direction.SOUTH, rotate180Degrees(originalShape)); - rotatedShapes.put(Direction.WEST, rotate270Degrees(originalShape)); - - return rotatedShapes; - } - - /** - * Rotates the given VoxelShape 90 degrees clockwise. - * - * @param originalShape The original VoxelShape to rotate. - * @return The rotated VoxelShape. - */ - public static VoxelShape rotate90Degrees(VoxelShape originalShape) { - return rotate(originalShape, 0.5, 0.5, 0.5, 90); - } - - /** - * Rotates the given VoxelShape 180 degrees. - * - * @param originalShape The original VoxelShape to rotate. - * @return The rotated VoxelShape. - */ - public static VoxelShape rotate180Degrees(VoxelShape originalShape) { - return rotate(originalShape, 0.5, 0.5, 0.5, 180); - } - - /** - * Rotates the given VoxelShape 270 degrees clockwise. - * - * @param originalShape The original VoxelShape to rotate. - * @return The rotated VoxelShape. - */ - public static VoxelShape rotate270Degrees(VoxelShape originalShape) { - return rotate(originalShape, 0.5, 0.5, 0.5, 270); - } - - /** - * Rotates the given VoxelShape around the specified point by the given angle. - * - * @param originalShape The original VoxelShape to rotate. - * @param centerX The x-coordinate of the rotation center. - * @param centerY The y-coordinate of the rotation center. - * @param centerZ The z-coordinate of the rotation center. - * @param angle The rotation angle in degrees. - * @return The rotated VoxelShape. - */ - public static VoxelShape rotate(VoxelShape originalShape, double centerX, double centerY, double centerZ, double angle) { - VoxelShape rotatedShape = VoxelShapes.empty(); - - // Loop through the boxes in the original shape - for (Box box : originalShape.getBoundingBoxes()) { - // Rotate the box - Box rotatedBox = rotateBox(box, centerX, centerY, centerZ, angle); - // Combine the rotated box into the final shape - rotatedShape = VoxelShapes.union(rotatedShape, VoxelShapes.cuboid(rotatedBox)); - } - - return rotatedShape; - } - - /** - * Rotates the given Box around the specified point by the given angle. - * - * @param box The original Box to rotate. - * @param centerX The x-coordinate of the rotation center. - * @param centerY The y-coordinate of the rotation center. - * @param centerZ The z-coordinate of the rotation center. - * @param angle The rotation angle in degrees. - * @return The rotated Box. - */ - public static Box rotateBox(Box box, double centerX, double centerY, double centerZ, double angle) { - double rad = Math.toRadians(angle); - - // The Y coordinate is unchanged, only X and Z are affected by rotation - double minX = Math.cos(rad) * (box.minX - centerX) - Math.sin(rad) * (box.minZ - centerZ) + centerX; - double minZ = Math.sin(rad) * (box.minX - centerX) + Math.cos(rad) * (box.minZ - centerZ) + centerZ; - double maxX = Math.cos(rad) * (box.maxX - centerX) - Math.sin(rad) * (box.maxZ - centerZ) + centerX; - double maxZ = Math.sin(rad) * (box.maxX - centerX) + Math.cos(rad) * (box.maxZ - centerZ) + centerZ; - - return new Box(Math.min(minX, maxX), box.minY, Math.min(minZ, maxZ), - Math.max(minX, maxX), box.maxY, Math.max(minZ, maxZ)); - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/blockstates/empty_barrel.json b/src/main/resources/assets/entrapped/blockstates/empty_barrel.json deleted file mode 100644 index 6261be3..0000000 --- a/src/main/resources/assets/entrapped/blockstates/empty_barrel.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "variants": { - "level=0,facing=east": { - "model": "entrapped:block/empty_barrel", - "y": 270 - }, - "level=0,facing=north": { - "model": "entrapped:block/empty_barrel", - "y": 180 - }, - "level=0,facing=south": { - "model": "entrapped:block/empty_barrel" - }, - "level=0,facing=west": { - "model": "entrapped:block/empty_barrel", - "y": 90 - }, - "level=1,facing=east": { - "model": "entrapped:block/empty_barrel_1", - "y": 270 - }, - "level=1,facing=north": { - "model": "entrapped:block/empty_barrel_1", - "y": 180 - }, - "level=1,facing=south": { - "model": "entrapped:block/empty_barrel_1" - }, - "level=1,facing=west": { - "model": "entrapped:block/empty_barrel_1", - "y": 90 - }, - "level=2,facing=east": { - "model": "entrapped:block/empty_barrel_2", - "y": 270 - }, - "level=2,facing=north": { - "model": "entrapped:block/empty_barrel_2", - "y": 180 - }, - "level=2,facing=south": { - "model": "entrapped:block/empty_barrel_2" - }, - "level=2,facing=west": { - "model": "entrapped:block/empty_barrel_2", - "y": 90 - }, - "level=3,facing=east": { - "model": "entrapped:block/empty_barrel_3", - "y": 270 - }, - "level=3,facing=north": { - "model": "entrapped:block/empty_barrel_3", - "y": 180 - }, - "level=3,facing=south": { - "model": "entrapped:block/empty_barrel_3" - }, - "level=3,facing=west": { - "model": "entrapped:block/empty_barrel_3", - "y": 90 - }, - "level=4,facing=east": { - "model": "entrapped:block/empty_barrel_4", - "y": 270 - }, - "level=4,facing=north": { - "model": "entrapped:block/empty_barrel_4", - "y": 180 - }, - "level=4,facing=south": { - "model": "entrapped:block/empty_barrel_4" - }, - "level=4,facing=west": { - "model": "entrapped:block/empty_barrel_4", - "y": 90 - }, - "level=5,facing=east": { - "model": "entrapped:block/empty_barrel_5", - "y": 270 - }, - "level=5,facing=north": { - "model": "entrapped:block/empty_barrel_5", - "y": 180 - }, - "level=5,facing=south": { - "model": "entrapped:block/empty_barrel_5" - }, - "level=5,facing=west": { - "model": "entrapped:block/empty_barrel_5", - "y": 90 - }, - "level=6,facing=east": { - "model": "entrapped:block/empty_barrel_6", - "y": 270 - }, - "level=6,facing=north": { - "model": "entrapped:block/empty_barrel_6", - "y": 180 - }, - "level=6,facing=south": { - "model": "entrapped:block/empty_barrel_6" - }, - "level=6,facing=west": { - "model": "entrapped:block/empty_barrel_6", - "y": 90 - }, - "level=7,facing=east": { - "model": "entrapped:block/empty_barrel_7", - "y": 270 - }, - "level=7,facing=north": { - "model": "entrapped:block/empty_barrel_7", - "y": 180 - }, - "level=7,facing=south": { - "model": "entrapped:block/empty_barrel_7" - }, - "level=7,facing=west": { - "model": "entrapped:block/empty_barrel_7", - "y": 90 - }, - "level=8,facing=east": { - "model": "entrapped:block/empty_barrel_8", - "y": 270 - }, - "level=8,facing=north": { - "model": "entrapped:block/empty_barrel_8", - "y": 180 - }, - "level=8,facing=south": { - "model": "entrapped:block/empty_barrel_8" - }, - "level=8,facing=west": { - "model": "entrapped:block/empty_barrel_8", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/lang/en_us.json b/src/main/resources/assets/entrapped/lang/en_us.json deleted file mode 100644 index cb92a2e..0000000 --- a/src/main/resources/assets/entrapped/lang/en_us.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel.json b/src/main/resources/assets/entrapped/models/block/empty_barrel.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_1.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_1.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_1.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_2.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_2.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_2.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_3.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_3.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_3.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_4.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_4.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_4.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_5.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_5.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_5.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_6.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_6.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_6.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_7.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_7.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_7.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/empty_barrel_8.json b/src/main/resources/assets/entrapped/models/block/empty_barrel_8.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/block/empty_barrel_8.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/item/empty_barrel.json b/src/main/resources/assets/entrapped/models/item/empty_barrel.json deleted file mode 100644 index 0f4b516..0000000 --- a/src/main/resources/assets/entrapped/models/item/empty_barrel.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "1": "entrapped:block/empty_barrel", - "particle": "entrapped:block/empty_barrel" - }, - "elements": [ - { - "from": [0.5, 0, 1], - "to": [2.5, 16, 15], - "faces": { - "north": {"uv": [10.5, 0, 11, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 4], "texture": "#1"}, - "south": {"uv": [10.5, 4, 11, 8], "texture": "#1"}, - "west": {"uv": [3.5, 0, 7, 4], "texture": "#1"}, - "up": {"uv": [4, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [4.5, 12, 4, 15.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 13], - "to": [3, 16, 15], - "faces": { - "north": {"uv": [10, 10.75, 10.5, 14.75], "texture": "#1"}, - "east": {"uv": [10.5, 10.75, 11, 14.75], "texture": "#1"}, - "south": {"uv": [11, 0, 11.5, 4], "texture": "#1"}, - "west": {"uv": [11, 4, 11.5, 8], "texture": "#1"}, - "up": {"uv": [6, 12.5, 5.5, 12], "texture": "#1"}, - "down": {"uv": [6.5, 12, 6, 12.5], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 16, 3], - "faces": { - "north": {"uv": [11, 10.75, 11.5, 14.75], "texture": "#1"}, - "east": {"uv": [11.5, 0, 12, 4], "texture": "#1"}, - "south": {"uv": [11.5, 4, 12, 8], "texture": "#1"}, - "west": {"uv": [11.5, 10.75, 12, 14.75], "texture": "#1"}, - "up": {"uv": [7, 12.5, 6.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 16, 3], - "faces": { - "north": {"uv": [0, 12, 0.5, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 12.5, 4], "texture": "#1"}, - "south": {"uv": [0.5, 12, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 12, 1.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 8, 12, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 10.75, 12, 11.25], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [1.5, 12, 2, 16], "texture": "#1"}, - "east": {"uv": [2, 12, 2.5, 16], "texture": "#1"}, - "south": {"uv": [2.5, 12, 3, 16], "texture": "#1"}, - "west": {"uv": [3, 12, 3.5, 16], "texture": "#1"}, - "up": {"uv": [12.5, 11.75, 12, 11.25], "texture": "#1"}, - "down": {"uv": [12.5, 11.75, 12, 12.25], "texture": "#1"} - } - }, - { - "from": [1, 0, 0.5], - "to": [15, 16, 2.5], - "faces": { - "north": {"uv": [0, 4, 3.5, 8], "texture": "#1"}, - "east": {"uv": [7, 10.75, 7.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 4, 7, 8], "texture": "#1"}, - "west": {"uv": [7.5, 10.75, 8, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 4.5, 12, 4], "texture": "#1"}, - "down": {"uv": [15.5, 4.5, 12, 5], "texture": "#1"} - } - }, - { - "from": [2, 0.5, 2.5], - "to": [14, 1.5, 13.5], - "faces": { - "north": {"uv": [12, 6, 15, 6.25], "texture": "#1"}, - "east": {"uv": [12, 6.5, 14.75, 6.75], "texture": "#1"}, - "south": {"uv": [12, 6.25, 15, 6.5], "texture": "#1"}, - "west": {"uv": [12, 6.75, 14.75, 7], "texture": "#1"}, - "up": {"uv": [10, 10.75, 7, 8], "texture": "#1"}, - "down": {"uv": [13, 8, 10, 10.75], "texture": "#1"} - } - }, - { - "from": [1, 0, 13.5], - "to": [15, 16, 15.5], - "faces": { - "north": {"uv": [0, 8, 3.5, 12], "texture": "#1"}, - "east": {"uv": [9, 10.75, 9.5, 14.75], "texture": "#1"}, - "south": {"uv": [3.5, 8, 7, 12], "texture": "#1"}, - "west": {"uv": [9.5, 10.75, 10, 14.75], "texture": "#1"}, - "up": {"uv": [15.5, 5.5, 12, 5], "texture": "#1"}, - "down": {"uv": [15.5, 5.5, 12, 6], "texture": "#1"} - } - }, - { - "from": [13.5, 0, 1], - "to": [15.5, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8, 10.75, 8.5, 14.75], "texture": "#1"}, - "east": {"uv": [7, 0, 10.5, 4], "texture": "#1"}, - "south": {"uv": [8.5, 10.75, 9, 14.75], "texture": "#1"}, - "west": {"uv": [7, 4, 10.5, 8], "texture": "#1"}, - "up": {"uv": [5, 15.5, 4.5, 12], "texture": "#1"}, - "down": {"uv": [5.5, 12, 5, 15.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 0.5, 0.5], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [15, 30, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 3.75, 0], - "scale": [1.38, 1.38, 1.38] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/textures/block/empty_barrel.png b/src/main/resources/assets/entrapped/textures/block/empty_barrel.png deleted file mode 100644 index 0d957f8..0000000 Binary files a/src/main/resources/assets/entrapped/textures/block/empty_barrel.png and /dev/null differ diff --git a/src/main/resources/data/entrapped/recipes/empty_barrel.json b/src/main/resources/data/entrapped/recipes/empty_barrel.json deleted file mode 100644 index 8a410e3..0000000 --- a/src/main/resources/data/entrapped/recipes/empty_barrel.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "P P", - "P P", - "PPP" - ], - "key": { - "P": { - "tag": "minecraft:planks" - } - }, - "result": { - "item": "entrapped:empty_barrel", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/entrapped.mixins.json b/src/main/resources/entrapped.mixins.json deleted file mode 100644 index 6f9a8bc..0000000 --- a/src/main/resources/entrapped.mixins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "required": true, - "package": "com.akiisqt.mixin", - "compatibilityLevel": "JAVA_17", - "mixins": [ - "ExampleMixin" - ], - "injectors": { - "defaultRequire": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json deleted file mode 100644 index f7048e6..0000000 --- a/src/main/resources/fabric.mod.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "schemaVersion": 1, - "id": "entrapped", - "version": "${version}", - "name": "Entrapped", - "description": "This is an example description! Tell everyone what your mod is about!", - "authors": [ - "Akiisqt" - ], - "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" - }, - "license": "CC0-1.0", - "icon": "icon.png", - "environment": "*", - "entrypoints": { - "main": [ - "com.akiisqt.Entrapped" - ], - "client": [ - "com.akiisqt.EntrappedClient" - ], - "fabric-datagen": [ - "com.akiisqt.EntrappedDataGenerator" - ] - }, - "mixins": [ - "entrapped.mixins.json", - { - "config": "entrapped.client.mixins.json", - "environment": "client" - } - ], - "depends": { - "fabricloader": ">=0.15.6", - "minecraft": "~1.20.1", - "java": ">=17", - "fabric-api": "*" - }, - "suggests": { - "another-mod": "*" - } -} \ No newline at end of file diff --git a/src/main/resources/icon.png b/src/main/resources/icon.png deleted file mode 100644 index 047b91f..0000000 Binary files a/src/main/resources/icon.png and /dev/null differ