zoukankan      html  css  js  c++  java
  • HearthBuddy 突袭 rush

    https://hearthstone.gamepedia.com/Rush

    Rush is an ability allowing a minion to attack other minions the same turn it is summoned or brought under a new player's control. Unlike Charge, Rush cannot be used to attack the enemy hero. Rush is represented by a shifting thick green border around the minion.

    Rush was first introduced in The Witchwood and has appeared in every set since. It has functionally replaced Charge as an evergreen keyword.

    • Charge will not be overridden by Rush, and Rush has no effect if the minion isn't exhausted. If Rush is given to a minion with Charge or a minion ready to attack, it can still attack the enemy hero.
    • If there are no enemy minions to attack, the Rush visual effect will disappear. However, if a new minion is summoned for them, it will return.
    • Granting Rush to a minion that has already attacked will not allow them to attack again. This includes Rush given through Magnetic buffs, where the original minion could attack if it were normally summoned.

    public enum GAME_TAG

    // Token: 0x0400627F RID: 25215
        RUSH = 791,
        // Token: 0x04006280 RID: 25216
        ATTACKABLE_BY_RUSH = 930,

    public abstract class EntityBase

    // Token: 0x06007471 RID: 29809 RVA: 0x000E925E File Offset: 0x000E765E
        public bool HasRush()
        {
            return this.HasTag(GAME_TAG.RUSH);
        }

    public class TRL_Dungeon_Boss_203h : TRL_Dungeon

    protected override IEnumerator RespondToPlayedCardWithTiming(Entity entity)

    if (entity.HasTag(GAME_TAG.RUSH))
    {
    yield return base.PlayAndRemoveRandomLineOnlyOnce(enemyActor, this.m_RushLines);
    }

    if (entity.HasTag(GAME_TAG.RUSH))
    {
    this.$current = base.PlayAndRemoveRandomLineOnlyOnce(enemyActor, this.m_RushLines);
    if (!this.$disposing)
    {
    this.$PC = 9;
    }
    return true;
    }

  • 相关阅读:
    写优先
    生产者消费者信号量的个人理解
    向上过滤
    操作系统之进程调度算法笔记
    idea学习
    计算机网络之网络层
    rest-framework routers
    rest framework ViewSet
    rest framework Genericview
    rest framework Views
  • 原文地址:https://www.cnblogs.com/chucklu/p/11314665.html
Copyright © 2011-2022 走看看