Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class Haze implements EtherumAttack, SecretKnowledgeTalent |
||
18 | { |
||
19 | public function getDamage(): Damage |
||
20 | { |
||
21 | return new Damage(0); |
||
22 | } |
||
23 | |||
24 | public function getEffects(): EffectCollection |
||
25 | { |
||
26 | return new EffectCollection([new BlockImmunity(), new Stun()]); |
||
27 | } |
||
28 | |||
29 | public static function getEtherumCost(): Etherum |
||
30 | { |
||
31 | return new Etherum(2); |
||
32 | } |
||
33 | |||
34 | public static function getName(): string |
||
35 | { |
||
36 | return 'Haze'; |
||
37 | } |
||
38 | |||
39 | public static function getRequiredTalentPoints(): TalentPoints |
||
40 | { |
||
41 | return new TalentPoints(2); |
||
42 | } |
||
43 | |||
44 | public static function getRequiredAscension(): Ascension |
||
47 | } |
||
48 | } |
||
49 |