Steel tools
This commit is contained in:
parent
ba62ae1348
commit
57d5123a1e
18 changed files with 42 additions and 1 deletions
1
TODO.txt
1
TODO.txt
|
@ -55,7 +55,6 @@ tech.base No Alloy furnace
|
||||||
tech.base No Coke oven
|
tech.base No Coke oven
|
||||||
tech.base No Metal recycler
|
tech.base No Metal recycler
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
tech.tools No Steel tools
|
|
||||||
tech.tools No Steel armor
|
tech.tools No Steel armor
|
||||||
-------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------
|
||||||
animals ??? Goats
|
animals ??? Goats
|
||||||
|
|
BIN
graphics/axe.xcf
Normal file
BIN
graphics/axe.xcf
Normal file
Binary file not shown.
BIN
graphics/hoe.xcf
Normal file
BIN
graphics/hoe.xcf
Normal file
Binary file not shown.
BIN
graphics/pickaxe.xcf
Normal file
BIN
graphics/pickaxe.xcf
Normal file
Binary file not shown.
BIN
graphics/shovel.xcf
Normal file
BIN
graphics/shovel.xcf
Normal file
Binary file not shown.
BIN
graphics/sword.xcf
Normal file
BIN
graphics/sword.xcf
Normal file
Binary file not shown.
|
@ -10,9 +10,13 @@ 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;
|
public static final TTArmorSet BRONZE_ARMOR;
|
||||||
|
|
||||||
|
public static final TTToolSet STEEL_TOOLS;
|
||||||
|
// public static final TTArmorSet STEEL_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[] {
|
||||||
|
@ -23,6 +27,8 @@ public class TechTools
|
||||||
BRONZE_ARMOR = new TTArmorSet( "bronze" , Materials.BRONZE.INGOT , 13 , new int[] {
|
BRONZE_ARMOR = new TTArmorSet( "bronze" , Materials.BRONZE.INGOT , 13 , new int[] {
|
||||||
1 , 4 , 5 , 2
|
1 , 4 , 5 , 2
|
||||||
} , 20 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
} , 20 , SoundEvents.ITEM_ARMOR_EQUIP_GENERIC , 0 );
|
||||||
|
|
||||||
|
STEEL_TOOLS = new TTToolSet( "steel" , Materials.STEEL.INGOT , 3 , 800 , 7f , 2.5f , 12 , 8.0f , -3f );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -74,6 +74,12 @@ 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.chest.name=Bronze Chestplate
|
||||||
item.mmm.tech.tools.bronze.armor.head.name=Bronze Helmet
|
item.mmm.tech.tools.bronze.armor.head.name=Bronze Helmet
|
||||||
|
|
||||||
|
item.mmm.tech.tools.steel.shovel.name=Steel Shovel
|
||||||
|
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.milk.name=Cow milk
|
item.milk.name=Cow milk
|
||||||
item.mmm.food.milk.sheep.name=Sheep milk
|
item.mmm.food.milk.sheep.name=Sheep milk
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/steel/axe"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/steel/hoe"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/steel/pickaxe"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/steel/shovel"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "mmm:items/tech/tools/steel/sword"
|
||||||
|
}
|
||||||
|
}
|
BIN
src/resources/assets/mmm/textures/items/tech/tools/steel/axe.png
Normal file
BIN
src/resources/assets/mmm/textures/items/tech/tools/steel/axe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 229 B |
BIN
src/resources/assets/mmm/textures/items/tech/tools/steel/hoe.png
Normal file
BIN
src/resources/assets/mmm/textures/items/tech/tools/steel/hoe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 208 B |
Binary file not shown.
After Width: | Height: | Size: 239 B |
Binary file not shown.
After Width: | Height: | Size: 212 B |
Binary file not shown.
After Width: | Height: | Size: 240 B |
Reference in a new issue