Clean repo for open source release

Remove build artifacts, dev tool configs, unused dependencies,
and third-party source dumps. Add proper README, update .gitignore,
clean up Makefile.
This commit is contained in:
NotEvil
2026-04-12 00:51:22 +02:00
parent 2e7a1d403b
commit f6466360b6
1947 changed files with 238025 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
package com.tiedup.remake.blocks;
import net.minecraft.world.level.block.DoorBlock;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.state.properties.BlockSetType;
import net.minecraft.world.level.material.MapColor;
/**
* Cell Door Block - Iron-like door that cannot be opened by hand.
*
* Phase 16: Blocks
*
* Features:
* - Cannot be opened by clicking (requires redstone)
* - Uses iron door behavior
* - Sturdy construction
*
* Based on original BlockKidnapDoorBase from 1.12.2
*/
public class BlockCellDoor extends DoorBlock {
public BlockCellDoor() {
super(
BlockBehaviour.Properties.of()
.mapColor(MapColor.METAL)
.strength(5.0f, 45.0f)
.sound(SoundType.METAL)
.requiresCorrectToolForDrops()
.noOcclusion(),
BlockSetType.IRON // J'ai remis moi même
);
}
}