blob: 62fbf3db3602ca9a05586c794a644b2557a9ab68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package jp.plusplus.fbs.pottery.usable;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import javax.annotation.Nullable;
/**
* Created by plusplus_F on 2016/03/30.
*/
public class PotteryVoid extends PotteryKeep {
@Override
public String getUnlocalizedName() {
return "pottery.fbs.pot.void";
}
@Override
public float getPriceScale(ItemStack pottery){
return 0.5f;
}
public ItemStack onInventoryClosing(EntityPlayer player, ItemStack pottery, int index, @Nullable ItemStack itemStack){
return null;
}
}
|