Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

73 lines
1.9 KiB
C#

using Server;
using System;
using Server.Items;
namespace Server.Engines.Distillation
{
public class CraftDefinition
{
private Group m_Group;
private Liquor m_Liquor;
private Type[] m_Ingredients;
private int[] m_Amounts;
private int[] m_Labels;
private TimeSpan m_MaturationDuration;
public Group Group { get { return m_Group; } }
public Liquor Liquor { get { return m_Liquor; } }
public Type[] Ingredients { get { return m_Ingredients; } }
public int[] Amounts { get { return m_Amounts; } }
public int[] Labels { get { return m_Labels; } }
public TimeSpan MaturationDuration { get { return m_MaturationDuration; } }
public CraftDefinition(Group group, Liquor liquor, Type[] ingredients, int[] amounts, TimeSpan matureperiod)
{
m_Group = group;
m_Liquor = liquor;
m_Ingredients = ingredients;
m_Amounts = amounts;
m_MaturationDuration = matureperiod;
m_Labels = new int[m_Ingredients.Length];
for(int i = 0; i < m_Ingredients.Length; i++)
{
Type type = m_Ingredients[i];
if(type == typeof(Yeast))
m_Labels[i] = 1150453;
else if (type == typeof(WheatWort))
m_Labels[i] = 1150275;
else if (type == typeof(PewterBowlOfCorn))
m_Labels[i] = 1025631;
else if (type == typeof(PewterBowlOfPotatos))
m_Labels[i] = 1025634;
else if (type == typeof(TribalBerry))
m_Labels[i] = 1040001;
else if (type == typeof(HoneydewMelon))
m_Labels[i] = 1023189;
else if (type == typeof(JarHoney))
m_Labels[i] = 1022540;
else if (type == typeof(Pitcher))
{
if(m_Liquor == Liquor.Brandy)
m_Labels[i] = 1028091; // pitcher of wine
else
m_Labels[i] = 1024088; // pitcher of water
}
else if (type == typeof(Dates))
m_Labels[i] = 1025927;
else
{
Item item = Loot.Construct(type);
if(item != null)
{
m_Labels[i] = item.LabelNumber;
item.Delete();
}
}
}
}
}
}