A collection of trees and dynamic plants. In combination with ChangingBlocks
they grow over time or change in other ways.
The plants are divided into 2 types:
- Crops
- Trees
Crops are able to grow (change texture) over time and they can have several stages of growth. Crops are similar to a normal block. Trees, however, do not have the capability to slowly grow over time that crops have. They are usually a structure, composed of many blocks.
For examples of existing crops, check out assets/blocks/crop
& assets/prefabs/crop
To start making a new crop you need to decide how many stages of growth you want to have, then create a prefab file to indicate those stages.
Here is an example of a crop with 7 stages:
{
"ChangingBlocks": {
"blockFamilyStages": [
{ "key": "PlantPack:Corn1", "value": 30000 },
{ "key": "PlantPack:Corn2", "value": 30000 },
{ "key": "PlantPack:Corn3", "value": 30000 },
{ "key": "PlantPack:Corn4", "value": 30000 },
{ "key": "PlantPack:Corn5", "value": 30000 },
{ "key": "PlantPack:Corn6", "value": 30000 },
{ "key": "PlantPack:Corn7", "value": 30000 }
],
"loops": false
}
}
Each line in blockFamilyStages
indicates a growth stage for the crop, and the number next to it represents the growth time it requires. The loops
property indicates whether or not the plant should loop the growth stages after the initial growth finishes.
After you finish making the stages, you MUST remember the name of those stages so that you can create the .block file for each stage.
After you finished the prefab file, you need to create a .block file for each growth stage. All .block files are located in assets/blocks/crop
.
Here is an example of a .block file for a crop:
{
"author": "metouto",
"basedOn": "CoreAssets:plant",
"entity": {
"prefab": "PlantPack:Corn",
"keepActive": true
}
}
Make sure you type-in the prefab in the .block file in accordance to the name of the prefab that you made.
After creating the prefab and block files, you also need to create the texture for each of the crop growth stages. All texture files (.png) for crops are located at assets/blockTiles/crop/
. Make sure you name these texture files in accordance to the growth stages that you want to assign them to.
PlantPack assets can bring a good addition to world generation modules, you can utilize the plants that this module have to spice up the world that your module generates.
A good example would be, AnotherWorld module that works together with AnotherWorldPlant that utilizes PlantPack assets.