2013-05-03 13:00:44 +00:00
|
|
|
package biomesoplenty.configuration;
|
|
|
|
|
|
|
|
import biomesoplenty.api.Blocks;
|
|
|
|
import biomesoplenty.api.Items;
|
2013-05-07 01:02:25 +00:00
|
|
|
import biomesoplenty.items.projectiles.DispenserBehaviorDart;
|
2013-05-03 13:00:44 +00:00
|
|
|
import biomesoplenty.items.projectiles.DispenserBehaviorMudball;
|
|
|
|
import net.minecraft.block.BlockDispenser;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.WeightedRandomChestContent;
|
|
|
|
import net.minecraftforge.common.ChestGenHooks;
|
|
|
|
|
|
|
|
public class BOPVanillaCompat {
|
|
|
|
|
|
|
|
public static void init()
|
|
|
|
{
|
|
|
|
// Dispenser behavior for mud balls
|
|
|
|
BlockDispenser.dispenseBehaviorRegistry.putObject(Items.mudball.get(), new DispenserBehaviorMudball());
|
2013-05-07 01:02:25 +00:00
|
|
|
BlockDispenser.dispenseBehaviorRegistry.putObject(Items.dart.get(), new DispenserBehaviorDart());
|
2013-05-03 13:00:44 +00:00
|
|
|
|
|
|
|
ChestGenHooks dungeon;
|
|
|
|
ChestGenHooks mineshaft;
|
|
|
|
ChestGenHooks strongholdCorridor;
|
|
|
|
ChestGenHooks strongholdCrossing;
|
|
|
|
ChestGenHooks village;
|
|
|
|
|
|
|
|
dungeon = ChestGenHooks.getInfo(ChestGenHooks.DUNGEON_CHEST);
|
|
|
|
mineshaft = ChestGenHooks.getInfo(ChestGenHooks.MINESHAFT_CORRIDOR);
|
|
|
|
strongholdCorridor = ChestGenHooks.getInfo(ChestGenHooks.STRONGHOLD_CORRIDOR);
|
|
|
|
strongholdCrossing = ChestGenHooks.getInfo(ChestGenHooks.STRONGHOLD_CROSSING);
|
|
|
|
village = ChestGenHooks.getInfo(ChestGenHooks.VILLAGE_BLACKSMITH);
|
|
|
|
|
|
|
|
dungeon.addItem(new WeightedRandomChestContent(new ItemStack(Items.bopDisc.get()), 1, 1, 2));
|
|
|
|
|
|
|
|
mineshaft.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 1), 2, 8, 25));
|
|
|
|
mineshaft.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.plants.get(),1,5), 4, 6, 15));
|
|
|
|
|
|
|
|
strongholdCorridor.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.flowers.get(),1,3), 1, 4, 25));
|
|
|
|
strongholdCorridor.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.flowers.get(),1,2), 1, 4, 25));
|
|
|
|
|
|
|
|
strongholdCrossing.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.flowers.get(),1,3), 1, 4, 25));
|
|
|
|
strongholdCrossing.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.flowers.get(),1,2), 1, 4, 25));
|
|
|
|
|
|
|
|
village.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.plants.get(),1,5), 2, 6, 25));
|
2013-05-13 11:13:46 +00:00
|
|
|
village.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 1), 2, 8, 25));
|
2013-05-03 13:00:44 +00:00
|
|
|
}
|
|
|
|
}
|