btcsky_generator_used_event
When a cobblestone generator is used — event entry.
Entry Information
| Property | Value |
|---|---|
| Entry ID | btcsky_generator_used_event |
| Type | Event |
| Color | Orange |
| Icon | fa6-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.