Skip to content

Commit

Permalink
Add support for the Collectors Reap mod.
Browse files Browse the repository at this point in the history
This was requested in #367 and resolves their request.
  • Loading branch information
Darkhax committed Feb 22, 2024
1 parent 90b035d commit f33d720
Show file tree
Hide file tree
Showing 4 changed files with 175 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"collectorsreap:lime_seeds",
"collectorsreap:lime"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "collectorsreap:lime_seeds"
},
"categories": [
"dirt",
"farmland"
],
"growthTicks": 1200,
"display": [
{
"block": "collectorsreap:lime_bush",
"properties": {
"half": "lower",
"age": "2"
}
},
{
"block": "collectorsreap:lime_bush",
"properties": {
"half": "upper",
"age": "2"
}
}
],
"drops": [
{
"chance": 1.00,
"output": {
"item": "collectorsreap:lime"
},
"minRolls": 1,
"maxRolls": 3
},
{
"chance": 0.05,
"output": {
"item": "collectorsreap:lime_seeds"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"collectorsreap:pomegranate_seeds",
"collectorsreap:pomegranate"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "collectorsreap:pomegranate_seeds"
},
"categories": [
"dirt",
"farmland"
],
"growthTicks": 1200,
"display": [
{
"block": "collectorsreap:pomegranate_bush",
"properties": {
"half": "lower",
"age": "2"
}
},
{
"block": "collectorsreap:pomegranate_bush",
"properties": {
"half": "upper",
"age": "2"
}
}
],
"drops": [
{
"chance": 1.00,
"output": {
"item": "collectorsreap:pomegranate"
},
"minRolls": 1,
"maxRolls": 3
},
{
"chance": 0.05,
"output": {
"item": "collectorsreap:pomegranate_seeds"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"collectorsreap:portobello"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "collectorsreap:portobello"
},
"categories": [
"stone",
"mushroom",
"mulch"
],
"growthTicks": 1200,
"display": {
"block": "collectorsreap:portobello"
},
"drops": [
{
"chance": 1.00,
"output": {
"item": "collectorsreap:portobello"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"collectorsreap:portobello_colony"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "collectorsreap:portobello_colony"
},
"categories": [
"mushroom"
],
"growthTicks": 1400,
"display": {
"type": "botanypots:aging",
"block": "collectorsreap:portobello_colony"
},
"drops": [
{
"chance": 1.00,
"output": {
"item": "collectorsreap:portobello"
},
"minRolls": 1,
"maxRolls": 3
},
{
"chance": 0.05,
"output": {
"item": "collectorsreap:portobello"
},
"minRolls": 1,
"maxRolls": 2
}
]
}

0 comments on commit f33d720

Please sign in to comment.