1 | <?php |
||
10 | class DefensiveStatValueObject |
||
11 | { |
||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $armor; |
||
16 | /** |
||
17 | * @var float |
||
18 | */ |
||
19 | private $dodge; |
||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $dodgeRating; |
||
24 | /** |
||
25 | * @var float |
||
26 | */ |
||
27 | private $parry; |
||
28 | /** |
||
29 | * @var int |
||
30 | */ |
||
31 | private $parryRating; |
||
32 | /** |
||
33 | * @var float |
||
34 | */ |
||
35 | private $block; |
||
36 | /** |
||
37 | * @var int |
||
38 | */ |
||
39 | private $blockRating; |
||
40 | |||
41 | /** |
||
42 | * DefensiveStatValueObject constructor. |
||
43 | * @param int $armor |
||
44 | * @param float $dodge |
||
45 | * @param int $dodgeRating |
||
46 | * @param float $parry |
||
47 | * @param int $parryRating |
||
48 | * @param float $block |
||
49 | * @param int $blockRating |
||
50 | */ |
||
51 | public function __construct( |
||
68 | |||
69 | /** |
||
70 | * @return int |
||
71 | */ |
||
72 | public function getArmor() |
||
76 | |||
77 | /** |
||
78 | * @return float |
||
79 | */ |
||
80 | public function getDodge() |
||
84 | |||
85 | /** |
||
86 | * @return int |
||
87 | */ |
||
88 | public function getDodgeRating() |
||
92 | |||
93 | /** |
||
94 | * @return float |
||
95 | */ |
||
96 | public function getParry() |
||
100 | |||
101 | /** |
||
102 | * @return int |
||
103 | */ |
||
104 | public function getParryRating() |
||
108 | |||
109 | /** |
||
110 | * @return float |
||
111 | */ |
||
112 | public function getBlock() |
||
116 | |||
117 | /** |
||
118 | * @return int |
||
119 | */ |
||
120 | public function getBlockRating() |
||
124 | } |
||
125 |