| 1 | <?php |
||
| 10 | class Types extends Model |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Save ineffective as collection |
||
| 14 | * @param $value |
||
| 15 | */ |
||
| 16 | public function setIneffectiveAttribute($value) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Save no_effect as collection |
||
| 23 | * @param $value |
||
| 24 | */ |
||
| 25 | public function setNoEffectAttribute($value) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Save resistance as collection |
||
| 32 | * @param $value |
||
| 33 | */ |
||
| 34 | public function setResistanceAttribute($value) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Save super_effective as collection |
||
| 41 | * @param $value |
||
| 42 | */ |
||
| 43 | public function setSuperEffectiveAttribute($value) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Save weakness as collection |
||
| 50 | * @param $value |
||
| 51 | */ |
||
| 52 | public function setWeaknessAttribute($value) |
||
| 56 | } |
||
| 57 |