You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
65 lines
1.1 KiB
3 years ago
|
namespace ET
|
||
|
{
|
||
|
public enum MixtureType
|
||
|
{
|
||
|
None = 0,
|
||
|
Building = 1,
|
||
|
Material = 2,
|
||
|
Food = 3,
|
||
|
Medicine = 4
|
||
|
}
|
||
|
|
||
|
public enum ItemType
|
||
|
{
|
||
|
None,
|
||
|
Material,
|
||
|
FunctionItem,
|
||
|
Cuisine,
|
||
|
Medicine,
|
||
|
Equipment
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 仓库子类别
|
||
|
/// </summary>
|
||
|
public enum ItemSubType
|
||
|
{
|
||
|
None,
|
||
|
/// <summary>
|
||
|
/// 药品
|
||
|
/// </summary>
|
||
|
Medicine,
|
||
|
/// <summary>
|
||
|
/// 菜品
|
||
|
/// </summary>
|
||
|
Cuisine,
|
||
|
/// <summary>
|
||
|
/// 图纸
|
||
|
/// </summary>
|
||
|
Blueprint,
|
||
|
/// <summary>
|
||
|
/// 菜谱
|
||
|
/// </summary>
|
||
|
Menu,
|
||
|
/// <summary>
|
||
|
/// 树苗
|
||
|
/// </summary>
|
||
|
Sapling,
|
||
|
/// <summary>
|
||
|
/// 药方
|
||
|
/// </summary>
|
||
|
Prescription,
|
||
|
/// <summary>
|
||
|
/// 其他
|
||
|
/// </summary>
|
||
|
Other
|
||
|
}
|
||
|
|
||
|
public enum RoleType
|
||
|
{
|
||
|
None = 0,
|
||
|
Player = 1, // 主角
|
||
|
Partner = 2, // 伙伴
|
||
|
NormalPeople = 3, // 村民
|
||
|
}
|
||
|
}
|