2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [WarehouseAPI](./bitburner.warehouseapi.md) > [makeProduct](./bitburner.warehouseapi.makeproduct.md)
|
|
|
|
|
|
|
|
## WarehouseAPI.makeProduct() method
|
|
|
|
|
|
|
|
Create a new product
|
|
|
|
|
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
makeProduct(
|
|
|
|
divisionName: string,
|
2022-12-30 02:28:53 +01:00
|
|
|
city: CityName | `${CityName}`,
|
2022-10-21 17:16:00 +02:00
|
|
|
productName: string,
|
|
|
|
designInvest: number,
|
|
|
|
marketingInvest: number,
|
|
|
|
): void;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| divisionName | string | Name of the division |
|
2022-12-30 02:28:53 +01:00
|
|
|
| city | [CityName](./bitburner.cityname.md) \| \`${[CityName](./bitburner.cityname.md)<!-- -->}\` | Name of the city |
|
2022-10-21 17:16:00 +02:00
|
|
|
| productName | string | Name of the product |
|
|
|
|
| designInvest | number | Amount to invest for the design of the product. |
|
|
|
|
| marketingInvest | number | Amount to invest for the marketing of the product. |
|
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
void
|
|
|
|
|