
<!-- Option 1: Adding to modDesc xml (non-maps) -->

    <fillTypes filename="config/fillTypes.xml"/>

    <thPFConfig>
        <sprayTypes>
            <sprayType name="NH3" litersPerSecond="0.0081" type="FERTILIZER" sprayGroundType="FERTILIZER"/>
        </sprayTypes>

        <sprayTypeMapping>
            <sprayType name="NH3" group="FERTILIZER" isLiquid="true"/>
        </sprayTypeMapping>

        <nitrogenMap>
            <applicationRates>
                <applicationRate fillType="NH3" autoAdjustToFruit="true" regularRate="120">
                    <soil soilTypeIndex="1" rate="60"/>
                    <soil soilTypeIndex="2" rate="80"/>
                    <soil soilTypeIndex="3" rate="100"/>
                    <soil soilTypeIndex="4" rate="80"/>
                </applicationRate>
            </applicationRates>

            <fertilizerUsage>
                <nAmount fillType="NH3" amount="0.82"/>
            </fertilizerUsage>
        </nitrogenMap>
    </thPFConfig>

<!-- Option #2: Adding map xml (map specific configuration) -->

    <!-- path should be relative to the root directory of your map (where your modDesc.xml is) -->
    <thPFConfig path="maps/riverbend/config/precisionFarming">
        <sprayTypeMapping>
            <!--
                <sprayType> keys:
                * group: group the spray type belongs to
                    + vanilla spray types are automatically set
                    + allowed values:
                        * FERTILIZER
                        * MANURE
                        * DIGESTATE
                        * LIME
                        * HERBICIDE
                * isLiquid: treated as a liquid variant if true
                    + defaults to false if omitted
            -->
            <sprayType name="NH3" group="FERTILIZER" isLiquid="true"/>
            <sprayType name="LIQUIDLIME" group="LIME" isLiquid="true"/>
        </sprayTypeMapping>
    </thPFConfig>
