forked from Upstream/mmocore
16 lines
455 B
YAML
16 lines
455 B
YAML
|
|
# You may create as many drop tables as you want. You can also
|
|
# make drop tables refer to other drop tables.
|
|
#
|
|
# DON'T TRY to create recursive drop tables (drop tables
|
|
# which call themselves to multiply items dropped).
|
|
|
|
diamond-drop-table:
|
|
items:
|
|
- 'vanilla{type=DIAMOND} 1 1-3'
|
|
# - 'mmoitem{type=material;id=RARE_DIAMOND} .1 1-3'
|
|
- 'droptable{id=other-drop-table} .1'
|
|
|
|
other-drop-table:
|
|
items:
|
|
- 'vanilla{type=STONE_SLAB} 1 1-3' |