Paste #73666: Untitled Paste

Date: 2020/07/31 23:33:59 UTC-07:00
Type: Plain Text

View Raw Paste Download This Paste
Copy Link


# Fishing drop tables which override MC default.
# When fishing, the plugin reads through all the drop tables
# and picks THE first one which all conditions are met!!
# You must put at first place the drop tables which
# have the most conditions/which are the most important.
# Number of tugs = number of times you need to click to fish.
on-fish:
    overriding-drop-table:
        conditions:
        - 'region{name=beach}'
        - 'region{name=ocean}'        
        items:
        - 'mmoitem{type=CONSUMABLE;id=LARGE_STRONG_BOX;tugs=12-15;experience=80-100;weight=1}'
        - 'mmoitem{type=CONSUMABLE;id=MEDIUM_STRONG_BOX;tugs=10-12;experience=60-80;weight=1}'
        - 'vanilla{type=NAUTILUS_SHELL;tugs=8-10;experience=40-60;weight=2}'
        - 'mmoitem{type=CONSUMABLE;id=SMALL_STRONG_BOX;tugs=8-10;experience=20-40;weight=2}'
        - 'vanilla{type=CLOCK;tugs=8-10;experience=18-20;weight=2}'
        - 'mmoitem{type=CONSUMABLE;id=LARGE_COIN_PURSE;tugs=8-10;experience=16-18;weight=2}'
        - 'vanilla{type=COMPASS;tugs=8-10;experience=14-16;weight=2}'
        - 'vanilla{type=BUCKET;tugs=8-10;experience=12-14;weight=2}'
        - 'mmoitem{type=CONSUMABLE;id=MEDIUM_COIN_PURSE;tugs=7-8;experience=10-12;weight=4}'
        - 'vanilla{type=LEAD;tugs=6-7;experience=10-12;weight=4}'
        - 'vanilla{type=SCUTE;tugs=5-6;experience=8-10;weight=6}'
        - 'mmoitem{type=CONSUMABLE;id=SMALL_COIN_PURSE;tugs=5-6;experience=8-10;weight=6}'
        - 'vanilla{type=PUFFERFISH;tugs=4-5;experience=6-8;weight=8}'
        - 'vanilla{type=TROPICAL_FISH;tugs=4-5;experience=6-8;weight=8}'
        - 'vanilla{type=LEATHER_BOOTS;tugs=3-4;experience=6-8;weight=10}'
        - 'vanilla{type=GLASS_BOTTLE;tugs=3-4;experience=4-6;weight=10}'
        - 'vanilla{type=BONE;tugs=2-3;experience=2-4;weight=10}'
        - 'vanilla{type=STICK;tugs=2-3;experience=1-2;weight=20}'
        - 'vanilla{type=SALMON;tugs=2-3;experience=2-4;weight=50}'
        - 'vanilla{type=COD;tugs=2-3;experience=2-4;weight=50}'
    # Default drop table which always apply.
    # When removing every drop table, the vanilla
    # fishing mecanism is back.
    default:
        items:
        - 'vanilla{type=PUFFERFISH;tugs=4-5;experience=1-6;weight=10}' 
        - 'vanilla{type=TROPICAL_FISH;tugs=4-5;experience=1-6;weight=10}'
        - 'vanilla{type=SALMON;tugs=4-5;experience=1-6;weight=40}'
        - 'vanilla{type=COD;tugs=4-5;experience=1-6;weight=40}'