本文整理汇总了C#中Dominion.Rules.TurnContext.AddLongLivedEffect方法的典型用法代码示例。如果您正苦于以下问题:C# TurnContext.AddLongLivedEffect方法的具体用法?C# TurnContext.AddLongLivedEffect怎么用?C# TurnContext.AddLongLivedEffect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dominion.Rules.TurnContext
的用法示例。
在下文中一共展示了TurnContext.AddLongLivedEffect方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Play
public void Play(TurnContext context)
{
context.RemainingActions += 2;
context.AvailableSpend += 1;
context.AddLongLivedEffect(new FishingVillageEffect(this));
}
示例2: Play
public void Play(TurnContext context)
{
context.RemainingActions += 1;
context.DrawCards(1);
context.AddLongLivedEffect(new CaravanEffect(this));
}
示例3: Play
public void Play(TurnContext context)
{
if(context.ActivePlayer.Hand.CardCount > 0)
{
context.DiscardCards(context.ActivePlayer, context.ActivePlayer.Hand);
context.AddLongLivedEffect(new TacticianEffect(this));
}
else
{
context.Game.Log.LogMessage("{0} did not have any cards to discard to the Tactician.", context.ActivePlayer.Name);
}
}
示例4: Play
public void Play(TurnContext context)
{
context.AvailableSpend += 2;
context.AddLongLivedEffect(new MerchantShipEffect(this));
}
示例5: Play
public void Play(TurnContext context)
{
context.DrawCards(2);
context.Buys += 1;
context.AddLongLivedEffect(new WharfEffect(this));
}