Adds Goggle Helmets and Armored Backtanks for Create Mod
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
Download the latest JAR file from GitHub releases or from CurseForge and drop it into your mods
folder.
(You need to install CreateGoggles to use the features of course)
You can use tags for your helmets to display the goggleinformation (in your resources folder, create the file goggle.json
at resources/data/creategoggles/tags/items
)
Here is an example:
{
"replace": false,
"values": [
"yourmodid:your_helmet_id"
]
}
If you have a normal modded helmet e.g. copper and want to have a goggle helmet of it too
File: your_helmet_id.json (at resources/data/yourmodid/recipes
):
{
"type":"creategoggles:crafting_nbt",
"pattern":
[
"HG"
],
"key":
{
"H": {"item": "yourmodid:your_plain_helmet_id"},
"G": {"item": "create:goggles"}
},
"result":{"item":"yourmodid:your_goggle_helmet_id"}
}