1 | <?php |
||
10 | class TertiaryStatValueObject |
||
11 | { |
||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $leechRating; |
||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $leechRatingBonus; |
||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $versatility; |
||
24 | /** |
||
25 | * @var float |
||
26 | */ |
||
27 | private $versatilityDamageDoneBonus; |
||
28 | /** |
||
29 | * @var float |
||
30 | */ |
||
31 | private $versatilityHealingDoneBonus; |
||
32 | /** |
||
33 | * @var float |
||
34 | */ |
||
35 | private $versatilityDamageTakenBonus; |
||
36 | /** |
||
37 | * @var int |
||
38 | */ |
||
39 | private $avoidanceRating; |
||
40 | /** |
||
41 | * @var int |
||
42 | */ |
||
43 | private $avoidanceRatingBonus; |
||
44 | /** |
||
45 | * @var int |
||
46 | */ |
||
47 | private $spellPen; |
||
48 | /** |
||
49 | * @var float |
||
50 | */ |
||
51 | private $spellCrit; |
||
52 | /** |
||
53 | * @var int |
||
54 | */ |
||
55 | private $spellCritRating; |
||
56 | /** |
||
57 | * @var int |
||
58 | */ |
||
59 | private $mana5; |
||
60 | /** |
||
61 | * @var int |
||
62 | */ |
||
63 | private $mana5Combat; |
||
64 | |||
65 | /** |
||
66 | * TertiaryStatValueObject constructor. |
||
67 | * @param int $leechRating |
||
68 | * @param int $leechRatingBonus |
||
69 | * @param int $versatility |
||
70 | * @param float $versatilityDamageDoneBonus |
||
71 | * @param float $versatilityHealingDoneBonus |
||
72 | * @param float $versatilityDamageTakenBonus |
||
73 | * @param int $avoidanceRating |
||
74 | * @param int $avoidanceRatingBonus |
||
75 | * @param int $spellPen |
||
76 | * @param float $spellCrit |
||
77 | * @param int $spellCritRating |
||
78 | * @param int $mana5 |
||
79 | * @param int $mana5Combat |
||
80 | */ |
||
81 | public function __construct( |
||
110 | |||
111 | /** |
||
112 | * @return int |
||
113 | */ |
||
114 | public function getLeechRating() |
||
118 | |||
119 | /** |
||
120 | * @return int |
||
121 | */ |
||
122 | public function getLeechRatingBonus() |
||
126 | |||
127 | /** |
||
128 | * @return int |
||
129 | */ |
||
130 | public function getVersatility() |
||
134 | |||
135 | /** |
||
136 | * @return float |
||
137 | */ |
||
138 | public function getVersatilityDamageDoneBonus() |
||
142 | |||
143 | /** |
||
144 | * @return float |
||
145 | */ |
||
146 | public function getVersatilityHealingDoneBonus() |
||
150 | |||
151 | /** |
||
152 | * @return float |
||
153 | */ |
||
154 | public function getVersatilityDamageTakenBonus() |
||
158 | |||
159 | /** |
||
160 | * @return int |
||
161 | */ |
||
162 | public function getAvoidanceRating() |
||
166 | |||
167 | /** |
||
168 | * @return int |
||
169 | */ |
||
170 | public function getAvoidanceRatingBonus() |
||
174 | |||
175 | /** |
||
176 | * @return int |
||
177 | */ |
||
178 | public function getSpellPen() |
||
182 | |||
183 | /** |
||
184 | * @return float |
||
185 | */ |
||
186 | public function getSpellCrit() |
||
190 | |||
191 | /** |
||
192 | * @return int |
||
193 | */ |
||
194 | public function getSpellCritRating() |
||
198 | |||
199 | /** |
||
200 | * @return int |
||
201 | */ |
||
202 | public function getMana5() |
||
206 | |||
207 | /** |
||
208 | * @return int |
||
209 | */ |
||
210 | public function getMana5Combat() |
||
214 | } |
||
215 |