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.

33 lines
747 B

namespace CMSGame
{
public static class BattleGoals
{
public static readonly Goal<BattleContext> Escape = new()
{
Name = "保命要紧",
BasePriority = -50
};
public static readonly Goal<BattleContext> SelfRegulatory = new()
{
Name = "自律行动",
BasePriority = 0
};
public static readonly Goal<BattleContext> FollowOrder = new()
{
Name = "服从指令",
BasePriority = 50
};
public static List<Goal<BattleContext>> AllGoals()
{
return new() {
Escape,
SelfRegulatory,
FollowOrder
};
}
}
}