/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.arboriculture; import java.util.EnumSet; import net.minecraftforge.common.EnumPlantType; import forestry.api.genetics.IGenome; public interface ITreeGenome extends IGenome { IAlleleTreeSpecies getPrimary(); IAlleleTreeSpecies getSecondary(); IFruitProvider getFruitProvider(); IGrowthProvider getGrowthProvider(); float getHeight(); float getFertility(); /** * @return Determines either a) how many fruit leaves there are or b) the chance for any fruit leave to drop a sapling. Exact usage determined by the * IFruitProvider */ float getYield(); float getSappiness(); EnumSet<EnumPlantType> getPlantTypes(); /** * @return Amount of random block ticks required for a sapling to mature into a fully grown tree. */ int getMaturationTime(); int getGirth(); IAlleleLeafEffect getEffect(); }