Croparia - Resource Cultivation in Minecraft
The Croparia mod opens up completely new agricultural possibilities for players, allowing them to grow various resources directly on farmland. Instead of traditional vegetables and fruits, you'll be able to cultivate valuable materials and items.
At your disposal are 95 unique agricultural crops, each producing specific resources. Additionally, the mod includes specialized production blocks and magical artifacts that expand farming functionality.
For convenient navigation and learning the mechanics, it's recommended to use JEI or REI mods, which will show all available crafting recipes. A guide book is also available through integration with Patchouli.
Starting from version 4.5, you can create your own crops through the JSON file system. For this, you need to create a file in the .minecraft/crops/ directory with the following structure:
{
"name":"example",
"tier":1,
"tag":"c:raw_gold_ores",
"color":"0x4FD333"
}
After adding the main configuration, you'll need to create corresponding resource packs with models and textures for the new crop.
File blockstates/blockcrop[CROP_NAME].json:
{
"variants": {
"age=0": {
"model": "croparia:block/crop_stage0"
},
"age=1": {
"model": "croparia:block/crop_stage1"
},
"age=2": {
"model": "croparia:block/crop_stage2"
},
"age=3": {
"model": "croparia:block/crop_stage3"
},
"age=4": {
"model": "croparia:block/crop_stage4"
},
"age=5": {
"model": "croparia:block/crop_stage5" // can be replaced with: animal_stage5 / monster_stage5 / food_stage5 / nature_stage5
},
"age=6": {
"model": "croparia:block/crop_stage6" // can be replaced with: animal_stage6 / monster_stage6 / food_stage6 / nature_stage6
},
"age=7": {
"model": "croparia:block/crop_stage7" // can be replaced with: animal_stage7 / monster_stage7 / food_stage7 / nature_stage7
}
}
}
File models/item/seedcrop[CROP_NAME].json:
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "croparia:item/seedcrop"
}
}
File models/item/fruit[CROP_NAME].json:
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "croparia:item/fruit_crop",
"layer1": "croparia:item/fruit_crop_overlay"
}
}
Localization file en_us.json:
"block.croparia.blockcrop[CROP_NAME]": "[CROPNAME] Seeds",
"item.croparia.fruit[CROP_NAME]": "[CROP_NAME] Fruit"
To expand the functionality of the main mod, additional addons are available: Stemaria, Soularia and Croparia+, which add new mechanics and content.