forked from BloodyMods/ExNihiloCreatio
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
340 additions
and
11 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
4 changes: 0 additions & 4 deletions
4
src/main/resources/assets/exnihilofabrico/models/block/unfired_stone_crucible.json
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
src/main/resources/assets/exnihilofabrico/models/item/crucible_stone_unfired.json
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/main/resources/assets/exnihilofabrico/models/item/porcelain.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,4 @@ | ||
{ | ||
"parent": "item/generated", | ||
"textures": {"layer0": "exnihilofabrico:item/porcelain"} | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/resources/assets/exnihilofabrico/models/item/unfired_crucible.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,4 @@ | ||
{ | ||
"parent": "exnihilofabrico:block/crucible", | ||
"textures": {"all": "exnihilofabrico:block/unfired_crucible"} | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"exnihilofabrico:porcelain" | ||
] | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_andesite.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "exnihilofabrico:pebble_andesite" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_andesite" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_blaze.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:blaze_rod" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_blaze" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_bone.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:bone" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_bone" | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/resources/data/exnihilofabrico/recipes/crook_clay.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,9 @@ | ||
{ | ||
"type": "minecraft:smelting", | ||
"ingredient": { | ||
"item": "exnihilofabrico:crook_clay_uncooked" | ||
}, | ||
"result": "exnihilofabrico:crook_clay", | ||
"experience": 0.15, | ||
"cookingtime": 200 | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_clay_uncooked.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:clay_ball" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_clay_uncooked" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_diorite.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "exnihilofabrico:pebble_diorite" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_diorite" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_granite.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "exnihilofabrico:pebble_granite" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_granite" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_prismarine.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:prismarine_shard" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_prismarine" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_purpur.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:popped_chorus_fruit" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_purpur" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_stone.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "exnihilofabrico:pebble_stone" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_stone" | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/exnihilofabrico/recipes/crook_wood.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:crook", | ||
"pattern": [ | ||
"##", | ||
" #", | ||
" #" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "minecraft:stick" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:crook_wood" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/exnihilofabrico/recipes/hammer_diamond.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:hammer", | ||
"pattern": [ | ||
" # ", | ||
" /#", | ||
"/ " | ||
], | ||
"key": { | ||
"/": { | ||
"item": "minecraft:stick" | ||
}, | ||
"#": { | ||
"item": "minecraft:diamond" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:hammer_diamond" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/exnihilofabrico/recipes/hammer_gold.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:hammer", | ||
"pattern": [ | ||
" # ", | ||
" /#", | ||
"/ " | ||
], | ||
"key": { | ||
"/": { | ||
"item": "minecraft:stick" | ||
}, | ||
"#": { | ||
"item": "minecraft:gold_ingot" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:hammer_gold" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/exnihilofabrico/recipes/hammer_iron.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:hammer", | ||
"pattern": [ | ||
" # ", | ||
" /#", | ||
"/ " | ||
], | ||
"key": { | ||
"/": { | ||
"item": "minecraft:stick" | ||
}, | ||
"#": { | ||
"item": "minecraft:iron_ingot" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:hammer_iron" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/exnihilofabrico/recipes/hammer_stone.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:hammer", | ||
"pattern": [ | ||
" # ", | ||
" /#", | ||
"/ " | ||
], | ||
"key": { | ||
"/": { | ||
"item": "minecraft:stick" | ||
}, | ||
"#": { | ||
"item": "minecraft:cobblestone" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:hammer_stone" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/exnihilofabrico/recipes/hammer_wood.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "exnihilofabrico:hammer", | ||
"pattern": [ | ||
" # ", | ||
" /#", | ||
"/ " | ||
], | ||
"key": { | ||
"/": { | ||
"item": "minecraft:stick" | ||
}, | ||
"#": { | ||
"tag": "minecraft:planks" | ||
} | ||
}, | ||
"result": { | ||
"item": "exnihilofabrico:hammer_wood" | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data/exnihilofabrico/recipes/porcelain.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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:clay_ball" | ||
}, | ||
{ | ||
"item": "minecraft:bone_meal" | ||
} | ||
], | ||
"result": { | ||
"item": "exnihilofabrico:porcelain", | ||
"count": 2 | ||
} | ||
} |
Oops, something went wrong.