Advertisement
WayGroovy

OtherDrops - Survivocolypse

Feb 25th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 11.59 KB | None | 0 0
  1. aliases:
  2.  - &playerWeapons [ANY_SWORD, PROJECTILE_ARROW@PLAYER]
  3.  - &smokeAndScream [SMOKE@SELF, EXTINGUISH@10, GHAST_SHRIEK@20]
  4.  
  5.  - &respawn_This
  6.    tool: *playerWeapons
  7.    dropgroup: scream_then_respawn
  8.    chance: 10
  9.    drops:
  10.      - delay: 20
  11.        effect: *smokeAndScream
  12.      - drop: THIS
  13.        delay: 40
  14.  
  15.  - &respawn_Skeleton
  16.    tool: *playerWeapons
  17.    dropgroup: scream_then_respawn_Skeleton
  18.    chance: 10
  19.    drops:
  20.      - delay: 20
  21.        effect: *smokeAndScream
  22.      - drop: SKELETON
  23.        delay: 40
  24.  
  25.  - &respawn_Zombie
  26.    tool: *playerWeapons
  27.    dropgroup: scream_then_respawn_Zombie
  28.    chance: 10
  29.    drops:
  30.      - delay: 20
  31.        effect: *smokeAndScream
  32.      - drop: ZOMBIE
  33.        delay: 40
  34.  
  35.  - &respawn_Giant
  36.    tool: [BOW, ARROW, PROJECTILE_ARROW@PLAYER]
  37.    dropgroup: scream_then_respawn_Giant
  38.    chance: 1
  39.    drops:
  40.      - delay: 20
  41.        effect: *smokeAndScream
  42.      - drop: GIANT
  43.        delay: 40
  44.  
  45.  - &respawn_Spider
  46.    tool: *playerWeapons
  47.    dropgroup: scream_then_respawn_Spider
  48.    chance: 10
  49.    drops:
  50.      - delay: 20
  51.        effect: *smokeAndScream
  52.      - drop: SPIDER
  53.        delay: 40
  54.  
  55.  - &respawn_PoweredCreeper
  56.    tool: *playerWeapons
  57.    dropgroup: scream_then_respawn_Spider
  58.    chance: 0.5
  59.    drops:
  60.      - delay: 20
  61.        effect: *smokeAndScream
  62.      - drop: CREEPER@POWERED
  63.        delay: 40
  64.  
  65.  - &respawn_CaveSpider
  66.    tool: *playerWeapons
  67.    dropgroup: scream_then_respawn_CaveSpider
  68.    chance: 10
  69.    drops:
  70.      - delay: 20
  71.        effect: *smokeAndScream
  72.      - drop: CAVE_SPIDER
  73.        delay: 40
  74.  
  75.  - &respawn_Ghast
  76.    tool: *playerWeapons
  77.    dropgroup: scream_then_respawn_Ghast
  78.    chance: 0.5
  79.    drops:
  80.      - delay: 40
  81.        effect: *smokeAndScream
  82.      - drop: GHAST
  83.        delay: 60
  84.  
  85.  - &respawn_PigOrZombie
  86.    tool: *playerWeapons
  87.    dropgroup: scream_then_respawn_PigOrZombie
  88.    chance: 20
  89.    drops:
  90.      - delay: 20
  91.        effect: *smokeAndScream
  92.      - drop: {PIG, ZOMBIE}
  93.        delay: 40
  94.  
  95.  - &hostileMob_OreLoot
  96.    tool: *playerWeapons
  97.    drop: [IRON_INGOT/1-2/30%, GOLD_NUGGET/1-5/30%, DIAMOND/1/0.05%]
  98.  
  99.  - &dropSpawnEgg
  100.    tool: *playerWeapons
  101.    drop: MONSTER_EGG@THIS/1/4%
  102.  
  103.  - &potionDrops
  104.    dropgroup: potions
  105.    drops:
  106.         - drop: POTION@8193/0.2%
  107.         - drop: POTION@8194/0.2%
  108.         - drop: POTION@8195/0.2%
  109.         - drop: POTION@8196/0.2%
  110.         - drop: POTION@8197/0.2%
  111.         - drop: POTION@8200/0.2%
  112.         - drop: POTION@8201/0.2%
  113.         - drop: POTION@8202/0.2%
  114.         - drop: POTION@8204/0.2%
  115.         - drop: POTION@8225/0.2%
  116.         - drop: POTION@8226/0.2%
  117.         - drop: POTION@8227/0.2%
  118.         - drop: POTION@8228/0.2%
  119.         - drop: POTION@8229/0.2%
  120.         - drop: POTION@8232/0.2%
  121.         - drop: POTION@8233/0.2%
  122.         - drop: POTION@8234/0.2%
  123.         - drop: POTION@8236/0.2%
  124.         - drop: POTION@8257/0.2%
  125.         - drop: POTION@8258/0.2%
  126.         - drop: POTION@8259/0.2%
  127.         - drop: POTION@8260/0.2%
  128.         - drop: POTION@8261/0.2%
  129.         - drop: POTION@8264/0.2%
  130.         - drop: POTION@8265/0.2%
  131.         - drop: POTION@8266/0.2%
  132.         - drop: POTION@8268/0.2%
  133.         - drop: POTION@8289/0.2%
  134.         - drop: POTION@8290/0.2%
  135.         - drop: POTION@8292/0.2%
  136.         - drop: POTION@8297/0.2%
  137.         - drop: POTION@16481/0.2%
  138.         - drop: POTION@16482/0.2%
  139.         - drop: POTION@16484/0.2%
  140.         - drop: POTION@16489/0.2%
  141.  
  142.  - &goldBonus
  143.    tool: GOLD_SWORD
  144.    drop: [MONSTER_EGG@THIS/1-5/80%, MOB_SPAWNER/0.05%]
  145.  
  146. otherdrops:
  147.   PLAYER:
  148.      - *goldBonus
  149.       - *respawn_Zombie
  150.  
  151.       - drop: XP/10-20
  152.  
  153.   CREATURE_HOSTILE:
  154.      - *potionDrops
  155.       - *hostileMob_OreLoot
  156.       - *respawn_This
  157.       - *goldBonus
  158.       - *dropSpawnEgg
  159.       - *respawn_Ghast
  160.  
  161.       - tool: *playerWeapons
  162.         drop: XP/2-6
  163.  
  164.       - drop: XP/2-5
  165.  
  166.   CREATURE_BUG:
  167.       - tool: [ANY, -DAMAGE_BURN, -DAMAGE_ENTITY_EXPLOSION, -DAMAGE_FALL, -DAMAGE_SUFFOCATION]
  168.         time: NIGHT
  169.         lightlevel: "<10"
  170.         drop: SILVERFISH/1-3/75%
  171.  
  172.   WOLF@HOSTILE:
  173.      - *potionDrops
  174.       - *hostileMob_OreLoot
  175.       - *respawn_This
  176.       - *goldBonus
  177.  
  178.   CREATURE_UNDEAD:
  179.       - tool: *playerWeapons
  180.         drop: [BONE/1-2/10%, NETHERRACK/1-2/2%, SOUL_SAND/1-2/2%, MELON_SEEDS/1-2, PUMPKIN_SEEDS/1-2]
  181.  
  182.       - drop: [RED_MUSHROOM/0.5%, BROWN_MUSHROOM/0.5%]
  183.  
  184.   GIANT:
  185.       - tool: *playerWeapons
  186.         drop: [DIAMOND/2-5, 122/1/1%]
  187.  
  188.   BLAZE:
  189.      - *potionDrops
  190.       - *hostileMob_OreLoot
  191.       - *respawn_This
  192.       - *goldBonus
  193.       - *dropSpawnEgg
  194.  
  195.       - drop: [BLAZE_ROD/1-2/50%, BLAZE_POWDER/1-3/40%, REDSTONE/2-5/70%]
  196.  
  197.   CREEPER@POWERED:
  198.       - tool: ANY_SWORD
  199.         drop: DIAMOND
  200.         quantity: 1-2
  201.  
  202.       - drop: TNT
  203.         quantity: 2-4
  204.         chance: 40
  205.  
  206.       - tool: PROJECTILE_ARROW@SKELETON
  207.         drop: {'2257', '2258', '2259', '2260',  '2261',  '2262',  '2263',  '2264',  '2265',  '2266'}
  208.  
  209.   CREEPER@UNPOWERED:
  210.       - drop: TNT/1-3/35%
  211.       - drop: COAL
  212.  
  213.       - *respawn_PoweredCreeper
  214.  
  215.       - tool: ANY_SWORD
  216.         drop: [SULPHUR/1/50%, DIAMOND/1/2%]
  217.  
  218.       - tool: PROJECTILE_ARROW@SKELETON
  219.         drop: {'2257', '2258', '2259', '2260',  '2261',  '2262',  '2263',  '2264',  '2265',  '2266'}
  220.         chance: 50
  221.  
  222.   SPIDER:
  223.       - tool: *playerWeapons
  224.         drop: [STRING/1/50%, SPIDER_EYE/1-2/10%, FERMENTED_SPIDER_EYE/1-2/1%, INK_SACK/1-5/5%]
  225.  
  226.       - tool: *playerWeapons
  227.         drop: WEB/1/10%
  228.         time: NIGHT
  229.  
  230.       - *respawn_CaveSpider
  231.  
  232.   CAVE_SPIDER:
  233.       - tool: *playerWeapons
  234.         drop: [STRING/1-3/60%, SPIDER_EYE/1-2/10%, FERMENTED_SPIDER_EYE/1-2/1%]
  235.  
  236.       - tool: *playerWeapons
  237.         drop: WEB/1/10%
  238.         time: NIGHT
  239.  
  240.       - *respawn_Spider
  241.  
  242.   PIG_ZOMBIE:
  243.      - *potionDrops
  244.       - *dropSpawnEgg
  245.       - *hostileMob_OreLoot
  246.       - *goldBonus
  247.       - *respawn_PigOrZombie
  248.  
  249.       - drop: XP/2-5
  250.  
  251.       - drop: GHAST/0.5%
  252.         delay: 60
  253.         effect: GHAST_SHRIEK@40
  254.  
  255.       - tool: ANY_SWORD
  256.         drop: GOLD_SWORD@RANGE-15-30
  257.         chance: 5
  258.  
  259.       - tool: *playerWeapons
  260.         drop: [NETHER_WART_SEEDS/2-5, FLINT/1-5/50%, XP/2-6]
  261.  
  262.       - tool: GOLD_SWORD
  263.         drop: MOB_SPAWNER/0.05%
  264.  
  265.   ZOMBIE:
  266.      - *respawn_Giant
  267.       - *respawn_Skeleton
  268.  
  269.       - tool: *playerWeapons
  270.         drop: FLINT/1-5/50%
  271.  
  272.   SLIME@SMALL:
  273.       - drop: DEFAULT
  274.       - *dropSpawnEgg
  275.  
  276.   GHAST:
  277.      - *respawn_Ghast
  278.       - *dropSpawnEgg
  279.  
  280.       - tool: *playerWeapons
  281.         drop: SLIME@SMALL/5-10
  282.  
  283.       - tool: ANY_SWORD
  284.         drop: DIAMOND/1-5
  285.  
  286.   SKELETON:
  287.       - tool: *playerWeapons
  288.         drop: [BOW@20-55/1/20%, ARROW/4-7/30%, ARROW/1-3/45%, FEATHER/2-6/20%, FLINT/1/3%, BONE/1-4/10%, BONE/1-3/5%]
  289.  
  290.       - tool: ANY_SWORD
  291.         drop: [CHAINMAIL_HELMET@35-66/1%, CHAINMAIL_CHESTPLATE@55-95/1%, CHAINMAIL_LEGGINGS@55-91/1%, CHAINMAIL_BOOTS@40-78/1%]
  292.  
  293.   SILVERFISH:
  294.       - tool: *playerWeapons
  295.         drop: GLOWSTONE_DUST/1-8/80%  # this was grouped in with the spawn egg drop above and wouldn't work right, I assumed you wanted tool: sword/bow/arrow
  296.  
  297.   COW:
  298.       - drop: DEFAULT
  299.       - *dropSpawnEgg
  300.  
  301.   MUSHROOM_COW:
  302.       - drop: DEFAULT
  303.       - drop: RED_MUSHROOM/1-3/25%
  304.       - drop: BROWN_MUSHROOM/1-3/25%
  305.       - *dropSpawnEgg
  306.       - *respawn_This
  307.  
  308.   CHICKEN:
  309.       - drop: FEATHER/5-10/90%
  310.       - drop: RAW_CHICKEN/2-6/80%
  311.       - *dropSpawnEgg
  312.  
  313.   SHEEP:
  314.       - drop: DEFAULT
  315.       - *dropSpawnEgg
  316.  
  317.   PIG:
  318.       - drop: DEFAULT
  319.       - *dropSpawnEgg
  320.  
  321.   ANY_BLOCK:
  322.       - tool: HANDS
  323.         damageattacker: 1
  324.         chance: 5
  325.       - drop: SILVERFISH/1/0.05%
  326.       - time: NIGHT
  327.         lightlevel: "<10"
  328.         drop: SILVERFISH/1/25%
  329.  
  330.   STONE:
  331.       - drop: DEFAULT
  332.       - drop: SILVERFISH/1/0.5%
  333.  
  334.       - tool: ANY_PICKAXE
  335.         drop: COAL/1/0.1%
  336.  
  337.       - tool: HANDS
  338.         damageattacker: 1
  339.         chance: 30
  340.  
  341.   DIRT:
  342.       - tool: ALL
  343.         drop: [DIRT/99.5%, MYCELIUM/0.5%]
  344.  
  345.       - drop: WATCH/0.01%
  346.       - drop: SILVERFISH/1/2%
  347.  
  348.   GRASS:
  349.       - drop: DEFAULT
  350.  
  351.       - drop: [SUGAR_CANE/2%, SEEDS/15%]
  352.  
  353.       - tool: GOLD_SPADE
  354.         drop: GRASS/30%
  355.  
  356.   LOG:
  357.       - drop: DEFAULT
  358.       - drop: STICK/4/2%
  359.  
  360.       - tool: GOLD_AXE
  361.         drop: DEFAULT/1-5/90%
  362.  
  363.       - tool: HANDS
  364.         drop: NOTHING # note: log will be dropped as per above
  365.         damageattacker: 1
  366.         chance: 15
  367.  
  368.   SAND:
  369.       - drop: SAND
  370.       - drop: STICK/0.4%
  371.       - drop: SILVERFISH/2%
  372.  
  373.       - drop: WATCH/0.01%
  374.  
  375.       - dropgroup: mapcompass
  376.         chance: 0.01
  377.         drops:
  378.           - tool: ALL
  379.             drop: COMPASS
  380.           - tool: ALL
  381.             drop: MAP
  382.             color: 9
  383.  
  384.       - tool: GOLD_SPADE
  385.         drop: CACTUS/5%
  386.  
  387.   MOSSY_COBBLESTONE:
  388.       - tool: GOLD_PICKAXE
  389.         drop: COBBLESTONE
  390.  
  391.       - tool: GOLD_PICKAXE
  392.         drop: {VINE,SLIME_BALL}
  393.  
  394.       - drop: SILVERFISH/5%
  395.  
  396.   TNT:
  397.       - drop: SILVERFISH/1-3/50%
  398.  
  399.       - tool: [ANY_BLOCK, ANY_ITEM]
  400.         drop: [SAND/3-6/95%, SULFUR/4-7/95%]
  401.  
  402.       - tool: DAMAGE_ENTITY_EXPLOSION
  403.         event: EXPLOSION
  404.         delay: 20
  405.  
  406.   IRON_BLOCK:
  407.       - drop: WOOL@SILVER
  408.  
  409.       - tool: GOLD_PICKAXE
  410.         drop: [NOTHING/10%, IRON_INGOT/1/50%, IRON_INGOT/2/20%, IRON_INGOT/3/10%, IRON_INGOT/4/5%, IRON_INGOT/5/3%, IRON_INGOT/8/1.5%, IRON_BLOCK/2/0.5%]
  411.  
  412.   DIAMOND_BLOCK:
  413.       - drop: WOOL@CYAN
  414.  
  415.       - tool: GOLD_PICKAXE
  416.         drop: [NOTHING/10%, DIAMOND/1/50%, DIAMOND/2/20%, DIAMOND/3/10%, DIAMOND/4/5%, DIAMOND/5/3%, DIAMOND/8/1.5%, DIAMOND_BLOCK/2/0.5%]
  417.  
  418.   GOLD_BLOCK:
  419.       - drop: WOOL@YELLOW
  420.  
  421.       - tool: GOLD_PICKAXE
  422.         drop: [NOTHING/10%, GOLD_NUGGET/10-20/50%, GOLD_NUGGET/15-30/20%, GOLD_NUGGET/25-40/10%, GOLD_NUGGET/35-50/5%, GOLD_INGOT/5-10/3%, GOLD_INGOT/8/1.5%, GOLD_BLOCK/2/0.5%]
  423.  
  424.   '120': # WG: May not work yet, waiting on full implementation
  425.       - tool: ANY_EXPLOSION
  426.         drop: '120'
  427.  
  428.   '122': # WG: May not work yet, waiting on full implementation
  429.       - tool: *playerWeapons
  430.         drop: {122/99%,MONSTER_EGG@63/1%}
  431.  
  432.   LEAVES@GENERIC:
  433.       - drop: [STICK/5%, LEAVES@THIS/1%]
  434.  
  435.       - action: LEAF_DECAY
  436.         drop: [STICK/2%, LEAVES@THIS/0.5%]
  437.  
  438.       - action: LEAF_DECAY
  439.         drop: [GOLDEN_APPLE/0.006%, APPLE/0.5%]
  440.  
  441.       - drop: [GOLDEN_APPLE/0.2%, APPLE/2%]
  442.  
  443.   LEAVES@BIRCH:
  444.       - drop: [STICK/5%, LEAVES@THIS/1%]
  445.       - action: LEAF_DECAY
  446.         drop: [STICK/2%, LEAVES@THIS/0.5%]
  447.  
  448.       - action: LEAF_DECAY
  449.         drop: DYE@BROWN/3%
  450.  
  451.       - drop: DYE@BROWN/10%
  452.   LEAVES@REDWOOD:
  453.       - drop: [STICK/5%, LEAVES@THIS/1%]
  454.       - action: LEAF_DECAY
  455.         drop: [STICK/2%, LEAVES@THIS/0.5%]
  456.  
  457.   GLASS:
  458.       - drop: THIS/50%
  459.       - tool: HANDS
  460.         damageattacker: 2
  461.  
  462.   THIN_GLASS:
  463.       - drop: THIS/50%
  464.       - tool: HANDS
  465.         damageattacker: 1
  466.  
  467.   BOOKSHELF:
  468.       - tool: ANY_AXE
  469.         drop: BOOKSHELF
  470.       - tool: ANY
  471.         drop: SILVERFISH/20%
  472.  
  473.       - tool: [ANY, -ANY_AXE]
  474.         drop: [BOOK/1-3/70%, PAPER/2-8, WOOD/3-6]
  475.  
  476.   WOOD_STAIRS:
  477.       - tool: ANY_AXE
  478.         drop: WOOD_STAIRS
  479.  
  480.   COBBLESTONE_STAIRS:
  481.       - tool: ANY_PICKAXE
  482.         drop: COBBLESTONE_STAIRS
  483.  
  484.   BOAT:
  485.       - tool: ALL
  486.         drop: BOAT
  487.  
  488.   ICE:
  489.       - tool: GOLD_PICKAXE
  490.         drop: ICE
  491.       - tool: ANY
  492.         drop: {LILY_PAD, RAW_FISH}
  493.         chance: 1
  494.  
  495.   GLOWSTONE:
  496.       - tool: [ANY_AXE, ANY_PICKAXE]
  497.         drop: GLOWSTONE
  498.  
  499.       - tool: HANDS
  500.         drop: GLOWSTONE_DUST
  501.         quantity: 2-4
  502.  
  503.   MOB_SPAWNER:
  504.       - tool: ALL
  505.         drop: [NOTHING/99%, THIS/1%]
  506.       - tool: GOLD_PICKAXE
  507.         drop: THIS/10%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement