config.yml in Simplified Chinese(zhCN)/minishop.yml in Simplified Chinese(zhCN)

# 这是迷你商店. 迷你商店可以设置为只对VIP开放
# 查看下面的例子进行修改
# 如果出售设置为允许,玩家迷你商店的物品即可出售
config:
   allowselling: false
# 迷你商店最多只允许9个,这就是为什么他叫做迷你商店
items:
   item1:
      material: LAVA_BUCKET
      quantity: 1
      price: 100
   item2:
      material: DIRT
      quantity: 1
      price: 100
      sellprice: 10
   # 你可以给物品添加描述
   item3:
      material: IRON_INGOT
      quantity: 3
      price: 100
      sellprice: 30
      description: Iron bars
   item4:
      material: GRASS
      quantity: 1
      price: 150
   item5:
      material: DIAMOND
      quantity: 1
      price: 200

   # 药水拥有不同的类型 Extended, Splash 或者 ExtendedSplash.
   # If you do not know the potion types, just guess and look in the console
   # If you get it wrong, it will tell you the options
   item6:
      material: POTION
      quantity: 1
      extra: WATER_BREATHING
      #Or you could do:
      #extra: WATER_BREATHING:EXTENDED
      #extra: WATER_BREATHING:SPLASH
      #extra: WATER_BREATHING:EXTENDEDSPLASH
      price: 50
      description: AcidProof Potion
   # Potions can be Extended, Splash or ExtendedSplash. Not all potions can be modified
   item7:
      material: MONSTER_EGG
      quantity: 1
      extra: 90
      price: 300
      description: A pig
   # A dark oak (4 saplings needed)
   item8:
      material: SAPLING
      quantity: 4
      # Extras is durability/damage
      extra: 5
      price: 150
   item9:
      material: POTION
      quantity: 1
      extra: NIGHT_VISION:EXTENDED
      price: 20
      description: Extended Night Vision Potion

Comments

Posts Quoted:
Reply
Clear All Quotes