Added rest of Item textures and semi implmentted the Rift Blade.
This commit is contained in:
parent
8a36c6b1c0
commit
16416e35d4
10 changed files with 28 additions and 1 deletions
18
src/main/java/com/zixiken/dimdoors/items/ItemRiftBlade.java
Normal file
18
src/main/java/com/zixiken/dimdoors/items/ItemRiftBlade.java
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
package com.zixiken.dimdoors.items;
|
||||||
|
|
||||||
|
import com.zixiken.dimdoors.DimDoors;
|
||||||
|
import net.minecraft.item.ItemSword;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by Jared Johnson on 1/20/2017.
|
||||||
|
*/
|
||||||
|
public class ItemRiftBlade extends ItemSword {
|
||||||
|
public static final String ID = "itemRiftBlade";
|
||||||
|
|
||||||
|
public ItemRiftBlade() {
|
||||||
|
super(ToolMaterial.IRON);
|
||||||
|
setCreativeTab(DimDoors.dimDoorsCreativeTab);
|
||||||
|
setUnlocalizedName(ID);
|
||||||
|
setRegistryName(ID);
|
||||||
|
}
|
||||||
|
}
|
|
@ -35,6 +35,7 @@ public class ItemRiftConnectionTool extends ItemTool {
|
||||||
ItemRiftConnectionTool() {
|
ItemRiftConnectionTool() {
|
||||||
super(1.0F, -2.8F, ToolMaterial.WOOD, new HashSet());
|
super(1.0F, -2.8F, ToolMaterial.WOOD, new HashSet());
|
||||||
//@todo add extra stuff?
|
//@todo add extra stuff?
|
||||||
|
setCreativeTab(DimDoors.dimDoorsCreativeTab);
|
||||||
setUnlocalizedName(ID);
|
setUnlocalizedName(ID);
|
||||||
setRegistryName(ID);
|
setRegistryName(ID);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ public class ModItems {
|
||||||
public static ItemDimDoorPersonal itemDimDoorPersonal;
|
public static ItemDimDoorPersonal itemDimDoorPersonal;
|
||||||
public static ItemBlockDimWall itemBlockDimWall;
|
public static ItemBlockDimWall itemBlockDimWall;
|
||||||
public static ItemRiftConnectionTool itemRiftConnectionTool;
|
public static ItemRiftConnectionTool itemRiftConnectionTool;
|
||||||
|
public static ItemRiftBlade itemRiftBlade;
|
||||||
|
|
||||||
public static void registerItems() {
|
public static void registerItems() {
|
||||||
GameRegistry.register(itemDoorQuartz = new ItemDoorQuartz());
|
GameRegistry.register(itemDoorQuartz = new ItemDoorQuartz());
|
||||||
|
@ -29,6 +30,7 @@ public class ModItems {
|
||||||
GameRegistry.register(itemDimDoorChaos = new ItemDimDoorUnstable());
|
GameRegistry.register(itemDimDoorChaos = new ItemDimDoorUnstable());
|
||||||
GameRegistry.register(itemWorldThread = new ItemWorldThread());
|
GameRegistry.register(itemWorldThread = new ItemWorldThread());
|
||||||
GameRegistry.register(itemRiftConnectionTool = new ItemRiftConnectionTool());
|
GameRegistry.register(itemRiftConnectionTool = new ItemRiftConnectionTool());
|
||||||
|
GameRegistry.register(itemRiftBlade = new ItemRiftBlade());
|
||||||
|
|
||||||
//ItemBlocks
|
//ItemBlocks
|
||||||
GameRegistry.register(itemBlockDimWall = new ItemBlockDimWall());
|
GameRegistry.register(itemBlockDimWall = new ItemBlockDimWall());
|
||||||
|
|
|
@ -27,7 +27,7 @@ item.itemRiftConnectionTool.name=Below Average Rift Connection Tool
|
||||||
item.itemRiftRemover.name=Rift Remover
|
item.itemRiftRemover.name=Rift Remover
|
||||||
item.itemStableFabric.name=Stable Fabric
|
item.itemStableFabric.name=Stable Fabric
|
||||||
item.itemChaosDoor.name=Unstable Door
|
item.itemChaosDoor.name=Unstable Door
|
||||||
item.ItemRiftBlade.name=Rift Blade
|
item.itemRiftBlade.name=Rift Blade
|
||||||
item.itemWorldThread.name=World Thread
|
item.itemWorldThread.name=World Thread
|
||||||
info.riftkey.bound=Bound
|
info.riftkey.bound=Bound
|
||||||
info.riftkey.unbound=Unbound
|
info.riftkey.unbound=Unbound
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "dimdoors:items/itemRiftBlade"
|
||||||
|
}
|
||||||
|
}
|
BIN
src/main/resources/assets/dimdoors/textures/items/itemDDKey.png
Normal file
BIN
src/main/resources/assets/dimdoors/textures/items/itemDDKey.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 205 B |
Binary file not shown.
After Width: | Height: | Size: 210 B |
Binary file not shown.
After Width: | Height: | Size: 205 B |
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
Loading…
Reference in a new issue