-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLutador.php
57 lines (44 loc) · 1.27 KB
/
Lutador.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require_once 'ResistenciaNegativaException.php';
require_once 'ResistenciaLimiteException.php';
require_once 'PoderNegativoException.php';
require_once 'PoderLimiteException.php';
require_once 'AtaqueNegativoException.php';
class Lutador
{
private $resistencia;
private $poder;
public function __construct($resistencia, $poder = 0)
{
if($resistencia<0){
throw new ResistenciaNegativaException('Ooops já perdeu!');
}
if ($resistencia > 100) {
throw new ResistenciaLimiteException('Resistência não pode ser superior a 100');
}
if($poder<0){
throw new PoderNegativoException('0 é o poder mínimo');
}
if($poder>100){
throw new PoderLimiteException('Acima de 100 é muito poder!');
}
$this->resistencia = $resistencia;
$this->poder = $poder;
}
public function getResistencia()
{
return $this->resistencia;
}
public function getPoder()
{
return $this->poder;
}
public function atacar(){
$n = (rand(0,100)/100);
return ($this->poder * $n);
}
public function calcularDano($dano){
$this->resistencia -= $dano;
}
}
?>