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