Skip to content

Commit

Permalink
Add crafting recipes and names
Browse files Browse the repository at this point in the history
  • Loading branch information
MandL27 committed Oct 22, 2022
1 parent 6de815f commit 71a024e
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 11 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Fabric Example Mod
# Oxidized Armor

## Setup
Extends the Oxidized mod with rose gold armor.

For setup instructions please see the [fabric wiki page](https://fabricmc.net/wiki/tutorial:setup) that relates to the IDE that you are using.

## License

This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects.
**This mod depends on Oxidized and will not function without it.**
6 changes: 6 additions & 0 deletions src/main/resources/assets/oxidized-armor/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"item.oxidized-armor.rose_gold_helmet": "Rose Gold Helmet",
"item.oxidized-armor.rose_gold_chestplate": "Rose Gold Chestplate",
"item.oxidized-armor.rose_gold_leggings": "Rose Gold Leggings",
"item.oxidized-armor.rose_gold_boots": "Rose Gold Boots"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:golden_boots"
},
"addition": {
"item": "minecraft:copper_ingot"
},
"result": {
"item": "oxidized-armor:rose_gold_boots"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:golden_chestplate"
},
"addition": {
"item": "minecraft:copper_ingot"
},
"result": {
"item": "oxidized-armor:rose_gold_chestplate"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:golden_helmet"
},
"addition": {
"item": "minecraft:copper_ingot"
},
"result": {
"item": "oxidized-armor:rose_gold_helmet"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:smithing",
"base": {
"item": "minecraft:golden_leggings"
},
"addition": {
"item": "minecraft:copper_ingot"
},
"result": {
"item": "oxidized-armor:rose_gold_leggings"
}
}
5 changes: 1 addition & 4 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
"net.mandl.oxidizedarmor.OxidizedArmorMod"
]
},
"mixins": [
"oxidized-armor.mixins.json"
],

"depends": {
"fabricloader": ">=0.14.6",
Expand All @@ -33,6 +30,6 @@
"oxidized": "1.6.4"
},
"suggests": {
"another-mod": "*"
"piglib": "*"
}
}

0 comments on commit 71a024e

Please sign in to comment.