2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("HairyBallHandler.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2015-11-02 20:55:19 +01:00
|
|
|
* © 2015 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-05-07 16:36:29 +02:00
|
|
|
package ellpeck.actuallyadditions.recipe;
|
|
|
|
|
|
|
|
import ellpeck.actuallyadditions.items.InitItems;
|
|
|
|
import ellpeck.actuallyadditions.items.metalists.TheSpecialDrops;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.WeightedRandom;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class HairyBallHandler{
|
|
|
|
|
|
|
|
public static ArrayList<Return> returns = new ArrayList<Return>();
|
|
|
|
|
|
|
|
public static void init(){
|
|
|
|
addReturn(new ItemStack(Items.string), 100);
|
|
|
|
addReturn(new ItemStack(Items.diamond), 2);
|
|
|
|
addReturn(new ItemStack(Items.name_tag), 1);
|
|
|
|
addReturn(new ItemStack(Items.fish), 80);
|
2015-06-06 01:25:53 +02:00
|
|
|
addReturn(new ItemStack(Items.fish, 1, 1), 60);
|
|
|
|
addReturn(new ItemStack(Items.fish, 1, 2), 10);
|
|
|
|
addReturn(new ItemStack(Items.fish, 1, 3), 40);
|
2015-05-07 16:36:29 +02:00
|
|
|
addReturn(new ItemStack(Items.feather), 60);
|
|
|
|
addReturn(new ItemStack(Items.leather), 30);
|
|
|
|
addReturn(new ItemStack(Items.dye), 70);
|
|
|
|
addReturn(new ItemStack(Items.clay_ball), 40);
|
|
|
|
addReturn(new ItemStack(Items.stick), 40);
|
|
|
|
addReturn(new ItemStack(Items.iron_ingot), 10);
|
|
|
|
addReturn(new ItemStack(Items.gold_ingot), 6);
|
|
|
|
addReturn(new ItemStack(Items.beef), 30);
|
|
|
|
addReturn(new ItemStack(Items.ender_pearl), 2);
|
|
|
|
addReturn(new ItemStack(Blocks.planks), 20);
|
|
|
|
addReturn(new ItemStack(Blocks.waterlily), 10);
|
|
|
|
addReturn(new ItemStack(Items.experience_bottle), 3);
|
|
|
|
addReturn(new ItemStack(Blocks.gravel), 40);
|
|
|
|
addReturn(new ItemStack(Blocks.sand), 50);
|
|
|
|
addReturn(new ItemStack(Blocks.vine), 30);
|
|
|
|
addReturn(new ItemStack(Blocks.web), 4);
|
|
|
|
addReturn(new ItemStack(InitItems.itemSpecialDrop, 1, TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal()), 20);
|
|
|
|
addReturn(new ItemStack(InitItems.itemSpecialDrop, 1, TheSpecialDrops.EMERALD_SHARD.ordinal()), 10);
|
|
|
|
addReturn(new ItemStack(InitItems.itemSpecialDrop, 1, TheSpecialDrops.PEARL_SHARD.ordinal()), 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void addReturn(ItemStack stack, int chance){
|
|
|
|
returns.add(new Return(stack, chance));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Return extends WeightedRandom.Item{
|
|
|
|
|
|
|
|
public ItemStack returnItem;
|
2015-05-20 22:39:43 +02:00
|
|
|
public ItemStack inputItem;
|
2015-05-07 16:36:29 +02:00
|
|
|
|
|
|
|
public Return(ItemStack returnItem, int chance){
|
|
|
|
super(chance);
|
|
|
|
this.returnItem = returnItem;
|
2015-05-20 22:39:43 +02:00
|
|
|
this.inputItem = new ItemStack(InitItems.itemHairyBall);
|
2015-05-07 16:36:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|