ммм
This commit is contained in:
parent
20bd844f23
commit
f7c8455b87
@ -1,5 +1,6 @@
|
|||||||
package ru.dbotthepony.kstarbound.defs.item
|
package ru.dbotthepony.kstarbound.defs.item
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableList
|
||||||
import ru.dbotthepony.kstarbound.defs.IThingWithDescription
|
import ru.dbotthepony.kstarbound.defs.IThingWithDescription
|
||||||
import ru.dbotthepony.kstarbound.defs.ThingDescription
|
import ru.dbotthepony.kstarbound.defs.ThingDescription
|
||||||
|
|
||||||
@ -8,16 +9,16 @@ data class ItemDefinition(
|
|||||||
override val price: Long,
|
override val price: Long,
|
||||||
override val rarity: ItemRarity,
|
override val rarity: ItemRarity,
|
||||||
override val category: String?,
|
override val category: String?,
|
||||||
override val inventoryIcon: List<IItemDefinition.IInventoryIcon>?,
|
override val inventoryIcon: ImmutableList<out IItemDefinition.IInventoryIcon>?,
|
||||||
override val itemTags: List<String>,
|
override val itemTags: ImmutableList<String>,
|
||||||
override val learnBlueprintsOnPickup: List<String>,
|
override val learnBlueprintsOnPickup: ImmutableList<String>,
|
||||||
override val maxStack: Long,
|
override val maxStack: Long,
|
||||||
override val eventCategory: String?,
|
override val eventCategory: String?,
|
||||||
override val consumeOnPickup: Boolean,
|
override val consumeOnPickup: Boolean,
|
||||||
override val pickupQuestTemplates: List<String>,
|
override val pickupQuestTemplates: ImmutableList<String>,
|
||||||
override val tooltipKind: ItemTooltipKind,
|
override val tooltipKind: ItemTooltipKind,
|
||||||
override val twoHanded: Boolean,
|
override val twoHanded: Boolean,
|
||||||
override val radioMessagesOnPickup: List<String>,
|
override val radioMessagesOnPickup: ImmutableList<String>,
|
||||||
override val fuelAmount: Long?,
|
override val fuelAmount: Long?,
|
||||||
|
|
||||||
val descriptionData: ThingDescription,
|
val descriptionData: ThingDescription,
|
||||||
|
Loading…
Reference in New Issue
Block a user