Skip to content

Commit

Permalink
Add support for Vampirism soils.
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkhax committed Feb 22, 2024
1 parent 71fb889 commit 36e4eb7
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"vampirism:cursed_earth",
"vampirism:cursed_earth_path"
]
}
],
"type": "botanypots:pot_interaction",
"held_ingredient": {
"tag": "minecraft:shovels"
},
"soil_ingredient": [
{
"item": "vampirism:cursed_earth"
}
],
"soil_output": {
"item": "vampirism:cursed_earth_path",
"count": 1
},
"sound": {
"sound": "minecraft:item.shovel.flatten",
"category": "blocks"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"vampirism:cursed_earth"
]
}
],
"type": "botanypots:soil",
"input": {
"item": "vampirism:cursed_earth"
},
"display": {
"block": "vampirism:cursed_earth"
},
"categories": [
"dirt"
],
"growthModifier": 1
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"vampirism:cursed_earth_path"
]
}
],
"type": "botanypots:soil",
"input": {
"item": "vampirism:cursed_earth_path"
},
"display": {
"block": "vampirism:cursed_earth_path"
},
"categories": [
"dirt"
],
"growthModifier": 0.5
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"vampirism:cursed_grass"
]
}
],
"type": "botanypots:soil",
"input": {
"item": "vampirism:cursed_grass"
},
"display": {
"block": "vampirism:cursed_grass"
},
"categories": [
"dirt",
"grass"
],
"growthModifier": 1
}

0 comments on commit 36e4eb7

Please sign in to comment.