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 |
||
24 | 4 | public function __construct() |
|
25 | { |
||
26 | 4 | parent::__construct( |
|
27 | 4 | 'Mefadriel', |
|
28 | 4 | new Health(10000), |
|
29 | 4 | new Etherum(200), |
|
30 | 4 | new Strength(200), |
|
31 | 4 | new Initiative(100), |
|
32 | 4 | new TalentCollection([ |
|
33 | 4 | WeaponMastery::greatSword(WeaponMasteryLevel::masterOfThirdTier()), |
|
34 | 4 | new SecretKnowledge(Ascension::eighthAscension()), |
|
35 | 4 | new ProtectionOfTheGods(), |
|
36 | ]), |
||
37 | 4 | new Inventory([]), |
|
38 | 4 | new Protector(new Etherum(200)), |
|
39 | 4 | Corruption::high(), |
|
40 | ); |
||
43 |