a
This commit is contained in:
parent
49e90a6dca
commit
493cbca351
@ -3,6 +3,7 @@ package ru.dbotthepony.kstarbound.defs.item
|
||||
import com.google.common.collect.ImmutableList
|
||||
import ru.dbotthepony.kstarbound.defs.IThingWithDescription
|
||||
import ru.dbotthepony.kstarbound.defs.ThingDescription
|
||||
import ru.dbotthepony.kvector.vector.ndouble.Vector2d
|
||||
|
||||
data class HarvestingToolDefinition(
|
||||
override val itemName: String,
|
||||
@ -28,6 +29,9 @@ data class HarvestingToolDefinition(
|
||||
override val idleSound: ImmutableList<String>,
|
||||
override val strikeSounds: ImmutableList<String>,
|
||||
|
||||
override val handPosition: Vector2d,
|
||||
override val fireTime: Double,
|
||||
|
||||
val descriptionData: ThingDescription,
|
||||
|
||||
val json: Map<String, Any>
|
||||
|
@ -4,6 +4,7 @@ import com.google.common.collect.ImmutableList
|
||||
import ru.dbotthepony.kstarbound.defs.util.enrollMap
|
||||
import ru.dbotthepony.kstarbound.io.json.builder.JsonBuilder
|
||||
import ru.dbotthepony.kstarbound.util.NotNullVar
|
||||
import ru.dbotthepony.kvector.vector.ndouble.Vector2d
|
||||
|
||||
@JsonBuilder
|
||||
class HarvestingToolPrototype : ItemPrototype(), IHarvestingToolDefinition {
|
||||
@ -13,6 +14,8 @@ class HarvestingToolPrototype : ItemPrototype(), IHarvestingToolDefinition {
|
||||
override var altBlockRadius: Int = 0
|
||||
override var idleSound: ImmutableList<String> = ImmutableList.of()
|
||||
override var strikeSounds: ImmutableList<String> = ImmutableList.of()
|
||||
override var handPosition: Vector2d by NotNullVar()
|
||||
override var fireTime: Double by NotNullVar()
|
||||
|
||||
init {
|
||||
maxStack = 1L
|
||||
@ -45,6 +48,8 @@ class HarvestingToolPrototype : ItemPrototype(), IHarvestingToolDefinition {
|
||||
altBlockRadius = altBlockRadius,
|
||||
idleSound = idleSound,
|
||||
strikeSounds = strikeSounds,
|
||||
handPosition = handPosition,
|
||||
fireTime = fireTime,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package ru.dbotthepony.kstarbound.defs.item
|
||||
|
||||
import ru.dbotthepony.kstarbound.defs.animation.IAnimated
|
||||
import ru.dbotthepony.kvector.vector.ndouble.Vector2d
|
||||
|
||||
interface IHarvestingToolDefinition : IItemDefinition, IAnimated {
|
||||
/**
|
||||
@ -22,4 +23,14 @@ interface IHarvestingToolDefinition : IItemDefinition, IAnimated {
|
||||
* Звуки при работе
|
||||
*/
|
||||
val strikeSounds: List<String>
|
||||
|
||||
/**
|
||||
* Позиция инструмента в руке (смещение в пикселях)
|
||||
*/
|
||||
val handPosition: Vector2d
|
||||
|
||||
/**
|
||||
* Время атаки
|
||||
*/
|
||||
val fireTime: Double
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user