| 2296 | } |
| 2297 | |
| 2298 | boolean |
| 2299 | artifact_has_invprop(struct obj *otmp, uchar inv_prop) |
| 2300 | { |
| 2301 | const struct artifact *arti = get_artifact(otmp); |
| 2302 | |
| 2303 | return (boolean) ((arti != &artilist[ART_NONARTIFACT]) |
| 2304 | && (arti->inv_prop == inv_prop)); |
| 2305 | } |
| 2306 | |
| 2307 | /* Return the price sold to the hero of a given artifact or unique item */ |
| 2308 | long |
no test coverage detected