| Total Complexity | 5 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 54.55% |
| Changes | 0 | ||
| 1 | # Objetos que se llevan en la mochila |
||
| 2 | 1 | class Abalorio < Item |
|
| 3 | 1 | def name |
|
| 4 | abalorio(id)['name'] |
||
| 5 | end |
||
| 6 | |||
| 7 | 1 | def efecto |
|
| 8 | abalorio(id)['efecto'] |
||
| 9 | end |
||
| 10 | |||
| 11 | 1 | def precio |
|
| 12 | abalorio(id)['precio'] |
||
| 13 | end |
||
| 14 | |||
| 15 | 1 | def unico |
|
| 16 | abalorio(id)['unico'] |
||
| 17 | end |
||
| 18 | |||
| 19 | 1 | def fits |
|
| 20 | 'abalorio' |
||
| 21 | end |
||
| 22 | end |
||
| 23 |