Skip to content

Commit

Permalink
Adds smelting recipes to create smooth blocks.
Browse files Browse the repository at this point in the history
The recipes are based on those included in the 1.14 snapshots:

 * `stone` smelts to `smooth_stone`,
 * `quartz` smelts to `smooth_quartz`,
 * `sandstone` smelts to `smooth_sandstone`, and
 * `red_sandstone` smelts to `smooth_red_sandstone`.
  • Loading branch information
totemo committed Nov 3, 2018
1 parent 38ea716 commit e22caea
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The datapacks are:
* `help.zip` - provides a function that implements a basic help command by calling help functions from the other datapacks.
* `fatigue.zip` - warns the player when lack of sleep would spawn phantoms.
* `cartokill.zip` - kills cartographers near the player when they trade with villagers, in order to prevent a server crash when a cartographer unlocks its explorer map trade; this only applies on pre-release servers with a map generated before pre6 (I think).
* `recipes.zip` - adds smelting recipes to create smooth blocks, like in the 1.14 snapshots: `stone` smelts to `smooth_stone`, `quartz` smelts to `smooth_quartz`, `sandstone` smelts to `smooth_sandstone` and `red_sandstone` smelts to `smooth_red_sandstone`.


## Installation

Expand Down
1 change: 1 addition & 0 deletions recipes/build.sh
9 changes: 9 additions & 0 deletions recipes/src/data/io.totemo.recipes/recipes/smooth_quartz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "smelting",
"ingredient": {
"item": "minecraft:quartz_block"
},
"result": "minecraft:smooth_quartz",
"experience": 0.1,
"cookingtime": 200
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "smelting",
"ingredient": {
"item": "minecraft:red_sandstone"
},
"result": "minecraft:smooth_red_sandstone",
"experience": 0.1,
"cookingtime": 200
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "smelting",
"ingredient": {
"item": "minecraft:sandstone"
},
"result": "minecraft:smooth_sandstone",
"experience": 0.1,
"cookingtime": 200
}
9 changes: 9 additions & 0 deletions recipes/src/data/io.totemo.recipes/recipes/smooth_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "smelting",
"ingredient": {
"item": "minecraft:stone"
},
"result": "minecraft:smooth_stone",
"experience": 0.1,
"cookingtime": 200
}
6 changes: 6 additions & 0 deletions recipes/src/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pack": {
"pack_format": 1,
"description":"Minecraft 1.13 smelting recipes to make smooth blocks like in the 1.14 snapshots."
}
}

0 comments on commit e22caea

Please sign in to comment.