-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the stone tiers of the sickles, longsword, and broadsword, as w…
…ell as model and texture files and recipes Revamped version system in build.gradle, made it more efficient for getting the mod version
- Loading branch information
Showing
13 changed files
with
90 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
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
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
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,5 +1,8 @@ | ||
{ | ||
"item.swordselection.iron_sickles": "Iron Sickles", | ||
"item.swordselection.iron_broadsword": "Iron Broadsword", | ||
"item.swordselection.iron_longsword": "Iron Longsword" | ||
"item.swordselection.iron_longsword": "Iron Longsword", | ||
"item.swordselection.stone_sickles": "Stone Sickles", | ||
"item.swordselection.stone_broadsword": "Stone Broadsword", | ||
"item.swordselection.stone_longsword": "Stone Longsword" | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/swordselection/models/item/stone_broadsword.json
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,6 @@ | ||
{ | ||
"parent": "item/handheld", | ||
"textures": { | ||
"layer0": "swordselection:item/stone_broadsword" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/swordselection/models/item/stone_longsword.json
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,6 @@ | ||
{ | ||
"parent": "item/handheld", | ||
"textures": { | ||
"layer0": "swordselection:item/stone_longsword" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/swordselection/models/item/stone_sickles.json
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,6 @@ | ||
{ | ||
"parent": "item/handheld", | ||
"textures":{ | ||
"layer0": "swordselection:item/stone_sickles" | ||
} | ||
} |
Binary file added
BIN
+279 Bytes
src/main/resources/assets/swordselection/textures/item/stone_broadsword.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+440 Bytes
src/main/resources/assets/swordselection/textures/item/stone_longsword.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+327 Bytes
src/main/resources/assets/swordselection/textures/item/stone_sickles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
src/main/resources/data/swordselection/recipes/stone_broadsword.json
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,8 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": { | ||
"item": "minecraft:stone_sword" | ||
}, | ||
"result": "swordselection:stone_broadsword", | ||
"count": 1 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data/swordselection/recipes/stone_longsword.json
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,8 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": { | ||
"item": "minecraft:stone_sword" | ||
}, | ||
"result": "swordselection:stone_longsword", | ||
"count": 1 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data/swordselection/recipes/stone_sickles.json
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,8 @@ | ||
{ | ||
"type": "minecraft:stonecutting", | ||
"ingredient": { | ||
"item": "minecraft:stone_sword" | ||
}, | ||
"result": "swordselection:stone_sickles", | ||
"count": 1 | ||
} |