ribs498 / VintageDelight-master

0 stars 3 forks source link

Botany Pots compatibility #9

Open pskfyi opened 3 months ago

pskfyi commented 3 months ago

This is datapack driven. I am happy to open a PR if you would accept one.

pskfyi commented 3 months ago

Just whipped them up and tested them. It would probably be easier for me to paste them here rather than PR since it's so little code.

Cucumber (recipe based on FD's Tomato) ```json { "conditions": [{ "type": "forge:mod_loaded", "modid": "botanypots" }], "type": "botanypots:crop", "seed": { "item": "vintagedelight:cucumber_seeds" }, "categories": ["dirt"], "growthTicks": 1200, "display": { "type": "botanypots:aging", "block": "vintagedelight:cucumber_crop" }, "drops": [ { "chance": 1.00, "output": { "item": "vintagedelight:cucumber" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.05, "output": { "item": "vintagedelight:cucumber" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.05, "output": { "item": "vintagedelight:cucumber_seeds" }, "minRolls": 1, "maxRolls": 2 } ] } ```
Ghost Pepper (recipe based on FD's Tomato) ```json { "conditions": [{ "type": "forge:mod_loaded", "modid": "botanypots" }], "type": "botanypots:crop", "seed": { "item": "vintagedelight:ghost_pepper_seeds" }, "categories": ["dirt"], "growthTicks": 1200, "display": { "type": "botanypots:aging", "block": "vintagedelight:ghost_pepper_crop" }, "drops": [ { "chance": 1.00, "output": { "item": "vintagedelight:ghost_pepper" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.05, "output": { "item": "vintagedelight:ghost_pepper" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.05, "output": { "item": "vintagedelight:ghost_pepper_seeds" }, "minRolls": 1, "maxRolls": 2 } ] } ```
Oat (recipe based on vanilla Wheat) ```json { "conditions": [{ "type": "forge:mod_loaded", "modid": "botanypots" }], "type": "botanypots:crop", "seed": { "item": "vintagedelight:oat_seeds" }, "categories": ["dirt", "farmland"], "growthTicks": 1200, "display": { "type": "botanypots:aging", "block": "vintagedelight:oat_crop" }, "drops": [ { "chance": 1.00, "output": { "item": "vintagedelight:oat" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.05, "output": { "item": "vintagedelight:oat_seeds" }, "minRolls": 1, "maxRolls": 2 } ] } ```
Peanut (recipe based on vanilla Potato) ```json { "conditions": [{ "type": "forge:mod_loaded", "modid": "botanypots" }], "type": "botanypots:crop", "seed": { "item": "vintagedelight:peanut" }, "categories": ["dirt"], "growthTicks": 1200, "display": { "type": "botanypots:aging", "block": "vintagedelight:peanut_crop" }, "drops": [ { "chance": 1.00, "output": { "item": "vintagedelight:peanut" }, "minRolls": 1, "maxRolls": 2 }, { "chance": 0.15, "output": { "item": "vintagedelight:peanut" }, "minRolls": 1, "maxRolls": 2 } ] } ```
Gearo Berry (recipe based on vanilla Sweet Berry) ```json { "conditions": [{ "type": "forge:mod_loaded", "modid": "botanypots" }], "type": "botanypots:crop", "seed": { "item": "vintagedelight:gearo_berry" }, "categories": ["dirt"], "growthTicks": 1200, "lightLevel": 14, "display": { "type": "botanypots:transitional", "phases": [ { "block": "vintagedelight:gearo_berry_bush", "properties": { "age": 0 } }, { "block": "vintagedelight:gearo_berry_bush", "properties": { "age": 1 } }, { "block": "vintagedelight:gearo_berry_bush", "properties": { "age": 2 } }, { "block": "vintagedelight:gearo_berry_bush", "properties": { "age": 3 } }, { "block": "vintagedelight:gearo_berry_bush", "properties": { "age": 4 } } ] }, "drops": [ { "chance": 1.00, "output": { "item": "vintagedelight:gearo_berry" } }, { "chance": 0.05, "output": { "item": "vintagedelight:gearo_berry" } } ] } ```