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
- Host: GitHub
- URL: https://github.com/necnion8/stonegenerator
- Owner: Necnion8
- Created: 2025-03-12T22:42:00.000Z (3 months ago)
- Default Branch: develop
- Last Pushed: 2025-03-14T03:27:51.000Z (3 months ago)
- Last Synced: 2025-03-14T04:27:16.566Z (3 months ago)
- Topics: minecraft-plugin, spigot-plugin
- Language: Java
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```