Antimony seed can't be placed in Hopper Botany Pot
Bernhard---H opened this issue ยท 2 comments
Hi,
for some reason, I can't place a mystical agriculture antimony seed in a hopper botany pot.
The seed does grow outside a hopper botany pot on supremium farmland without problems.
At first, I thought that the pots might not support modern industrialization items, but a lead seed works like all the other "normal" minecraft items.
Version of Modpack: 1.7.1
BotanyPots itself adds recipes for default MA crops. I would imagine the antimony one is missing or incorrect.
I found a workaround, you could add to your modpack:
If I add the following 2 config files on the server into the (new) directory /kubejs/data/botanypots/recipes/mysticalagriculture/
, everything seems to work as expected.
**Update: ** added Chromium config
antimony.json
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"mysticalagriculture:antimony_seeds",
"mysticalagriculture:antimony_essence"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "mysticalagriculture:antimony_seeds"
},
"categories": [
"tertium"
],
"growthTicks": 2400,
"display": {
"type": "botanypots:aging",
"block": "mysticalagriculture:antimony_crop"
},
"drops": [
{
"chance": 1.00,
"output": {
"item": "mysticalagriculture:antimony_essence"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:antimony_seeds"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:fertilized_essence"
},
"minRolls": 1,
"maxRolls": 1
}
]
}
chromium.json
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"mysticalagriculture:chromium_seeds",
"mysticalagriculture:chromium_essence"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "mysticalagriculture:chromium_seeds"
},
"categories": [
"imperium"
],
"growthTicks": 2400,
"display": {
"type": "botanypots:aging",
"block": "mysticalagriculture:chromium_crop"
},
"drops": [
{
"chance": 1.00,
"output": {
"item": "mysticalagriculture:chromium_essence"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:chromium_seeds"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:fertilized_essence"
},
"minRolls": 1,
"maxRolls": 1
}
]
}
nikolite.json
{
"bookshelf:load_conditions": [
{
"type": "bookshelf:item_exists",
"values": [
"mysticalagriculture:nikolite_seeds",
"mysticalagriculture:nikolite_essence"
]
}
],
"type": "botanypots:crop",
"seed": {
"item": "mysticalagriculture:nikolite_seeds"
},
"categories": [
"tertium"
],
"growthTicks": 2400,
"display": {
"type": "botanypots:aging",
"block": "mysticalagriculture:nikolite_crop"
},
"drops": [
{
"chance": 1.00,
"output": {
"item": "mysticalagriculture:nikolite_essence"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:nikolite_seeds"
}
},
{
"chance": 0.01,
"output": {
"item": "mysticalagriculture:fertilized_essence"
},
"minRolls": 1,
"maxRolls": 1
}
]
}