5 Commits

Author SHA1 Message Date
Motschen
826a9bd4c1 Bump 1.0.1 2020-04-09 10:00:28 +02:00
Motschen
38d9403e15 Fix a recipe 2020-04-09 09:59:34 +02:00
Motschen
8b99eda78e Fix block drop of...
vertical cut sandstone slab
2020-04-09 09:57:46 +02:00
Motschen
52229ccb50 Fix item model of the VerticalSmoothSandstoneSlab 2020-04-09 09:56:24 +02:00
Motschen
82d6671624 Create README.md 2020-04-08 22:57:08 +02:00
5 changed files with 35 additions and 2 deletions

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# VerticalSlabs
Minecraft fabric mod that adds vertical slabs to the game!
They can even be waterlogged and rotated!

View File

@@ -1,3 +1,3 @@
{
"parent": "block/smooth_stone_slab"
"parent": "block/smooth_sandstone_slab"
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "verticalslabs:vertical_cut_sandstone_slab"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "verticalslabs:vertical_smooth_red_sandstone_slab"
}
],
"result": {
"item": "minecraft:smooth_red_sandstone_slab"
}
}

View File

@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "verticalslabs",
"version": "1.0.0",
"version": "1.0.1",
"name": "Vertical Slabs",
"description": "Adds vertical slabs to the game!",