diff --git a/README.md b/README.md index 060cc4e..54304c8 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,32 @@ -# Fabric Starter +# Kiln -[>> Downloads <<](https://github.com/CottonMC/FabricStarter/releases) +[>> Downloads <<](https://github.com/Boundarybreaker/Kiln/releases) -*Get set up!* +*Let's get fired up!* **This mod is open source and under a permissive license.** As such, it can be included in any modpack on any platform without prior permission. We appreciate hearing about people using our mods, but you do not need to ask to use them. See the [LICENSE file](LICENSE) for more details. -This is a template mod for creating Fabric projects. I'll be adding to it over time. Currently, it comes with a build.gradle set up to provide access to Cotton's maven and publish to Artifactory. +Kiln adds a new type of furnace that smelts recipes that can't be made in vanilla blast furnaces or smokers. These include: + +- Brick from clay ball +- Charcoal from logs that burn +- Cracked nether brick from nether brick +- Cracked stone brick from stone brick +- Glass from sand +- Glazed terracotta from dyed terracotta +- Green dye from cactus +- Lime dye from sea pickle +- Nether brick from netherrack +- Popped chorus fruit from chorus fruit +- Smooth quartz from quartz block +- Smooth red sandstone from red sandstone +- Smooth sandstone from sandstone +- Smooth stone from stone +- Sponge from wet sponge +- Stone from cobblestone +- Terracotta from clay + +This mod was made as a redeem for BluKat on Twitch. If you want to request a mod of your own, go check me out on twitch at [LemmaEOF](https://twitch.tv/LemmaEOF)! I stream Saturday, Sunday, and Monday evenings from 7 PM to 9 PM PST. \ No newline at end of file diff --git a/icon.png b/icon.png index 41de9f7..534f393 100644 Binary files a/icon.png and b/icon.png differ diff --git a/src/main/resources/data/kiln/recipes/kiln.json b/src/main/resources/data/kiln/recipes/kiln.json new file mode 100644 index 0000000..e8264f6 --- /dev/null +++ b/src/main/resources/data/kiln/recipes/kiln.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "#F#", + "###" + ], + "key": { + "#": { + "item": "minecraft:brick" + }, + "F": { + "item": "minecraft:furnace" + } + }, + "result": { + "item": "kiln:kiln", + "count": 1 + } +} \ No newline at end of file