MCDSL
0.1.0-SNAPSHOT
jvm
MCDSL
/
com.zacklukem.mcdsl.data
/
Cooking
Cooking
@
Serializable
data
class
Cooking
(
val
type
:
String
,
val
group
:
String
?
=
null
,
val
ingredient
:
List
<
Item
>
,
val
result
:
String
,
val
experience
:
Float
=
0.0f
,
val
cookingtime
:
Int
?
=
null
)
:
Recipe
(
source
)
Members
Constructors
Cooking
Link copied to clipboard
constructor
(
type
:
String
,
group
:
String
?
=
null
,
ingredient
:
List
<
Item
>
,
result
:
String
,
experience
:
Float
=
0.0f
,
cookingtime
:
Int
?
=
null
)
Properties
cookingtime
Link copied to clipboard
val
cookingtime
:
Int
?
=
null
experience
Link copied to clipboard
val
experience
:
Float
=
0.0f
group
Link copied to clipboard
val
group
:
String
?
=
null
ingredient
Link copied to clipboard
val
ingredient
:
List
<
Item
>
result
Link copied to clipboard
val
result
:
String
type
Link copied to clipboard
val
type
:
String