Advertisement
Onenrico

ya worth.yml

Oct 15th, 2018
680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.54 KB | None | 0 0
  1. worth:
  2.   wool:
  3.    '*': 20
  4.    # ^ here set all color of wool to have $20
  5.    '0': 30
  6.    # ^ then set white color of wool [wool:0] to have $30
  7.    # then all color of wool will have $20
  8.    # but white wool will have $30
  9.   # above is first way to do that
  10.   # we have second way we call it modern way
  11.   # wool: 20
  12.   # ^ set all wool price to 20
  13.   # white_wool: 30
  14.   # ^ set only white wool price to 30
  15.   log: 2.0
  16.   wood: 0.50
  17.   emerald: 120
  18.   diamond: 100
  19.   gold_ingot: 20
  20.   iron_ingot: 10
  21.   coal: 4  
  22.   redstone: 3
  23.   wheat: 2
  24.   bread: 12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement