(show, show_item): New `show item'. From Ron Koenderink; changes to

info files heavily hacked by me.
This commit is contained in:
Markus Armbruster 2003-12-17 19:50:20 +00:00
parent a889b6ba0e
commit 800027023a
4 changed files with 105 additions and 32 deletions

View file

@ -264,6 +264,23 @@ show_tower(int tlev)
1 + (buil_tower_bh * 40 / 100), buil_tower_bc);
}
void
show_item(int tlev)
{
register struct ichrstr *ip;
register int n;
pr("item value sell lbs packing item\n");
pr("mnemo rg wh ur bk name\n");
for (n = 1; n <= itm_maxno; n++) {
ip = &ichr[n];
pr(" %c %5d %4s %3d %2d %2d %2d %2d %s\n",
ip->i_mnem, ip->i_value, (ip->i_sell == 1) ? "yes" : "no",
ip->i_lbs, ip->i_pkg[NPKG], ip->i_pkg[WPKG], ip->i_pkg[UPKG],
ip->i_pkg[BPKG], ip->i_name);
}
}
void
show_nuke_stats(int tlev)
{