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 aaef07f..0000000 --- a/src/main/java/com/akiisqt/Entrapped.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.akiisqt; - -import net.fabricmc.api.ModInitializer; - -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"; - - @Override - public void onInitialize() { - LOGGER.info("Entrapped - Registering!"); - - EntrappedBlocks.registerAll(); - LOGGER.info("Entrapped - Blocks Registered!"); - - EntrappedBlockEntities.registerAll(); - LOGGER.info("Entrapped - BlocksEntities Registered"); - - EntrappedItems.registerAll(); - LOGGER.info("Entrapped - Items Registered"); - - LOGGER.info("Entrapped - Fully 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 06c8fbc..0000000 --- a/src/main/java/com/akiisqt/EntrappedBlockEntities.java +++ /dev/null @@ -1,18 +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("barrel")).build(); - - public static void registerAll() { - Registry.register(Registries.BLOCK_ENTITY_TYPE, new Identifier("entrapped", "barrel_entity"), BarrelEntity); - } -} - - diff --git a/src/main/java/com/akiisqt/EntrappedBlocks.java b/src/main/java/com/akiisqt/EntrappedBlocks.java deleted file mode 100644 index 0b33e1d..0000000 --- a/src/main/java/com/akiisqt/EntrappedBlocks.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblock.Barrel; -import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; -import net.minecraft.block.Block; -import net.minecraft.block.Blocks; -import net.minecraft.registry.Registries; -import net.minecraft.registry.Registry; -import net.minecraft.util.Identifier; - -import java.util.HashMap; -import java.util.Map; - -public class EntrappedBlocks { - public static Map blockMap = new HashMap<>(); - static { - blockMap.put("barrel", new Barrel(FabricBlockSettings.copy(Blocks.CHERRY_PLANKS))); - } - - public static void registerAll() { - for ( var entry: EntrappedBlocks.blockMap.entrySet() ) { - Registry.register(Registries.BLOCK, new Identifier(Entrapped.modId, entry.getKey()), entry.getValue()); - } - } -} 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 9d8d220..0000000 --- a/src/main/java/com/akiisqt/EntrappedItems.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.akiisqt; - -import com.akiisqt.customblock.Barrel; -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.FabricBlockSettings; -import net.minecraft.block.Blocks; -import net.minecraft.item.*; -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 java.util.HashMap; -import java.util.Map; - -public class EntrappedItems { - private static final ItemGroup itemGroup = FabricItemGroup.builder().icon(() -> new ItemStack(Items.TNT)).displayName(Text.translatable("itemGroup.entrapped.main")).build(); - - public static Map itemMap = new HashMap<>(); - static { - itemMap.put("barrel_lid", new Item(new FabricItemSettings())); - } - - public static void registerAll() { - Registry.register(Registries.ITEM_GROUP, new Identifier(Entrapped.modId, "main"), itemGroup); - - for ( var entry: EntrappedBlocks.blockMap.entrySet() ) { - var Item = Registry.register(Registries.ITEM, new Identifier(Entrapped.modId, entry.getKey()), new BlockItem(entry.getValue(), new FabricItemSettings())); - ItemGroupEvents.modifyEntriesEvent(RegistryKey.of(RegistryKeys.ITEM_GROUP, new Identifier(Entrapped.modId, "main"))).register((entries) -> - { - entries.add(Item); - }); - } - - for (var entry: itemMap.entrySet() ) { - var Item = Registry.register(Registries.ITEM, new Identifier(Entrapped.modId, entry.getKey()), entry.getValue()); - ItemGroupEvents.modifyEntriesEvent(RegistryKey.of(RegistryKeys.ITEM_GROUP, new Identifier(Entrapped.modId, "main"))).register((entries) -> - { - entries.add(Item); - }); - } - } -} diff --git a/src/main/java/com/akiisqt/customblock/Barrel.java b/src/main/java/com/akiisqt/customblock/Barrel.java deleted file mode 100644 index cf720e7..0000000 --- a/src/main/java/com/akiisqt/customblock/Barrel.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.akiisqt.customblock; - -import com.akiisqt.EntrappedItems; -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.BooleanProperty; -import net.minecraft.state.property.IntProperty; -import net.minecraft.state.property.Property; -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 Barrel extends HorizontalFacingBlock implements BlockEntityProvider { - private static final VoxelShape shape = Stream.of( - Block.createCuboidShape(2, 0, 14, 14, 16, 15), - Block.createCuboidShape(14, 0, 2, 15, 16, 14), - Block.createCuboidShape(13, 0, 13, 14, 16, 14), - Block.createCuboidShape(13, 0, 2, 14, 16, 3), - Block.createCuboidShape(2, 0, 1, 14, 16, 2), - Block.createCuboidShape(2, 0, 2, 3, 16, 3), - Block.createCuboidShape(1, 0, 2, 2, 16, 14), - Block.createCuboidShape(2, 0, 13, 3, 16, 14), - Block.createCuboidShape(2, 0, 2, 14, 1, 14) - ).reduce((v1, v2) -> VoxelShapes.combineAndSimplify(v1, v2, BooleanBiFunction.OR)).get(); - public static final IntProperty level = IntProperty.of("level", 0, 8); - public static final BooleanProperty sealed = BooleanProperty.of("sealed"); - - public Barrel(Settings settings) { - super(settings, shape); - this.setDefaultState(this.getDefaultState().with(level, 0).with(sealed, false)); - } - - @Override - public BlockEntity createBlockEntity(BlockPos pos, BlockState state) { - return new BarrelEntity(pos, state); - } - - @Override - @SuppressWarnings("all") - protected void appendProperties(StateManager.Builder builder) { - builderProperties.add(level); - builderProperties.add(sealed); - builder.add(builderProperties.toArray(new Property[]{})); - } - - @Override - @SuppressWarnings("deprecation") - public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, 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/HorizontalFacingBlock.java b/src/main/java/com/akiisqt/customblock/HorizontalFacingBlock.java deleted file mode 100644 index c601b3f..0000000 --- a/src/main/java/com/akiisqt/customblock/HorizontalFacingBlock.java +++ /dev/null @@ -1,55 +0,0 @@ -package com.akiisqt.customblock; - -import com.akiisqt.util.VoxelShapeRotator; -import net.minecraft.block.AbstractBlock; -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.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.*; - -public class HorizontalFacingBlock extends Block { - static final DirectionProperty facing = Properties.HORIZONTAL_FACING; - public static final List builderProperties = new ArrayList<>(); - static { - builderProperties.add(facing); - } - - final Map shapeMap; - - protected HorizontalFacingBlock(AbstractBlock.Settings settings, VoxelShape shape) { - super(settings); - this.shapeMap = VoxelShapeRotator.rotateAllDirections(shape); - this.setDefaultState(this.getDefaultState().with(facing, Direction.NORTH)); - } - - @Override - public void onPlaced(World world, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack itemStack) { - if (placer != null) { - world.setBlockState(pos, state.with(facing, placer.getHorizontalFacing()), 2); - } - } - - @Override - @SuppressWarnings("deprecation") - public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { - return shapeMap.get(state.get(facing)); - } - - @Override - @Nullable - public BlockState getPlacementState(ItemPlacementContext ctx) { - return this.getDefaultState().with(facing, Direction.fromHorizontal(Math.floorMod((int)Math.floor((double)(Objects.requireNonNull(ctx.getPlayer()).getYaw() * 4.0F / 360.0F) + 0.5D), 4))); - } -} 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/barrel.json b/src/main/resources/assets/entrapped/blockstates/barrel.json deleted file mode 100644 index be25fa5..0000000 --- a/src/main/resources/assets/entrapped/blockstates/barrel.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "level=0,facing=north,sealed=false": { - "model": "entrapped:block/barrel", - "y": 180 - }, - "level=0,facing=east,sealed=false": { - "model": "entrapped:block/barrel", - "y": 270 - }, - "level=0,facing=south,sealed=false": { - "model": "entrapped:block/barrel" - }, - "level=0,facing=west,sealed=false": { - "model": "entrapped:block/barrel", - "y": 90 - }, - "level=0,facing=north,sealed=true": { - "model": "entrapped:block/barrel_sealed", - "y": 180 - }, - "level=0,facing=east,sealed=true": { - "model": "entrapped:block/barrel_sealed", - "y": 270 - }, - "level=0,facing=south,sealed=true": { - "model": "entrapped:block/barrel_sealed" - }, - "level=0,facing=west,sealed=true": { - "model": "entrapped:block/barrel_sealed", - "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/barrel.json b/src/main/resources/assets/entrapped/models/block/barrel.json deleted file mode 100644 index 387595e..0000000 --- a/src/main/resources/assets/entrapped/models/block/barrel.json +++ /dev/null @@ -1,534 +0,0 @@ -{ - "texture_size": [32, 32], - "textures": { - "0": "entrapped:block/barrel", - "2": "minecraft:block/sand", - "particle": "entrapped:block/barrel" - }, - "elements": [ - { - "name": "Level1", - "from": [2, 1.25, 2], - "to": [14, 2.9375, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level2", - "from": [2, 2.9375, 2], - "to": [14, 4.625, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level3", - "from": [2, 4.625, 2], - "to": [14, 6.3125, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level4", - "from": [2, 6.3125, 2], - "to": [14, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level5", - "from": [2, 8, 2], - "to": [14, 9.6875, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level6", - "from": [2, 9.6875, 2], - "to": [14, 11.375, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level7", - "from": [2, 11.375, 2], - "to": [14, 13.0625, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "name": "Level8", - "from": [2, 13.0625, 2], - "to": [14, 14.75, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "color": 8, - "faces": { - "north": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "east": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "south": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "west": {"uv": [0, 0, 3, 0.42188], "texture": "#2", "tintindex": 0}, - "up": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0}, - "down": {"uv": [0, 0, 3, 3], "rotation": 180, "texture": "#2", "tintindex": 0} - } - }, - { - "from": [2, 0, 2], - "to": [14, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "faces": { - "north": {"uv": [12.25, 3, 15.25, 3.25], "texture": "#0"}, - "east": {"uv": [12.25, 3.25, 15.25, 3.5], "texture": "#0"}, - "south": {"uv": [12.25, 3.5, 15.25, 3.75], "texture": "#0"}, - "west": {"uv": [12.25, 3.75, 15.25, 4], "texture": "#0"}, - "up": {"uv": [9, 11, 6, 8], "texture": "#0"}, - "down": {"uv": [12, 0, 9, 3], "texture": "#0"} - } - }, - { - "from": [2, 0, 13], - "to": [3, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [9.5, 12, 9.75, 16], "texture": "#0"}, - "east": {"uv": [9.75, 12, 10, 16], "texture": "#0"}, - "south": {"uv": [10, 12, 10.25, 16], "texture": "#0"}, - "west": {"uv": [10.25, 12, 10.5, 16], "texture": "#0"}, - "up": {"uv": [3.5, 13.75, 3.25, 13.5], "texture": "#0"}, - "down": {"uv": [3.75, 13.5, 3.5, 13.75], "texture": "#0"} - } - }, - { - "from": [1, 0, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-14, 0, 0]}, - "faces": { - "north": {"uv": [6.25, 12, 6.5, 16], "texture": "#0"}, - "east": {"uv": [0, 4, 3, 8], "texture": "#0"}, - "south": {"uv": [6.5, 12, 6.75, 16], "texture": "#0"}, - "west": {"uv": [3, 4, 6, 8], "texture": "#0"}, - "up": {"uv": [11.5, 15, 11.25, 12], "texture": "#0"}, - "down": {"uv": [11.75, 12, 11.5, 15], "texture": "#0"} - } - }, - { - "from": [2, 0, 2], - "to": [3, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [8.5, 12, 8.75, 16], "texture": "#0"}, - "east": {"uv": [8.75, 12, 9, 16], "texture": "#0"}, - "south": {"uv": [9, 12, 9.25, 16], "texture": "#0"}, - "west": {"uv": [9.25, 12, 9.5, 16], "texture": "#0"}, - "up": {"uv": [3, 13.75, 2.75, 13.5], "texture": "#0"}, - "down": {"uv": [3.25, 13.5, 3, 13.75], "texture": "#0"} - } - }, - { - "from": [2, 0, 1], - "to": [14, 16, 2], - "faces": { - "north": {"uv": [0, 0, 3, 4], "texture": "#0"}, - "east": {"uv": [12, 3, 12.25, 7], "texture": "#0"}, - "south": {"uv": [3, 0, 6, 4], "texture": "#0"}, - "west": {"uv": [6, 12, 6.25, 16], "texture": "#0"}, - "up": {"uv": [15.25, 5.25, 12.25, 5], "texture": "#0"}, - "down": {"uv": [15.25, 5.25, 12.25, 5.5], "texture": "#0"} - } - }, - { - "from": [2, 11, 0.75], - "to": [14, 13, 1], - "faces": { - "north": {"uv": [9, 9, 12, 9.5], "texture": "#0"}, - "east": {"uv": [1.75, 12.5, 2, 13], "texture": "#0"}, - "south": {"uv": [9, 9.5, 12, 10], "texture": "#0"}, - "west": {"uv": [2, 12.5, 2.25, 13], "texture": "#0"}, - "up": {"uv": [15.25, 9.25, 12.25, 9], "texture": "#0"}, - "down": {"uv": [15.25, 9.25, 12.25, 9.5], "texture": "#0"} - } - }, - { - "from": [2, 3, 0.75], - "to": [14, 5, 1], - "faces": { - "north": {"uv": [9, 10, 12, 10.5], "texture": "#0"}, - "east": {"uv": [2.25, 12.5, 2.5, 13], "texture": "#0"}, - "south": {"uv": [9, 10.5, 12, 11], "texture": "#0"}, - "west": {"uv": [2.5, 12.5, 2.75, 13], "texture": "#0"}, - "up": {"uv": [15.25, 9.75, 12.25, 9.5], "texture": "#0"}, - "down": {"uv": [15.25, 9.75, 12.25, 10], "texture": "#0"} - } - }, - { - "from": [2, 3, 15], - "to": [14, 5, 15.25], - "faces": { - "north": {"uv": [6, 11.5, 9, 12], "texture": "#0"}, - "east": {"uv": [3.25, 12.5, 3.5, 13], "texture": "#0"}, - "south": {"uv": [9, 11.5, 12, 12], "texture": "#0"}, - "west": {"uv": [3.5, 12.5, 3.75, 13], "texture": "#0"}, - "up": {"uv": [15.25, 10.75, 12.25, 10.5], "texture": "#0"}, - "down": {"uv": [15.25, 10.75, 12.25, 11], "texture": "#0"} - } - }, - { - "from": [2, 11, 15], - "to": [14, 13, 15.25], - "faces": { - "north": {"uv": [6, 11, 9, 11.5], "texture": "#0"}, - "east": {"uv": [2.75, 12.5, 3, 13], "texture": "#0"}, - "south": {"uv": [9, 11, 12, 11.5], "texture": "#0"}, - "west": {"uv": [3, 12.5, 3.25, 13], "texture": "#0"}, - "up": {"uv": [15.25, 10.25, 12.25, 10], "texture": "#0"}, - "down": {"uv": [15.25, 10.25, 12.25, 10.5], "texture": "#0"} - } - }, - { - "from": [15, 11, 2], - "to": [15.25, 13, 14], - "faces": { - "north": {"uv": [4.25, 12.5, 4.5, 13], "texture": "#0"}, - "east": {"uv": [12, 0.5, 15, 1], "texture": "#0"}, - "south": {"uv": [4.5, 12.5, 4.75, 13], "texture": "#0"}, - "west": {"uv": [12, 1, 15, 1.5], "texture": "#0"}, - "up": {"uv": [0.5, 15.5, 0.25, 12.5], "texture": "#0"}, - "down": {"uv": [0.75, 12.5, 0.5, 15.5], "texture": "#0"} - } - }, - { - "from": [15, 3, 2], - "to": [15.25, 5, 14], - "faces": { - "north": {"uv": [3.75, 12.5, 4, 13], "texture": "#0"}, - "east": {"uv": [0, 12, 3, 12.5], "texture": "#0"}, - "south": {"uv": [4, 12.5, 4.25, 13], "texture": "#0"}, - "west": {"uv": [12, 0, 15, 0.5], "texture": "#0"}, - "up": {"uv": [12.5, 14, 12.25, 11], "texture": "#0"}, - "down": {"uv": [0.25, 12.5, 0, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 2], - "to": [1, 13, 14], - "faces": { - "north": {"uv": [5.25, 12.5, 5.5, 13], "texture": "#0"}, - "east": {"uv": [12, 2.5, 15, 3], "texture": "#0"}, - "south": {"uv": [5.5, 12.5, 5.75, 13], "texture": "#0"}, - "west": {"uv": [3, 12, 6, 12.5], "texture": "#0"}, - "up": {"uv": [1.5, 15.5, 1.25, 12.5], "texture": "#0"}, - "down": {"uv": [1.75, 12.5, 1.5, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 2], - "to": [1, 5, 14], - "faces": { - "north": {"uv": [4.75, 12.5, 5, 13], "texture": "#0"}, - "east": {"uv": [12, 1.5, 15, 2], "texture": "#0"}, - "south": {"uv": [5, 12.5, 5.25, 13], "texture": "#0"}, - "west": {"uv": [12, 2, 15, 2.5], "texture": "#0"}, - "up": {"uv": [1, 15.5, 0.75, 12.5], "texture": "#0"}, - "down": {"uv": [1.25, 12.5, 1, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 14], - "to": [2, 13, 14.25], - "faces": { - "north": {"uv": [12.5, 7.5, 12.75, 8], "texture": "#0"}, - "east": {"uv": [12.5, 8, 12.75, 8.5], "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 12.75, 9], "texture": "#0"}, - "west": {"uv": [12.5, 11, 12.75, 11.5], "texture": "#0"}, - "up": {"uv": [5, 13.75, 4.75, 13.5], "texture": "#0"}, - "down": {"uv": [5.25, 13.5, 5, 13.75], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 14], - "to": [2, 5, 14.25], - "faces": { - "north": {"uv": [5.75, 12.5, 6, 13], "texture": "#0"}, - "east": {"uv": [12.5, 6, 12.75, 6.5], "texture": "#0"}, - "south": {"uv": [12.5, 6.5, 12.75, 7], "texture": "#0"}, - "west": {"uv": [12.5, 7, 12.75, 7.5], "texture": "#0"}, - "up": {"uv": [4.5, 13.75, 4.25, 13.5], "texture": "#0"}, - "down": {"uv": [4.75, 13.5, 4.5, 13.75], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 1.75], - "to": [2, 13, 2], - "faces": { - "north": {"uv": [12.75, 6.5, 13, 7], "texture": "#0"}, - "east": {"uv": [12.75, 7, 13, 7.5], "texture": "#0"}, - "south": {"uv": [12.75, 7.5, 13, 8], "texture": "#0"}, - "west": {"uv": [12.75, 8, 13, 8.5], "texture": "#0"}, - "up": {"uv": [6, 13.75, 5.75, 13.5], "texture": "#0"}, - "down": {"uv": [13.75, 6, 13.5, 6.25], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 1.75], - "to": [2, 5, 2], - "faces": { - "north": {"uv": [12.5, 11.5, 12.75, 12], "texture": "#0"}, - "east": {"uv": [12.5, 12, 12.75, 12.5], "texture": "#0"}, - "south": {"uv": [12.5, 12.5, 12.75, 13], "texture": "#0"}, - "west": {"uv": [12.75, 6, 13, 6.5], "texture": "#0"}, - "up": {"uv": [5.5, 13.75, 5.25, 13.5], "texture": "#0"}, - "down": {"uv": [5.75, 13.5, 5.5, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 11, 1.75], - "to": [15.25, 13, 2], - "faces": { - "north": {"uv": [3.5, 13, 3.75, 13.5], "texture": "#0"}, - "east": {"uv": [3.75, 13, 4, 13.5], "texture": "#0"}, - "south": {"uv": [4, 13, 4.25, 13.5], "texture": "#0"}, - "west": {"uv": [4.25, 13, 4.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 8, 13.5, 7.75], "texture": "#0"}, - "down": {"uv": [13.75, 8, 13.5, 8.25], "texture": "#0"} - } - }, - { - "from": [14, 3, 1.75], - "to": [15.25, 5, 2], - "faces": { - "north": {"uv": [2.5, 13, 2.75, 13.5], "texture": "#0"}, - "east": {"uv": [2.75, 13, 3, 13.5], "texture": "#0"}, - "south": {"uv": [3, 13, 3.25, 13.5], "texture": "#0"}, - "west": {"uv": [3.25, 13, 3.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 7.5, 13.5, 7.25], "texture": "#0"}, - "down": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 14], - "to": [15.25, 5, 14.25], - "faces": { - "north": {"uv": [12.75, 12.5, 13, 13], "texture": "#0"}, - "east": {"uv": [1.75, 13, 2, 13.5], "texture": "#0"}, - "south": {"uv": [2, 13, 2.25, 13.5], "texture": "#0"}, - "west": {"uv": [2.25, 13, 2.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 7, 13.5, 6.75], "texture": "#0"}, - "down": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#0"} - } - }, - { - "from": [14, 11, 14], - "to": [15.25, 13, 14.25], - "faces": { - "north": {"uv": [12.75, 8.5, 13, 9], "texture": "#0"}, - "east": {"uv": [12.75, 11, 13, 11.5], "texture": "#0"}, - "south": {"uv": [12.75, 11.5, 13, 12], "texture": "#0"}, - "west": {"uv": [12.75, 12, 13, 12.5], "texture": "#0"}, - "up": {"uv": [13.75, 6.5, 13.5, 6.25], "texture": "#0"}, - "down": {"uv": [13.75, 6.5, 13.5, 6.75], "texture": "#0"} - } - }, - { - "from": [1.75, 11, 0.75], - "to": [2, 13, 1.75], - "faces": { - "north": {"uv": [13.25, 12.5, 13.5, 13], "texture": "#0"}, - "east": {"uv": [13.25, 13, 13.5, 13.5], "texture": "#0"}, - "south": {"uv": [1.75, 13.5, 2, 14], "texture": "#0"}, - "west": {"uv": [2, 13.5, 2.25, 14], "texture": "#0"}, - "up": {"uv": [13.75, 13.25, 13.5, 13], "texture": "#0"}, - "down": {"uv": [13.5, 13.5, 13.25, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 11, 0.75], - "to": [14.25, 13, 1.75], - "faces": { - "north": {"uv": [13.25, 8.5, 13.5, 9], "texture": "#0"}, - "east": {"uv": [13.25, 11, 13.5, 11.5], "texture": "#0"}, - "south": {"uv": [13.25, 11.5, 13.5, 12], "texture": "#0"}, - "west": {"uv": [13.25, 12, 13.5, 12.5], "texture": "#0"}, - "up": {"uv": [13.75, 13, 13.5, 12.75], "texture": "#0"}, - "down": {"uv": [13.25, 13.5, 13, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 0.75], - "to": [14.25, 5, 1.75], - "faces": { - "north": {"uv": [13.25, 6.5, 13.5, 7], "texture": "#0"}, - "east": {"uv": [13.25, 7, 13.5, 7.5], "texture": "#0"}, - "south": {"uv": [13.25, 7.5, 13.5, 8], "texture": "#0"}, - "west": {"uv": [13.25, 8, 13.5, 8.5], "texture": "#0"}, - "up": {"uv": [13.75, 12.75, 13.5, 12.5], "texture": "#0"}, - "down": {"uv": [13, 13.5, 12.75, 13.75], "texture": "#0"} - } - }, - { - "from": [1.75, 3, 0.75], - "to": [2, 5, 1.75], - "faces": { - "north": {"uv": [13, 12.5, 13.25, 13], "texture": "#0"}, - "east": {"uv": [12.75, 13, 13, 13.5], "texture": "#0"}, - "south": {"uv": [13, 13, 13.25, 13.5], "texture": "#0"}, - "west": {"uv": [13.25, 6, 13.5, 6.5], "texture": "#0"}, - "up": {"uv": [13.75, 12.5, 13.5, 12.25], "texture": "#0"}, - "down": {"uv": [12.75, 13.5, 12.5, 13.75], "texture": "#0"} - } - }, - { - "from": [1.75, 3, 14.25], - "to": [2, 5, 15.25], - "faces": { - "north": {"uv": [13, 11, 13.25, 11.5], "texture": "#0"}, - "east": {"uv": [13, 11.5, 13.25, 12], "texture": "#0"}, - "south": {"uv": [13, 12, 13.25, 12.5], "texture": "#0"}, - "west": {"uv": [12.5, 13, 12.75, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 12, 13.5, 11.75], "texture": "#0"}, - "down": {"uv": [13.75, 12, 13.5, 12.25], "texture": "#0"} - } - }, - { - "from": [1.75, 11, 14.25], - "to": [2, 13, 15.25], - "faces": { - "north": {"uv": [13, 7, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13, 7.5, 13.25, 8], "texture": "#0"}, - "south": {"uv": [13, 8, 13.25, 8.5], "texture": "#0"}, - "west": {"uv": [13, 8.5, 13.25, 9], "texture": "#0"}, - "up": {"uv": [13.75, 11.5, 13.5, 11.25], "texture": "#0"}, - "down": {"uv": [13.75, 11.5, 13.5, 11.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 14.25], - "to": [14.25, 5, 15.25], - "faces": { - "north": {"uv": [5.5, 13, 5.75, 13.5], "texture": "#0"}, - "east": {"uv": [5.75, 13, 6, 13.5], "texture": "#0"}, - "south": {"uv": [13, 6, 13.25, 6.5], "texture": "#0"}, - "west": {"uv": [13, 6.5, 13.25, 7], "texture": "#0"}, - "up": {"uv": [13.75, 9, 13.5, 8.75], "texture": "#0"}, - "down": {"uv": [13.75, 11, 13.5, 11.25], "texture": "#0"} - } - }, - { - "from": [14, 11, 14.25], - "to": [14.25, 13, 15.25], - "faces": { - "north": {"uv": [4.5, 13, 4.75, 13.5], "texture": "#0"}, - "east": {"uv": [4.75, 13, 5, 13.5], "texture": "#0"}, - "south": {"uv": [5, 13, 5.25, 13.5], "texture": "#0"}, - "west": {"uv": [5.25, 13, 5.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 8.5, 13.5, 8.25], "texture": "#0"}, - "down": {"uv": [13.75, 8.5, 13.5, 8.75], "texture": "#0"} - } - }, - { - "from": [13, 0, 2], - "to": [14, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [7.5, 12, 7.75, 16], "texture": "#0"}, - "east": {"uv": [7.75, 12, 8, 16], "texture": "#0"}, - "south": {"uv": [8, 12, 8.25, 16], "texture": "#0"}, - "west": {"uv": [8.25, 12, 8.5, 16], "texture": "#0"}, - "up": {"uv": [2.5, 13.75, 2.25, 13.5], "texture": "#0"}, - "down": {"uv": [2.75, 13.5, 2.5, 13.75], "texture": "#0"} - } - }, - { - "from": [13, 0, 13], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [10.5, 12, 10.75, 16], "texture": "#0"}, - "east": {"uv": [10.75, 12, 11, 16], "texture": "#0"}, - "south": {"uv": [11, 12, 11.25, 16], "texture": "#0"}, - "west": {"uv": [12, 11, 12.25, 15], "texture": "#0"}, - "up": {"uv": [4, 13.75, 3.75, 13.5], "texture": "#0"}, - "down": {"uv": [4.25, 13.5, 4, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 0, 2], - "to": [15, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [12, 7, 12.25, 11], "texture": "#0"}, - "east": {"uv": [0, 8, 3, 12], "texture": "#0"}, - "south": {"uv": [7.25, 12, 7.5, 16], "texture": "#0"}, - "west": {"uv": [3, 8, 6, 12], "texture": "#0"}, - "up": {"uv": [12, 15, 11.75, 12], "texture": "#0"}, - "down": {"uv": [12.5, 6, 12.25, 9], "texture": "#0"} - } - }, - { - "from": [2, 0, 14], - "to": [14, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [6, 0, 9, 4], "texture": "#0"}, - "east": {"uv": [6.75, 12, 7, 16], "texture": "#0"}, - "south": {"uv": [6, 4, 9, 8], "texture": "#0"}, - "west": {"uv": [7, 12, 7.25, 16], "texture": "#0"}, - "up": {"uv": [15.25, 5.75, 12.25, 5.5], "texture": "#0"}, - "down": {"uv": [15.25, 5.75, 12.25, 6], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/models/block/barrel_sealed.json b/src/main/resources/assets/entrapped/models/block/barrel_sealed.json deleted file mode 100644 index 1b4bdc8..0000000 --- a/src/main/resources/assets/entrapped/models/block/barrel_sealed.json +++ /dev/null @@ -1,428 +0,0 @@ -{ - "texture_size": [64, 64], - "textures": { - "0": "entrapped:block/barrel", - "2": "minecraft:block/sand", - "particle": "entrapped:block/barrel" - }, - "elements": [ - { - "name": "Lid", - "from": [2, 14.75, 2], - "to": [14, 15.75, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [12.25, 4, 15.25, 4.25], "texture": "#0"}, - "east": {"uv": [12.25, 4.25, 15.25, 4.5], "texture": "#0"}, - "south": {"uv": [12.25, 4.5, 15.25, 4.75], "texture": "#0"}, - "west": {"uv": [12.25, 4.75, 15.25, 5], "texture": "#0"}, - "up": {"uv": [12, 6, 9, 3], "texture": "#0"}, - "down": {"uv": [12, 6, 9, 9], "texture": "#0"} - } - }, - { - "from": [2, 0, 2], - "to": [14, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, -1, 16]}, - "faces": { - "north": {"uv": [12.25, 3, 15.25, 3.25], "texture": "#0"}, - "east": {"uv": [12.25, 3.25, 15.25, 3.5], "texture": "#0"}, - "south": {"uv": [12.25, 3.5, 15.25, 3.75], "texture": "#0"}, - "west": {"uv": [12.25, 3.75, 15.25, 4], "texture": "#0"}, - "up": {"uv": [9, 11, 6, 8], "texture": "#0"}, - "down": {"uv": [12, 0, 9, 3], "texture": "#0"} - } - }, - { - "from": [2, 0, 13], - "to": [3, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [9.5, 12, 9.75, 16], "texture": "#0"}, - "east": {"uv": [9.75, 12, 10, 16], "texture": "#0"}, - "south": {"uv": [10, 12, 10.25, 16], "texture": "#0"}, - "west": {"uv": [10.25, 12, 10.5, 16], "texture": "#0"}, - "up": {"uv": [3.5, 13.75, 3.25, 13.5], "texture": "#0"}, - "down": {"uv": [3.75, 13.5, 3.5, 13.75], "texture": "#0"} - } - }, - { - "from": [1, 0, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-14, 0, 0]}, - "faces": { - "north": {"uv": [6.25, 12, 6.5, 16], "texture": "#0"}, - "east": {"uv": [0, 4, 3, 8], "texture": "#0"}, - "south": {"uv": [6.5, 12, 6.75, 16], "texture": "#0"}, - "west": {"uv": [3, 4, 6, 8], "texture": "#0"}, - "up": {"uv": [11.5, 15, 11.25, 12], "texture": "#0"}, - "down": {"uv": [11.75, 12, 11.5, 15], "texture": "#0"} - } - }, - { - "from": [2, 0, 2], - "to": [3, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [8.5, 12, 8.75, 16], "texture": "#0"}, - "east": {"uv": [8.75, 12, 9, 16], "texture": "#0"}, - "south": {"uv": [9, 12, 9.25, 16], "texture": "#0"}, - "west": {"uv": [9.25, 12, 9.5, 16], "texture": "#0"}, - "up": {"uv": [3, 13.75, 2.75, 13.5], "texture": "#0"}, - "down": {"uv": [3.25, 13.5, 3, 13.75], "texture": "#0"} - } - }, - { - "from": [2, 0, 1], - "to": [14, 16, 2], - "faces": { - "north": {"uv": [0, 0, 3, 4], "texture": "#0"}, - "east": {"uv": [12, 3, 12.25, 7], "texture": "#0"}, - "south": {"uv": [3, 0, 6, 4], "texture": "#0"}, - "west": {"uv": [6, 12, 6.25, 16], "texture": "#0"}, - "up": {"uv": [15.25, 5.25, 12.25, 5], "texture": "#0"}, - "down": {"uv": [15.25, 5.25, 12.25, 5.5], "texture": "#0"} - } - }, - { - "from": [2, 11, 0.75], - "to": [14, 13, 1], - "faces": { - "north": {"uv": [9, 9, 12, 9.5], "texture": "#0"}, - "east": {"uv": [1.75, 12.5, 2, 13], "texture": "#0"}, - "south": {"uv": [9, 9.5, 12, 10], "texture": "#0"}, - "west": {"uv": [2, 12.5, 2.25, 13], "texture": "#0"}, - "up": {"uv": [15.25, 9.25, 12.25, 9], "texture": "#0"}, - "down": {"uv": [15.25, 9.25, 12.25, 9.5], "texture": "#0"} - } - }, - { - "from": [2, 3, 0.75], - "to": [14, 5, 1], - "faces": { - "north": {"uv": [9, 10, 12, 10.5], "texture": "#0"}, - "east": {"uv": [2.25, 12.5, 2.5, 13], "texture": "#0"}, - "south": {"uv": [9, 10.5, 12, 11], "texture": "#0"}, - "west": {"uv": [2.5, 12.5, 2.75, 13], "texture": "#0"}, - "up": {"uv": [15.25, 9.75, 12.25, 9.5], "texture": "#0"}, - "down": {"uv": [15.25, 9.75, 12.25, 10], "texture": "#0"} - } - }, - { - "from": [2, 3, 15], - "to": [14, 5, 15.25], - "faces": { - "north": {"uv": [6, 11.5, 9, 12], "texture": "#0"}, - "east": {"uv": [3.25, 12.5, 3.5, 13], "texture": "#0"}, - "south": {"uv": [9, 11.5, 12, 12], "texture": "#0"}, - "west": {"uv": [3.5, 12.5, 3.75, 13], "texture": "#0"}, - "up": {"uv": [15.25, 10.75, 12.25, 10.5], "texture": "#0"}, - "down": {"uv": [15.25, 10.75, 12.25, 11], "texture": "#0"} - } - }, - { - "from": [2, 11, 15], - "to": [14, 13, 15.25], - "faces": { - "north": {"uv": [6, 11, 9, 11.5], "texture": "#0"}, - "east": {"uv": [2.75, 12.5, 3, 13], "texture": "#0"}, - "south": {"uv": [9, 11, 12, 11.5], "texture": "#0"}, - "west": {"uv": [3, 12.5, 3.25, 13], "texture": "#0"}, - "up": {"uv": [15.25, 10.25, 12.25, 10], "texture": "#0"}, - "down": {"uv": [15.25, 10.25, 12.25, 10.5], "texture": "#0"} - } - }, - { - "from": [15, 11, 2], - "to": [15.25, 13, 14], - "faces": { - "north": {"uv": [4.25, 12.5, 4.5, 13], "texture": "#0"}, - "east": {"uv": [12, 0.5, 15, 1], "texture": "#0"}, - "south": {"uv": [4.5, 12.5, 4.75, 13], "texture": "#0"}, - "west": {"uv": [12, 1, 15, 1.5], "texture": "#0"}, - "up": {"uv": [0.5, 15.5, 0.25, 12.5], "texture": "#0"}, - "down": {"uv": [0.75, 12.5, 0.5, 15.5], "texture": "#0"} - } - }, - { - "from": [15, 3, 2], - "to": [15.25, 5, 14], - "faces": { - "north": {"uv": [3.75, 12.5, 4, 13], "texture": "#0"}, - "east": {"uv": [0, 12, 3, 12.5], "texture": "#0"}, - "south": {"uv": [4, 12.5, 4.25, 13], "texture": "#0"}, - "west": {"uv": [12, 0, 15, 0.5], "texture": "#0"}, - "up": {"uv": [12.5, 14, 12.25, 11], "texture": "#0"}, - "down": {"uv": [0.25, 12.5, 0, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 2], - "to": [1, 13, 14], - "faces": { - "north": {"uv": [5.25, 12.5, 5.5, 13], "texture": "#0"}, - "east": {"uv": [12, 2.5, 15, 3], "texture": "#0"}, - "south": {"uv": [5.5, 12.5, 5.75, 13], "texture": "#0"}, - "west": {"uv": [3, 12, 6, 12.5], "texture": "#0"}, - "up": {"uv": [1.5, 15.5, 1.25, 12.5], "texture": "#0"}, - "down": {"uv": [1.75, 12.5, 1.5, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 2], - "to": [1, 5, 14], - "faces": { - "north": {"uv": [4.75, 12.5, 5, 13], "texture": "#0"}, - "east": {"uv": [12, 1.5, 15, 2], "texture": "#0"}, - "south": {"uv": [5, 12.5, 5.25, 13], "texture": "#0"}, - "west": {"uv": [12, 2, 15, 2.5], "texture": "#0"}, - "up": {"uv": [1, 15.5, 0.75, 12.5], "texture": "#0"}, - "down": {"uv": [1.25, 12.5, 1, 15.5], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 14], - "to": [2, 13, 14.25], - "faces": { - "north": {"uv": [12.5, 7.5, 12.75, 8], "texture": "#0"}, - "east": {"uv": [12.5, 8, 12.75, 8.5], "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 12.75, 9], "texture": "#0"}, - "west": {"uv": [12.5, 11, 12.75, 11.5], "texture": "#0"}, - "up": {"uv": [5, 13.75, 4.75, 13.5], "texture": "#0"}, - "down": {"uv": [5.25, 13.5, 5, 13.75], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 14], - "to": [2, 5, 14.25], - "faces": { - "north": {"uv": [5.75, 12.5, 6, 13], "texture": "#0"}, - "east": {"uv": [12.5, 6, 12.75, 6.5], "texture": "#0"}, - "south": {"uv": [12.5, 6.5, 12.75, 7], "texture": "#0"}, - "west": {"uv": [12.5, 7, 12.75, 7.5], "texture": "#0"}, - "up": {"uv": [4.5, 13.75, 4.25, 13.5], "texture": "#0"}, - "down": {"uv": [4.75, 13.5, 4.5, 13.75], "texture": "#0"} - } - }, - { - "from": [0.75, 11, 1.75], - "to": [2, 13, 2], - "faces": { - "north": {"uv": [12.75, 6.5, 13, 7], "texture": "#0"}, - "east": {"uv": [12.75, 7, 13, 7.5], "texture": "#0"}, - "south": {"uv": [12.75, 7.5, 13, 8], "texture": "#0"}, - "west": {"uv": [12.75, 8, 13, 8.5], "texture": "#0"}, - "up": {"uv": [6, 13.75, 5.75, 13.5], "texture": "#0"}, - "down": {"uv": [13.75, 6, 13.5, 6.25], "texture": "#0"} - } - }, - { - "from": [0.75, 3, 1.75], - "to": [2, 5, 2], - "faces": { - "north": {"uv": [12.5, 11.5, 12.75, 12], "texture": "#0"}, - "east": {"uv": [12.5, 12, 12.75, 12.5], "texture": "#0"}, - "south": {"uv": [12.5, 12.5, 12.75, 13], "texture": "#0"}, - "west": {"uv": [12.75, 6, 13, 6.5], "texture": "#0"}, - "up": {"uv": [5.5, 13.75, 5.25, 13.5], "texture": "#0"}, - "down": {"uv": [5.75, 13.5, 5.5, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 11, 1.75], - "to": [15.25, 13, 2], - "faces": { - "north": {"uv": [3.5, 13, 3.75, 13.5], "texture": "#0"}, - "east": {"uv": [3.75, 13, 4, 13.5], "texture": "#0"}, - "south": {"uv": [4, 13, 4.25, 13.5], "texture": "#0"}, - "west": {"uv": [4.25, 13, 4.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 8, 13.5, 7.75], "texture": "#0"}, - "down": {"uv": [13.75, 8, 13.5, 8.25], "texture": "#0"} - } - }, - { - "from": [14, 3, 1.75], - "to": [15.25, 5, 2], - "faces": { - "north": {"uv": [2.5, 13, 2.75, 13.5], "texture": "#0"}, - "east": {"uv": [2.75, 13, 3, 13.5], "texture": "#0"}, - "south": {"uv": [3, 13, 3.25, 13.5], "texture": "#0"}, - "west": {"uv": [3.25, 13, 3.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 7.5, 13.5, 7.25], "texture": "#0"}, - "down": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 14], - "to": [15.25, 5, 14.25], - "faces": { - "north": {"uv": [12.75, 12.5, 13, 13], "texture": "#0"}, - "east": {"uv": [1.75, 13, 2, 13.5], "texture": "#0"}, - "south": {"uv": [2, 13, 2.25, 13.5], "texture": "#0"}, - "west": {"uv": [2.25, 13, 2.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 7, 13.5, 6.75], "texture": "#0"}, - "down": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#0"} - } - }, - { - "from": [14, 11, 14], - "to": [15.25, 13, 14.25], - "faces": { - "north": {"uv": [12.75, 8.5, 13, 9], "texture": "#0"}, - "east": {"uv": [12.75, 11, 13, 11.5], "texture": "#0"}, - "south": {"uv": [12.75, 11.5, 13, 12], "texture": "#0"}, - "west": {"uv": [12.75, 12, 13, 12.5], "texture": "#0"}, - "up": {"uv": [13.75, 6.5, 13.5, 6.25], "texture": "#0"}, - "down": {"uv": [13.75, 6.5, 13.5, 6.75], "texture": "#0"} - } - }, - { - "from": [1.75, 11, 0.75], - "to": [2, 13, 1.75], - "faces": { - "north": {"uv": [13.25, 12.5, 13.5, 13], "texture": "#0"}, - "east": {"uv": [13.25, 13, 13.5, 13.5], "texture": "#0"}, - "south": {"uv": [1.75, 13.5, 2, 14], "texture": "#0"}, - "west": {"uv": [2, 13.5, 2.25, 14], "texture": "#0"}, - "up": {"uv": [13.75, 13.25, 13.5, 13], "texture": "#0"}, - "down": {"uv": [13.5, 13.5, 13.25, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 11, 0.75], - "to": [14.25, 13, 1.75], - "faces": { - "north": {"uv": [13.25, 8.5, 13.5, 9], "texture": "#0"}, - "east": {"uv": [13.25, 11, 13.5, 11.5], "texture": "#0"}, - "south": {"uv": [13.25, 11.5, 13.5, 12], "texture": "#0"}, - "west": {"uv": [13.25, 12, 13.5, 12.5], "texture": "#0"}, - "up": {"uv": [13.75, 13, 13.5, 12.75], "texture": "#0"}, - "down": {"uv": [13.25, 13.5, 13, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 0.75], - "to": [14.25, 5, 1.75], - "faces": { - "north": {"uv": [13.25, 6.5, 13.5, 7], "texture": "#0"}, - "east": {"uv": [13.25, 7, 13.5, 7.5], "texture": "#0"}, - "south": {"uv": [13.25, 7.5, 13.5, 8], "texture": "#0"}, - "west": {"uv": [13.25, 8, 13.5, 8.5], "texture": "#0"}, - "up": {"uv": [13.75, 12.75, 13.5, 12.5], "texture": "#0"}, - "down": {"uv": [13, 13.5, 12.75, 13.75], "texture": "#0"} - } - }, - { - "from": [1.75, 3, 0.75], - "to": [2, 5, 1.75], - "faces": { - "north": {"uv": [13, 12.5, 13.25, 13], "texture": "#0"}, - "east": {"uv": [12.75, 13, 13, 13.5], "texture": "#0"}, - "south": {"uv": [13, 13, 13.25, 13.5], "texture": "#0"}, - "west": {"uv": [13.25, 6, 13.5, 6.5], "texture": "#0"}, - "up": {"uv": [13.75, 12.5, 13.5, 12.25], "texture": "#0"}, - "down": {"uv": [12.75, 13.5, 12.5, 13.75], "texture": "#0"} - } - }, - { - "from": [1.75, 3, 14.25], - "to": [2, 5, 15.25], - "faces": { - "north": {"uv": [13, 11, 13.25, 11.5], "texture": "#0"}, - "east": {"uv": [13, 11.5, 13.25, 12], "texture": "#0"}, - "south": {"uv": [13, 12, 13.25, 12.5], "texture": "#0"}, - "west": {"uv": [12.5, 13, 12.75, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 12, 13.5, 11.75], "texture": "#0"}, - "down": {"uv": [13.75, 12, 13.5, 12.25], "texture": "#0"} - } - }, - { - "from": [1.75, 11, 14.25], - "to": [2, 13, 15.25], - "faces": { - "north": {"uv": [13, 7, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13, 7.5, 13.25, 8], "texture": "#0"}, - "south": {"uv": [13, 8, 13.25, 8.5], "texture": "#0"}, - "west": {"uv": [13, 8.5, 13.25, 9], "texture": "#0"}, - "up": {"uv": [13.75, 11.5, 13.5, 11.25], "texture": "#0"}, - "down": {"uv": [13.75, 11.5, 13.5, 11.75], "texture": "#0"} - } - }, - { - "from": [14, 3, 14.25], - "to": [14.25, 5, 15.25], - "faces": { - "north": {"uv": [5.5, 13, 5.75, 13.5], "texture": "#0"}, - "east": {"uv": [5.75, 13, 6, 13.5], "texture": "#0"}, - "south": {"uv": [13, 6, 13.25, 6.5], "texture": "#0"}, - "west": {"uv": [13, 6.5, 13.25, 7], "texture": "#0"}, - "up": {"uv": [13.75, 9, 13.5, 8.75], "texture": "#0"}, - "down": {"uv": [13.75, 11, 13.5, 11.25], "texture": "#0"} - } - }, - { - "from": [14, 11, 14.25], - "to": [14.25, 13, 15.25], - "faces": { - "north": {"uv": [4.5, 13, 4.75, 13.5], "texture": "#0"}, - "east": {"uv": [4.75, 13, 5, 13.5], "texture": "#0"}, - "south": {"uv": [5, 13, 5.25, 13.5], "texture": "#0"}, - "west": {"uv": [5.25, 13, 5.5, 13.5], "texture": "#0"}, - "up": {"uv": [13.75, 8.5, 13.5, 8.25], "texture": "#0"}, - "down": {"uv": [13.75, 8.5, 13.5, 8.75], "texture": "#0"} - } - }, - { - "from": [13, 0, 2], - "to": [14, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [7.5, 12, 7.75, 16], "texture": "#0"}, - "east": {"uv": [7.75, 12, 8, 16], "texture": "#0"}, - "south": {"uv": [8, 12, 8.25, 16], "texture": "#0"}, - "west": {"uv": [8.25, 12, 8.5, 16], "texture": "#0"}, - "up": {"uv": [2.5, 13.75, 2.25, 13.5], "texture": "#0"}, - "down": {"uv": [2.75, 13.5, 2.5, 13.75], "texture": "#0"} - } - }, - { - "from": [13, 0, 13], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [10.5, 12, 10.75, 16], "texture": "#0"}, - "east": {"uv": [10.75, 12, 11, 16], "texture": "#0"}, - "south": {"uv": [11, 12, 11.25, 16], "texture": "#0"}, - "west": {"uv": [12, 11, 12.25, 15], "texture": "#0"}, - "up": {"uv": [4, 13.75, 3.75, 13.5], "texture": "#0"}, - "down": {"uv": [4.25, 13.5, 4, 13.75], "texture": "#0"} - } - }, - { - "from": [14, 0, 2], - "to": [15, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [12, 7, 12.25, 11], "texture": "#0"}, - "east": {"uv": [0, 8, 3, 12], "texture": "#0"}, - "south": {"uv": [7.25, 12, 7.5, 16], "texture": "#0"}, - "west": {"uv": [3, 8, 6, 12], "texture": "#0"}, - "up": {"uv": [12, 15, 11.75, 12], "texture": "#0"}, - "down": {"uv": [12.5, 6, 12.25, 9], "texture": "#0"} - } - }, - { - "from": [2, 0, 14], - "to": [14, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [6, 0, 9, 4], "texture": "#0"}, - "east": {"uv": [6.75, 12, 7, 16], "texture": "#0"}, - "south": {"uv": [6, 4, 9, 8], "texture": "#0"}, - "west": {"uv": [7, 12, 7.25, 16], "texture": "#0"}, - "up": {"uv": [15.25, 5.75, 12.25, 5.5], "texture": "#0"}, - "down": {"uv": [15.25, 5.75, 12.25, 6], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/entrapped/textures/block/barrel.png b/src/main/resources/assets/entrapped/textures/block/barrel.png deleted file mode 100644 index f5acd31..0000000 Binary files a/src/main/resources/assets/entrapped/textures/block/barrel.png and /dev/null differ diff --git a/src/main/resources/data/entrapped/recipes/barrel.json b/src/main/resources/data/entrapped/recipes/barrel.json deleted file mode 100644 index 990570c..0000000 --- a/src/main/resources/data/entrapped/recipes/barrel.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "P P", - "P P", - "PIP" - ], - "key": { - "P": { - "tag": "minecraft:planks" - }, - "I": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "item": "entrapped: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 3cf837a..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/Akiisqt/entrapped-1.20.1" - }, - "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