generated from CottonMC/FabricStarter
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recipe for kiln, new icon, update readme
- Loading branch information
Showing
3 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,32 @@ | ||
<img src="icon.png" align="right" width="180px"/> | ||
|
||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"###", | ||
"#F#", | ||
"###" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:brick" | ||
}, | ||
"F": { | ||
"item": "minecraft:furnace" | ||
} | ||
}, | ||
"result": { | ||
"item": "kiln:kiln", | ||
"count": 1 | ||
} | ||
} |