2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.item;
|
|
|
|
|
|
|
|
import com.pahimar.ee3.EquivalentExchange3;
|
|
|
|
import com.pahimar.ee3.lib.Strings;
|
2012-10-26 02:55:26 +02:00
|
|
|
|
2012-11-06 21:49:43 +01:00
|
|
|
|
2012-10-27 23:41:02 +02:00
|
|
|
/**
|
|
|
|
* ItemInertStone
|
|
|
|
*
|
|
|
|
* An inert stone
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2012-10-26 02:55:26 +02:00
|
|
|
public class ItemInertStone extends ItemEE {
|
|
|
|
|
2012-11-30 21:45:32 +01:00
|
|
|
public ItemInertStone(int id) {
|
|
|
|
|
|
|
|
super(id);
|
|
|
|
this.setIconCoord(1, 0);
|
|
|
|
this.setItemName(Strings.INERT_STONE_NAME);
|
|
|
|
this.setCreativeTab(EquivalentExchange3.tabsEE3);
|
|
|
|
}
|
2012-10-26 02:55:26 +02:00
|
|
|
|
|
|
|
}
|