Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.92 KB | None | 0 0
  1. crate:
  2.     reward-inventory-name: "Collect reward?"
  3.     take-reward-item-name: "Take reward"
  4.     take-reward-item-lore:
  5.        - "Take the reward"
  6.         - "with you."
  7.     reroll-reward-item-name: "Reroll reward"
  8.     reroll-reward-item-lore:
  9.        - "Reroll for a chance"
  10.         - "of a different reward."
  11.         - ""
  12.         - "Can only be used once"
  13.     preview-inventory-name: "Crate Items Preview"
  14.     min-changes: 3
  15.     max-changes: 10
  16.     ticks-between-change: 10
  17.     ticks-to-close: 60
  18.     change-effect: FIREWORKS_SPARK
  19.     change-effect-amount: 10
  20.     change-sound: CHICKEN_EGG_POP
  21.     end-sound: ORB_PICKUP
  22.  
  23. crates:
  24.     "test-crate":
  25.         name: "Example Crate"
  26.         key:
  27.             ==: CrateKey
  28.             material: TRIPWIRE_HOOK
  29.             damage: 0
  30.             meta:
  31.                 name: "Example Crate Key"
  32.                 lore:
  33.                    - "Use this key to"
  34.                     - "open Example Crate"
  35.                 enchantments:
  36.                     DURABILITY: 1
  37.                 flags:
  38.                    - HIDE_ENCHANTS
  39.         items:
  40.             -   ==: CrateItem
  41.                 material: DIRT
  42.                 amount: 16
  43.                 damage: 0
  44.             -   ==: CrateItem
  45.                 material: DIRT
  46.                 amount: 1
  47.                 damage: 0
  48.                 meta:
  49.                     name: "Set of dirt"
  50.                     lore:
  51.                        - "Technically 1 dirt"
  52.                         - "but practically 64"
  53.                 commands:
  54.                    - "give {player} minecraft:dirt 64"
  55.             -   ==: CrateItem
  56.                 material: BRICK_STAIRS
  57.                 amount: 32
  58.                 damage: 0
  59.             -   ==: CrateItem
  60.                 material: STONE
  61.                 amount: 64
  62.                 damage: 1
  63.                 meta:
  64.                     name: "Some item with a custom name"
  65.         locations: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement