147 lines
4.4 KiB
C#
147 lines
4.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace NBF
|
|
{
|
|
public class InteractiveData
|
|
{
|
|
public UIDef.InteractiveType Type;
|
|
public string Icon = "op-door";
|
|
public string Name;
|
|
public string Use1;
|
|
public string Use2;
|
|
public string Use1Title = "进入";
|
|
public string Use2Title;
|
|
}
|
|
|
|
public class GameDef
|
|
{
|
|
public const int NormalFOV = 50;
|
|
public const int ZoomedFOV = 25;
|
|
|
|
public static List<InteractiveData> InteractiveDataList = new List<InteractiveData>()
|
|
{
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Boat,
|
|
Name = "船",
|
|
Icon = "op-boat",
|
|
Use1 = "1,1",
|
|
Use1Title = "上船"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Bank,
|
|
Name = "银行",
|
|
Icon = "op-bank",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Canteen,
|
|
Name = "餐厅",
|
|
Icon = "op-door",
|
|
Use1 = "1,1",
|
|
Use1Title = "热饭"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Oven,
|
|
Name = "烤箱",
|
|
Icon = "op-oven",
|
|
Use1 = "1,1",
|
|
Use1Title = "使用"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Tent,
|
|
Name = "帐篷",
|
|
Icon = "op-tent",
|
|
Use1 = "1,1",
|
|
Use1Title = "打开"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Drying,
|
|
Name = "晾干器",
|
|
Icon = "op-use",
|
|
Use1 = "1,1",
|
|
Use1Title = "使用"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Bonfire,
|
|
Name = "篝火",
|
|
Icon = "op-fire",
|
|
Use1 = "1,1",
|
|
Use1Title = "使用"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Fumigate,
|
|
Name = "烟熏箱",
|
|
Icon = "op-use",
|
|
Use1 = "1,1",
|
|
Use1Title = "使用"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.FoodShop,
|
|
Name = "食品商店",
|
|
Icon = "op-door",
|
|
Use1 = "1,1",
|
|
Use2 = "1,1",
|
|
Use1Title = "进入",
|
|
Use2Title = "退货"
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.FishingShop,
|
|
Name = "钓鱼商店",
|
|
Icon = "op-door",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.ToolsShop,
|
|
Name = "工业品店",
|
|
Icon = "op-door",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.VendingMachine,
|
|
Name = "自动贩卖机",
|
|
Icon = "op-vending",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.Wharf,
|
|
Name = "码头",
|
|
Icon = "op-wharf",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.FishBazaar,
|
|
Name = "鱼市",
|
|
Icon = "op-use",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
new InteractiveData()
|
|
{
|
|
Type = UIDef.InteractiveType.ReserveBazaar,
|
|
Name = "订购市场",
|
|
Icon = "op-use",
|
|
Use1 = "1,1",
|
|
Use1Title = "进入",
|
|
},
|
|
};
|
|
}
|
|
} |