An open API service indexing awesome lists of open source software.

https://github.com/necnion8/stonegenerator

採掘した鉱石を一定時間後に復活させるプラグイン for Spigot
https://github.com/necnion8/stonegenerator

minecraft-plugin spigot-plugin

Last synced: about 2 months ago
JSON representation

採掘した鉱石を一定時間後に復活させるプラグイン for Spigot

Awesome Lists containing this project

README

        

# StoneGenerator
採掘した鉱石を一定時間後に復活させるプラグイン

## 前提
- Spigot 1.16.3 以上

## コマンドと権限
| コマンド | サブコマンド / 説明 | 権限 | デフォルト |
|----------------------------------------|-------------------------------------|:--------------------------------------|:-----:|
| /stonegenerator
管理者用コマンド | | stonegenerator.command.stonegenerator | OPのみ |
| 〃 | status
処理しているブロック数の表示 | 〃 | 〃 |
| 〃 | reload
設定ファイルの再読み込み | 〃 | 〃 |

## 設定
> [./plugins/StoneGenerator/config.yml](src%2Fmain%2Fresources%2Fbukkit-config.yml)
```yml
worlds:
# ワールド名
mining:
# 生成待ちのブロックタイプ
fill-type: cobblestone

# 生成に必要な時間 (秒)
generate-time-min: 60
generate-time-max: 60

# 生成時の音 (null で無音)
generate-sound: block_stone_break

# 鉱石ブロックの設定
generate-blocks:
- type: stone
priority: 50
fill-type: cracked_stone_bricks # 上書き可
- type: coal_ore
priority: 25
- type: iron_ore
priority: 10
- type: gold_ore
priority: 5
- type: diamond_ore
priority: 1
generate-sound: entity_experience_orb_pickup # 上書き可 (-1 で無音)

# ブロックを処理する条件 (いずれかが失敗する場合は処理しません)
target-blocks:
# 触れたブロックの面の先にあるブロックをテストします (null でテストしません)
deep-types:
- bedrock # MINER -> TARGETING_BLOCK -> BEDROCK
- bedrock # MINER -> TARGETING_BLOCK -> BEDROCK -> BEDROCK
```