using System.Collections.Generic;
namespace ColdMint.scripts.camp;
///
/// camp
/// 阵营
///
public class Camp
{
private string _id;
private List _friendlyCampIdList;
public Camp(string id)
{
_id = id;
_friendlyCampIdList = new List();
}
///
/// Get camp ID
/// 获取阵营ID
///
public string ID => _id;
///
/// Get camp name
/// 获取阵营名
///
public string Name { get; }
///
/// Friend Injury
/// 友伤
///
///
///Whether to damage targets on the same side
///是否可伤害同一阵营的目标
///
public bool FriendInjury { get; set; }
///
/// Gets the camp ID that is friendly to this camp
/// 获取与此阵营友好的阵营ID
///
public string[] FriendlyCampIdArray => _friendlyCampIdList.ToArray();
}