メインコンテンツまでスキップ

btcsky_generator_used_event

When a cobblestone generator is used — event entry.

Entry Information

PropertyValue
Entry IDbtcsky_generator_used_event
TypeEvent
ColorOrange
Iconfa6-solid:gears

Description

Event that fires when a block is placed on the island. / @Tags("btcsky", "event") @Entry("btcsky_block_placed_event", "When a block is placed on the island", Colors.BLUE, "fa6-solid:cube") class BlockPlacedEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a block is broken on the island. / @Tags("btcsky", "event") @Entry("btcsky_block_broken_event", "When a block is broken on the island", Colors.RED, "fa6-solid:shredder") class BlockBrokenEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a cobblestone generator is used.