File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Also don't forget to remove any trailing commas.
4141Basically, your file contain ** an array of ` CustomRecipe ` objects** .
4242### ** ` CustomeRecipe ` object**
4343` CustomRecipe ` contain these properties:
44- Key|Requirement|Value|Example|Definition|Default Value (if not defined)
44+ Key|Requirement|Value|Example|Definition|Default Value
4545---|---|---|---|---|---
4646` "CraftCategoryID" ` |Required|` CraftCategoryId ` or ` int ` |` "Drug" ` or ` 8 ` |Recipe's category|None
4747` "ResultItemID" ` |Required|` ItemID ` or ` int ` |` "Item_Kin" ` or ` 2156 ` |Result item|None
@@ -72,18 +72,18 @@ The properties doesn't need to be in order, but Required properties must always
7272 " IngredientItemIDs" : [
7373 2156 ,
7474 2156
75- ],
75+ ]
7676 },
7777 {
7878 " CraftCategoryID" : 8 ,
7979 " ResultItemID" : 2154 ,
8080 " IngredientItemIDs" : [
8181 2152 ,
8282 2152
83- ],
83+ ]
8484 }
8585]
8686```
87- First recipe is recipe to create Gold using 2 Silvers, most value are using enum string.
88- Second recipe is recipe to create Platinum using 2 Gold, most value are using int.
89- Third recipe is recipe to create Bronze using 2 Iron, this recipe created with using only the required parameters.
87+ First recipe is recipe to create Gold using 2 Silvers, most values are enum string.
88+ Second recipe is recipe to create Platinum using 2 Gold, all values are int.
89+ Third recipe is recipe to create Bronze using 2 Iron, created with only the required parameters.
You can’t perform that action at this time.
0 commit comments