I have been farming for vanilla seeds for a long time now and decided to see why I'm not getting them:
https://uo.com/wiki/ultima-online-wiki/gameplay/crafting/plant-growing/fragrant-and-peculiar-seeds/
Group 2 – Juka Mage, Kappa, Plague Beast
Vanilla Plant ***
It is missing in PlantType.cs
Also while they aren't categorized correctly in the script (RandomPeculiarGroupFour is actually group two...etc), they do drop on the correct mobiles.
https://uo.com/wiki/ultima-online-wiki/gameplay/crafting/plant-growing/fragrant-and-peculiar-seeds/
Group 2 – Juka Mage, Kappa, Plague Beast
Vanilla Plant ***
It is missing in PlantType.cs
Code:
public static PlantType RandomPeculiarGroupFour()
{
switch ( Utility.Random( 5 ) )
{
case 0: return PlantType.CypressStraight;
case 1: return PlantType.HedgeTall;
case 2: return PlantType.HopsSouth;
case 3: return PlantType.CocoaTree;
default: return PlantType.SugarCanes;
}
}
Also while they aren't categorized correctly in the script (RandomPeculiarGroupFour is actually group two...etc), they do drop on the correct mobiles.