Initial commit

This commit is contained in:
Andrew 2022-07-30 02:16:27 +07:00
parent 75febf65ae
commit 10a7b4ce1b
30 changed files with 1215 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"predench:strange_writing_book"
]
},
"criteria": {
"has_vitriolic_feather": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": [
"predench:vitriolic_feather"
]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "predench:strange_writing_book"
}
}
},
"requirements": [
[
"has_vitriolic_feather",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"predench:vitriolic_feather"
]
},
"criteria": {
"has_copper": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"tag": "forge:ingots/copper"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "predench:vitriolic_feather"
}
}
},
"requirements": [
[
"has_copper",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "predench:vitriolic_feather"
},
{
"item": "minecraft:book"
},
{
"item": "minecraft:glow_ink_sac"
}
],
"result": {
"item": "predench:strange_writing_book"
}
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" C ",
"CFC",
" C "
],
"key": {
"C": {
"item": "minecraft:copper_block"
},
"F": {
"tag": "forge:feathers"
}
},
"result": {
"item": "predench:vitriolic_feather"
}
}