|
|
@ -262,7 +262,13 @@ void printCreature(DFHack::API & DF, const DFHack::t_creature & creature)
|
|
|
|
maintype = (char*)"block";
|
|
|
|
maintype = (char*)"block";
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
case 3:
|
|
|
|
maintype = (char*)"rough gem/glass";
|
|
|
|
switch(mat[i].typeC)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
case 3: maintype = (char*)"raw green glass"; break;
|
|
|
|
|
|
|
|
case 4: maintype = (char*)"raw clear glass"; break;
|
|
|
|
|
|
|
|
case 5: maintype = (char*)"raw crystal glass"; break;
|
|
|
|
|
|
|
|
default: maintype = (char*)"raw gems"; break;
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
case 4:
|
|
|
|
maintype = (char*)"raw stone";
|
|
|
|
maintype = (char*)"raw stone";
|
|
|
@ -270,6 +276,9 @@ void printCreature(DFHack::API & DF, const DFHack::t_creature & creature)
|
|
|
|
case 5:
|
|
|
|
case 5:
|
|
|
|
maintype = (char*)"wood log";
|
|
|
|
maintype = (char*)"wood log";
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 24:
|
|
|
|
|
|
|
|
maintype = (char*)"weapon?";
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 54:
|
|
|
|
case 54:
|
|
|
|
maintype = (char*)"leather";
|
|
|
|
maintype = (char*)"leather";
|
|
|
|
break;
|
|
|
|
break;
|
|
|
@ -280,7 +289,7 @@ void printCreature(DFHack::API & DF, const DFHack::t_creature & creature)
|
|
|
|
maintype = (char*)"unknown";
|
|
|
|
maintype = (char*)"unknown";
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\t%s(%d)\t%d %d - %.8x\n", maintype, mat[i].typeA, mat[i].typeB, mat[i].typeC, mat[i].flags);
|
|
|
|
printf("\t%s(%d)\t%d %d %d - %.8x\n", maintype, mat[i].typeA, mat[i].typeB, mat[i].typeC, mat[i].typeD, mat[i].flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|