(cycloper: Creature)
| 789 | } |
| 790 | |
| 791 | function isRiotShieldUpgraded(cycloper: Creature) { |
| 792 | const riotShield = cycloper.abilities?.[2]; |
| 793 | return Boolean( |
| 794 | riotShield && typeof riotShield.isUpgraded === 'function' && riotShield.isUpgraded(), |
| 795 | ); |
| 796 | } |
| 797 | |
| 798 | function isCycloperRelayWall(creature: Creature | null | undefined, cycloper: Creature) { |
| 799 | return ( |
no test coverage detected