VillagerProperties

data class VillagerProperties @JvmOverloads constructor(val container: Identifier, val name: String?, val biome: Identifier?, val height: Int, val profession: Identifier, val level: Int, val type: Identifier, val date: LocalDate = LocalDate.now()) : CommonProperties(source)

Properties for villagers.

Parameters

profession

The profession of a villager

level

The level of a villager

type

The type (skin) of a villager

Constructors

Link copied to clipboard
constructor(container: Identifier, name: String?, biome: Identifier?, height: Int, profession: Identifier, level: Int, type: Identifier, date: LocalDate = LocalDate.now())

Properties

Link copied to clipboard
open override val biome: Identifier?

Biome of a block entity or entity

Link copied to clipboard
open override val container: Identifier

The identifier of the container. Same as in the /summon or /setblock commands

Link copied to clipboard
open override val date: LocalDate

The current date

Link copied to clipboard
open override val height: Int

Y-coordinate of a block entity or entity

Link copied to clipboard
val level: Int
Link copied to clipboard
open override val name: String?

Custom entity or block entity name (renamed in an anvil or with a name tag)

Link copied to clipboard
Link copied to clipboard