# 配置文件
# 主要配置项
文件路径 skyblock/config.json
"language": "zh_cn", // 语言
"island": {
"x": 0, // 起始岛屿坐标
"y": 0,
"range": 64, // 岛屿范围
"distance": 800 // 岛屿间隔
}
WARNING
island 中的 x y 配置项在创建岛屿后请勿再次修改
"base": {
"respawn": [0, 10, 0, 0], // 删除岛屿后会被传送的位置
"reset_limit": 3, // 删除岛屿次数闲置
"member_limit": 3, // 最大岛屿成员限制
"open_the_end": true, // 是否开放末地
"open_the_nether": true // 是否开放地狱
},
"blueprint": [
{
"name": "经典空岛", // 模板名称
"type": "sky1", // 模板文件(无需后缀)
"x": 9, // 模板 长度
"y": 63, // 加载高度
"z": 9, // 模板 宽度
"offset": [ // 偏移
0, // x
5, // y
2 // z 中心点向z轴方向偏移两格
],
"description": "经典空岛,原汁原味。" // 模板描述
},
],
"worldPermission": { // 世界权限 参见下
"destroy_block": false,
"place_block": false,
"drop_item": true,
"take_item": true,
"atk_friendly_mob": false,
"atk_hostile_mob": false,
"atk_player": false,
"allow_ues_crafting_table": true,
"allow_ues_furnace": false,
"allow_ues_blast_furnace": false,
"allow_ues_smoker": false,
"allow_ues_enchanting_table": true,
"allow_ues_beacon": false,
"allow_open_anvil": false,
"allow_open_barrel": false,
"allow_open_hopper": false,
"allow_open_chest": false,
"allow_open_dropper": false,
"allow_open_dispenser": false,
"allow_open_shulker_box": false,
"allow_open_firegen": false,
"allow_use_projectile": false,
"allow_use_bucket": false
}
# 权限列表
| 权限名称 | 描述 |
|---|---|
| destroy_block | 允许破坏方块 |
| place_block | 允许放置方块 |
| drop_item | 允许丢出物品 |
| take_item | 允许拾取物品 |
| atk_friendly_mob | 允许攻击动物 |
| atk_hostile_mob | 允许攻击敌对生物 |
| atk_player | 允许攻击玩家 |
| allow_ues_crafting_table | 允许使用工作台 |
| allow_ues_furnace | 允许使用熔炉 |
| allow_ues_blast_furnace | 允许使用高炉 |
| allow_ues_smoker | 允许使用火炉 |
| allow_ues_brewing_stand | 允许使用酿造台 |
| allow_ues_enchanting_table | 允许使用附魔台 |
| allow_ues_beacon | 允许操作信标 |
| allow_open_anvil | 允许使用铁砧 |
| allow_open_barrel | 允许打开桶 |
| allow_open_hopper | 允许打开漏斗 |
| allow_open_chest | 允许打开箱 |
| allow_open_dropper | 允许打开投掷器 |
| allow_open_dispenser | 允许打开发射器 |
| allow_open_shulker_box | 允许开潜匿箱 |
| allow_open_firegen | 允许使用打火石 |
| allow_use_projectile | 允许使用弹射物 |
| allow_use_bucket | 允许使用空桶 |
TODO