26 lines
908 B
Plaintext
26 lines
908 B
Plaintext
Scriptname ConstructibleObject extends MiscObject Hidden
|
|
|
|
; SKSE 64 additions built 2020-07-29 17:24:48.495000 UTC
|
|
|
|
; Gets/Sets the result of this recipe
|
|
Form Function GetResult() native
|
|
Function SetResult(Form result) native
|
|
|
|
; Gets/Sets the amount of results of this recipe
|
|
int Function GetResultQuantity() native
|
|
Function SetResultQuantity(int quantity) native
|
|
|
|
; Gets the number of ingredients
|
|
int Function GetNumIngredients() native
|
|
|
|
; Gets/Sets the Nth ingredient required
|
|
Form Function GetNthIngredient(int n) native
|
|
Function SetNthIngredient(Form required, int n) native
|
|
|
|
; Gets/Sets the quantity of Nth ingredient required
|
|
int Function GetNthIngredientQuantity(int n) native
|
|
Function SetNthIngredientQuantity(int value, int n) native
|
|
|
|
; Gets/Sets the Workbench keyword (Which apparatus creates this)
|
|
Keyword Function GetWorkbenchKeyword() native
|
|
Function SetWorkbenchKeyword(Keyword aKeyword) native |