Expose exports from Material

This commit is contained in:
Rasmoh
2022-09-05 17:25:32 -07:00
parent 2592c6ccd8
commit cc0fd197c5
2 changed files with 20 additions and 1 deletions

View File

@@ -7211,10 +7211,25 @@ interface Material {
prod: number;
/** Amount of material sold */
sell: number;
/** cost to buy material */
/** Cost to buy material */
cost: number;
/** Sell cost, can be "MP+5" */
sCost: string | number;
/** Export orders */
exp: Export[];
}
/**
* Export order for a material
* @public
*/
interface Export {
/** Division the material is being exported to */
div: string;
/** City the material is being exported to */
loc: string;
/** Amount of material exported */
amt: string;
}
/**