Steel armor
This commit is contained in:
parent
57d5123a1e
commit
59d3f51576
13 changed files with 33 additions and 2 deletions
2
TODO.txt
2
TODO.txt
|
@ -55,7 +55,7 @@ tech.base No Alloy furnace
|
|||
tech.base No Coke oven
|
||||
tech.base No Metal recycler
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
tech.tools No Steel armor
|
||||
tech.tools
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
animals ??? Goats
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -15,7 +15,7 @@ public class TechTools
|
|||
public static final TTArmorSet BRONZE_ARMOR;
|
||||
|
||||
public static final TTToolSet STEEL_TOOLS;
|
||||
// public static final TTArmorSet STEEL_ARMOR;
|
||||
public static final TTArmorSet STEEL_ARMOR;
|
||||
|
||||
static {
|
||||
COPPER_TOOLS = new TTToolSet( "copper" , Materials.COPPER.INGOT , 2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 );
|
||||
|
@ -29,6 +29,9 @@ public class TechTools
|
|||
} , 20 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
||||
|
||||
STEEL_TOOLS = new TTToolSet( "steel" , Materials.STEEL.INGOT , 3 , 800 , 7f , 2.5f , 12 , 8.0f , -3f );
|
||||
STEEL_ARMOR = new TTArmorSet( "steel" , Materials.STEEL.INGOT , 22 , new int[] {
|
||||
2 , 6 , 7 , 3
|
||||
} , 9 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 1 );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -79,6 +79,10 @@ item.mmm.tech.tools.steel.axe.name=Steel Axe
|
|||
item.mmm.tech.tools.steel.pickaxe.name=Steel Pickaxe
|
||||
item.mmm.tech.tools.steel.hoe.name=Steel Hoe
|
||||
item.mmm.tech.tools.steel.sword.name=Steel Sword
|
||||
item.mmm.tech.tools.steel.armor.feet.name=Steel Boots
|
||||
item.mmm.tech.tools.steel.armor.legs.name=Steel Leggings
|
||||
item.mmm.tech.tools.steel.armor.chest.name=Steel Chestplate
|
||||
item.mmm.tech.tools.steel.armor.head.name=Steel Helmet
|
||||
|
||||
|
||||
item.milk.name=Cow milk
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:items/tech/tools/steel/armor/chest"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:items/tech/tools/steel/armor/feet"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:items/tech/tools/steel/armor/head"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:items/tech/tools/steel/armor/legs"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 236 B |
Binary file not shown.
After Width: | Height: | Size: 214 B |
Binary file not shown.
After Width: | Height: | Size: 202 B |
Binary file not shown.
After Width: | Height: | Size: 197 B |
BIN
src/resources/assets/mmm/textures/models/armor/steel_layer_1.png
Normal file
BIN
src/resources/assets/mmm/textures/models/armor/steel_layer_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
src/resources/assets/mmm/textures/models/armor/steel_layer_2.png
Normal file
BIN
src/resources/assets/mmm/textures/models/armor/steel_layer_2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 672 B |
Reference in a new issue