blockDoor.yml
Here is a Example Door Block:
# blockDoor.yml
blocks:
doorblock:
name: "Test Door" # Item name for reference (not included in lang files)
namespace: "coreextensions" # Namespace
id: "other_door" # Item ID
maxCount: 64 # Maximum stack size (integer type)
lightLevel: 0 # Light level (integer type)
canOpenByHand: false # Can be opened directly by hand
dropsNothing: false # Does not drop anything
sound: "wood" # Block sound
hardness: 1.5 # Block hardness
resistance: 3.0 # Block resistance
useCutoutLayer: true # Supports transparent rendering
# Add more blocks...
Last updated