Bronze armor
This commit is contained in:
parent
b9c874943a
commit
d979339ee9
13 changed files with 34 additions and 2 deletions
2
TODO.txt
2
TODO.txt
|
@ -52,7 +52,7 @@ materials.ore No Lead (galena)
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
tech.base No Coke oven
|
tech.base No Coke oven
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
tech.tools No Bronze armor
|
tech.tools
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
animals ??? Goats
|
animals ??? Goats
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -11,14 +11,18 @@ public class TechTools
|
||||||
public static final TTToolSet COPPER_TOOLS;
|
public static final TTToolSet COPPER_TOOLS;
|
||||||
public static final TTArmorSet COPPER_ARMOR;
|
public static final TTArmorSet COPPER_ARMOR;
|
||||||
public static final TTToolSet BRONZE_TOOLS;
|
public static final TTToolSet BRONZE_TOOLS;
|
||||||
|
public static final TTArmorSet BRONZE_ARMOR;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
COPPER_TOOLS = new TTToolSet( "copper" , Materials.COPPER.INGOT , 2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 );
|
COPPER_TOOLS = new TTToolSet( "copper" , Materials.COPPER.INGOT , 2 , 192 , 5.0f , 1.5f , 16 , 7 , -3 );
|
||||||
COPPER_ARMOR = new TTArmorSet( "copper" , Materials.COPPER.INGOT , 10 , new int[] {
|
COPPER_ARMOR = new TTArmorSet( "copper" , Materials.COPPER.INGOT , 10 , new int[] {
|
||||||
1 , 3 , 4 , 1
|
1 , 3 , 4 , 1
|
||||||
} , 20 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
} , 15 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
||||||
|
|
||||||
BRONZE_TOOLS = new TTToolSet( "bronze" , Materials.BRONZE.INGOT , 2 , 212 , 5.5f , 1.75f , 20 , 7.5f , -3.1f );
|
BRONZE_TOOLS = new TTToolSet( "bronze" , Materials.BRONZE.INGOT , 2 , 212 , 5.5f , 1.75f , 20 , 7.5f , -3.1f );
|
||||||
|
BRONZE_ARMOR = new TTArmorSet( "bronze" , Materials.BRONZE.INGOT , 13 , new int[] {
|
||||||
|
1 , 4 , 5 , 2
|
||||||
|
} , 20 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,10 @@ item.mmm.tech.tools.bronze.axe.name=Bronze Axe
|
||||||
item.mmm.tech.tools.bronze.pickaxe.name=Bronze Pickaxe
|
item.mmm.tech.tools.bronze.pickaxe.name=Bronze Pickaxe
|
||||||
item.mmm.tech.tools.bronze.hoe.name=Bronze Hoe
|
item.mmm.tech.tools.bronze.hoe.name=Bronze Hoe
|
||||||
item.mmm.tech.tools.bronze.sword.name=Bronze Sword
|
item.mmm.tech.tools.bronze.sword.name=Bronze Sword
|
||||||
|
item.mmm.tech.tools.bronze.armor.feet.name=Bronze Boots
|
||||||
|
item.mmm.tech.tools.bronze.armor.legs.name=Bronze Leggings
|
||||||
|
item.mmm.tech.tools.bronze.armor.chest.name=Bronze Chestplate
|
||||||
|
item.mmm.tech.tools.bronze.armor.head.name=Bronze Helmet
|
||||||
|
|
||||||
|
|
||||||
item.milk.name=Cow milk
|
item.milk.name=Cow milk
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/bronze/armor/chest"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/bronze/armor/feet"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/bronze/armor/head"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/bronze/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 |
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 659 B |
Reference in a new issue