36 lines
865 B
C#
36 lines
865 B
C#
using System;
|
|
|
|
namespace Server.Engines.Craft
|
|
{
|
|
public class CraftSubRes
|
|
{
|
|
public CraftSubRes(Type type, TextDefinition name, double reqSkill, TextDefinition message) : this(
|
|
type,
|
|
name,
|
|
reqSkill,
|
|
0,
|
|
message
|
|
)
|
|
{
|
|
}
|
|
|
|
public CraftSubRes(Type type, TextDefinition name, double reqSkill, int genericNameNumber, TextDefinition message)
|
|
{
|
|
ItemType = type;
|
|
Name = name;
|
|
RequiredSkill = reqSkill;
|
|
GenericNameNumber = genericNameNumber;
|
|
Message = message;
|
|
}
|
|
|
|
public Type ItemType { get; }
|
|
|
|
public TextDefinition Name { get; }
|
|
|
|
public int GenericNameNumber { get; }
|
|
|
|
public TextDefinition Message { get; }
|
|
|
|
public double RequiredSkill { get; }
|
|
}
|
|
}
|