From e9505c8383bccb123a2c1ca81b2f1683c6d0f0cd Mon Sep 17 00:00:00 2001 From: Zsolt Molnar Date: Sun, 28 May 2023 14:30:52 +0200 Subject: [PATCH] Add smithing table upgrade recipes to upgrade to netherite weapons --- CHANGELOG.md | 4 ++++ .../recipes/netherite_claymore_smithing.json | 12 ++++++++++++ .../recipes/netherite_great_hammer_smithing.json | 12 ++++++++++++ .../recipes/netherite_holy_staff_smithing.json | 12 ++++++++++++ .../recipes/netherite_holy_wand_smithing.json | 12 ++++++++++++ .../paladins/recipes/netherite_mace_smithing.json | 12 ++++++++++++ gradle.properties | 2 +- 7 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 common/src/main/resources/data/paladins/recipes/netherite_claymore_smithing.json create mode 100644 common/src/main/resources/data/paladins/recipes/netherite_great_hammer_smithing.json create mode 100644 common/src/main/resources/data/paladins/recipes/netherite_holy_staff_smithing.json create mode 100644 common/src/main/resources/data/paladins/recipes/netherite_holy_wand_smithing.json create mode 100644 common/src/main/resources/data/paladins/recipes/netherite_mace_smithing.json diff --git a/CHANGELOG.md b/CHANGELOG.md index e79a965..94c02b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.9.5 + +- Add smithing table upgrade recipes to upgrade to netherite weapons + # 0.9.4 - Add Paladin and Priest spell books diff --git a/common/src/main/resources/data/paladins/recipes/netherite_claymore_smithing.json b/common/src/main/resources/data/paladins/recipes/netherite_claymore_smithing.json new file mode 100644 index 0000000..d9be511 --- /dev/null +++ b/common/src/main/resources/data/paladins/recipes/netherite_claymore_smithing.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smithing", + "addition": { + "item": "minecraft:netherite_ingot" + }, + "base": { + "item": "paladins:diamond_claymore" + }, + "result": { + "item": "paladins:netherite_claymore" + } +} diff --git a/common/src/main/resources/data/paladins/recipes/netherite_great_hammer_smithing.json b/common/src/main/resources/data/paladins/recipes/netherite_great_hammer_smithing.json new file mode 100644 index 0000000..9ce613b --- /dev/null +++ b/common/src/main/resources/data/paladins/recipes/netherite_great_hammer_smithing.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smithing", + "addition": { + "item": "minecraft:netherite_ingot" + }, + "base": { + "item": "paladins:diamond_great_hammer" + }, + "result": { + "item": "paladins:netherite_great_hammer" + } +} diff --git a/common/src/main/resources/data/paladins/recipes/netherite_holy_staff_smithing.json b/common/src/main/resources/data/paladins/recipes/netherite_holy_staff_smithing.json new file mode 100644 index 0000000..88959c8 --- /dev/null +++ b/common/src/main/resources/data/paladins/recipes/netherite_holy_staff_smithing.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smithing", + "addition": { + "item": "minecraft:netherite_ingot" + }, + "base": { + "item": "paladins:holy_staff" + }, + "result": { + "item": "paladins:netherite_holy_staff" + } +} diff --git a/common/src/main/resources/data/paladins/recipes/netherite_holy_wand_smithing.json b/common/src/main/resources/data/paladins/recipes/netherite_holy_wand_smithing.json new file mode 100644 index 0000000..9f66572 --- /dev/null +++ b/common/src/main/resources/data/paladins/recipes/netherite_holy_wand_smithing.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smithing", + "addition": { + "item": "minecraft:netherite_ingot" + }, + "base": { + "item": "paladins:holy_wand" + }, + "result": { + "item": "paladins:netherite_holy_wand" + } +} diff --git a/common/src/main/resources/data/paladins/recipes/netherite_mace_smithing.json b/common/src/main/resources/data/paladins/recipes/netherite_mace_smithing.json new file mode 100644 index 0000000..d348f8f --- /dev/null +++ b/common/src/main/resources/data/paladins/recipes/netherite_mace_smithing.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smithing", + "addition": { + "item": "minecraft:netherite_ingot" + }, + "base": { + "item": "paladins:diamond_mace" + }, + "result": { + "item": "paladins:netherite_mace" + } +} diff --git a/gradle.properties b/gradle.properties index 5d348e8..157f721 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ forge_version=1.19.2-43.1.25 # Mod maven_group=net archives_base_name=paladins -mod_version=0.9.4 +mod_version=0.9.5 # Dependencies gecko_mc_prefix=1.19: