@Serializable
data class ItemDto(
- @Deprecated("numeric ids will be removed") @SerialName("id") val id: Int,
+ @Deprecated("numeric ids will be removed") @SerialName("id") val id: Int? = null,
@SerialName("name") val name: String,
@SerialName("type") val type: String,
@SerialName("texture") val texture: String,
@SerialName("block_damage_multiplier") val blockDamageMultiplier: Float = 1f,
@SerialName("top_slab_block") val topSlabBlock: String? = null,
@SerialName("bottom_slab_block") val bottomSlabBlock: String? = null,
+ @SerialName("tool_level") val toolLevel: Int? = null,
+ @SerialName("max_stack") val maxStack: Int = 64,
)