Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 2 | public function __construct() |
|
24 | { |
||
25 | 2 | parent::__construct( |
|
26 | 2 | 'Nameless', |
|
27 | 2 | new Health(500), |
|
28 | 2 | new Etherum(rand(2, 10)), |
|
29 | 2 | new Strength(100), |
|
30 | 2 | new Initiative(40), |
|
31 | 2 | new TalentCollection([ |
|
32 | 2 | WeaponMastery::greatSword(WeaponMasteryLevel::veteran()), |
|
33 | 2 | new SecretKnowledge(Ascension::sixthAscension()), |
|
34 | 2 | new Slash(), |
|
35 | ]), |
||
36 | 2 | new Inventory([]), |
|
37 | 2 | new SteelFromAbyss(), |
|
38 | 2 | true, |
|
39 | ); |
||
42 |