商店菜单
# 菜单如何出售/收购原版物品
- 主要节点
shopType节点 商店类型 sell 是出售 buy 是购买
shopMaterial节点 商店出售/收购的物品材质
shopMoney 金币
shopPoint 点券 shopCurrency 多货币价格(1.4.2+)
# shopMoney示例(1.2.0+)
'sell':
index: 38
name: ' &8[&c金币出售物品&8]'
material: APPLE
lore:
- "&f- &7点击出售物品"
- "&f- &7出售64个苹果获得100金币"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'sell'
# 出售的商品 格式 物品材质:数量
shopMaterial: "APPLE:64"
# 商店金币价格
shopMoney: 100
commands:
- '[message] 出售64苹果成功获得100金币'
'buy':
index: 39
name: ' &8[&c金币购买物品&8]'
material: APPLE
lore:
- "&f- &7点击购买物品"
- "&f- &7100金币购买64个苹果"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'buy'
# 出售的商品 格式 物品材质:数量
shopMaterial: "APPLE:64"
# 商店金币价格
shopMoney: 100
# shopPoint示例(1.2.0+)
需点券插件PlayerPoints (opens new window)3.0.0+
'sell1':
index: 40
name: ' &8[&c点券出售物品&8]'
material: POTATO
lore:
- "&f- &7点击出售物品"
- "&f- &7出售64个土豆获得100点券"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'sell'
# 出售的商品 格式 物品材质:数量
shopMaterial: "POTATO:64"
# 商店点券价格
shopPoint: 100
'buy1':
index: 41
name: ' &8[&c点券购买物品&8]'
material: POTATO
lore:
- "&f- &7点击收购物品"
- "&f- &7100点券购买64个土豆"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'buy'
# 出售的商品 格式 物品材质:数量
shopMaterial: "POTATO:64"
# 商店金币价格
shopPoint: 100
# shopCurrency示例(1.4.2+)
需多货币插件PlayerCurrency (opens new window)1.0.3+
'42':
index: 42
name: ' &8[&c自定义货币购买物品&8]'
material: POTATO
lore:
- "&f- &7100购买1个土豆"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'buy'
# 出售的商品 格式 物品材质:数量
shopMaterial: "POTATO:1"
# 多货币需求价格 类型: 价格
shopCurrency: "money:100"
'43':
index: 43
name: ' &8[&c自定义货币购买物品&8]'
material: POTATO
lore:
- "&f- &7点击购买土豆"
isEnchant: false
custom-model-data: 0
# 商店类型 sell 是出售 buy 是购买
shopType: 'buy'
input: '[number] 请输入购买数量'
# 出售的商品 格式 物品材质:数量
shopMaterial: "POTATO:${input}"
# 多货币需求价格 类型: 价格
shopCurrency: "money:${input * 100}"
上次更新: 2025-01-02 02:08:17