HearthBuddy 复生 reborn
https://hearthstone.gamepedia.com/Reborn
Reborn is an ability that causes a minion to be resummoned with 1 Health the first time it's destroyed. It was introduced in the Saviors of Uldum expansion.
Reborn is represented by a cracked blue glow around the minion.
- Reborn minions keep the max health of the original minion. ??
- A minion that is resummoned by Reborn will not keep any enchantments it had.
- The Reborn keyword functions similarly to Divine Shield and Stealth. It is both an ability of a minion and an effect on the minion.[1]
- When the minion is first destroyed, it loses the visual effect but retains the keyword. The keyword is then functionally meaningless.
- If a minion that has been Reborn is returned to the hand and played again, it will regain its Reborn effect.
- If a Reborn minion is Silenced, it loses its Reborn effect.
- Each Reborn minion is considered its own unique copy of that minion. Any copy resurrected will return with full Health and the Reborn effect active.[2]
- The Reborn effect is considered summoning and will interact with on-summon triggers like Khadgar and Knife Juggler.
// Token: 0x04006269 RID: 25193
REBORN = 1085,
// Token: 0x0400626A RID: 25194
HAS_BEEN_REBORN = 1336,
public class Card : MonoBehaviour
public void ActivateStateSpells(bool forceActivate = false)
if (this.m_entity.HasTag(GAME_TAG.REBORN))
{
this.m_actor.ActivateSpellBirthState(SpellType.REBORN);
}
public class Card : MonoBehaviour
private bool HandlePlayActorDeath(Actor oldActor)
if (!this.m_cardDef.m_SuppressDeathrattleDeath && this.m_entity.HasTag(GAME_TAG.REBORN))
{
this.ActivateActorSpell(oldActor, SpellType.REBORN_DEATH);
}
作者:Chuck Lu GitHub |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
2015-08-07 Static Classes and Static Class Members