-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPikachu.php
30 lines (28 loc) · 925 Bytes
/
Pikachu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
class Pikachu extends Pokemon\Pokemon
{
/** Constructor wordt uitgevoerd als er een nieuwe Pikachu class word aangemaakt.
* @param string $name
*/
public function __construct($name)
{
$energyType = new EnergyType('Lightning');
$hitPoints = 60;
$attacks = array(
new attacks('Electric Ring', 50),
new attacks('Pika Punch', 20)
);
$weakness = new weakness('Fire', 1.5);
$resistance = new resistance('Fighting', 20);
/**
* Constructor die gebruikt wordt om een Pokemon object aan te maken.
* @param string $name
* @param string $energyType
* @param int $hitPoints
* @param mixed $attacks
* @param mixed $weakness
* @param mixed $resistance
*/
parent::__construct($name, $energyType, $hitPoints, $attacks, $weakness, $resistance);
}
}