mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
21 lines
No EOL
483 B
Text
21 lines
No EOL
483 B
Text
img(src=item.getPortraitURL())
|
|
div.item-info
|
|
if includes.name
|
|
h4= item.get('name')
|
|
if includes.stats || (includes.props && props.length)
|
|
ul.list-unstyled
|
|
if includes.stats
|
|
for stat, prop in stats
|
|
if stat.display == 'true'
|
|
li= stat.name
|
|
else
|
|
li #{stat.name}: #{stat.display}
|
|
if includes.props && props.length
|
|
li Grants:
|
|
for prop in props
|
|
|
|
|
code= prop
|
|
|
|
.clearfix
|
|
|
|
|