added copperstick
This commit is contained in:
@ -9,7 +9,7 @@ yarn_mappings=1.21.6+build.1
|
|||||||
loader_version=0.16.14
|
loader_version=0.16.14
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=1.21.6.2
|
mod_version=1.21.6.3
|
||||||
maven_group=de.jottyfan.quickiemod
|
maven_group=de.jottyfan.quickiemod
|
||||||
archives_base_name=quickiemod
|
archives_base_name=quickiemod
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ public class ModIdentifiers {
|
|||||||
public static final Identifier ITEM_COPPERSTRING = Identifier.of(Quickiemod.MOD_ID, "copperstring");
|
public static final Identifier ITEM_COPPERSTRING = Identifier.of(Quickiemod.MOD_ID, "copperstring");
|
||||||
public static final Identifier ITEM_COPPERPOWDER = Identifier.of(Quickiemod.MOD_ID, "copperpowder");
|
public static final Identifier ITEM_COPPERPOWDER = Identifier.of(Quickiemod.MOD_ID, "copperpowder");
|
||||||
public static final Identifier ITEM_COPPERSTUB = Identifier.of(Quickiemod.MOD_ID, "copperstub");
|
public static final Identifier ITEM_COPPERSTUB = Identifier.of(Quickiemod.MOD_ID, "copperstub");
|
||||||
|
public static final Identifier ITEM_COPPERSTICK = Identifier.of(Quickiemod.MOD_ID, "copperstick");
|
||||||
|
|
||||||
public static final Identifier TOOL_SPEEDPOWDERAXE = Identifier.of(Quickiemod.MOD_ID, "speedpowderaxe");
|
public static final Identifier TOOL_SPEEDPOWDERAXE = Identifier.of(Quickiemod.MOD_ID, "speedpowderaxe");
|
||||||
public static final Identifier TOOL_SPEEDPOWDERHOE = Identifier.of(Quickiemod.MOD_ID, "speedpowderhoe");
|
public static final Identifier TOOL_SPEEDPOWDERHOE = Identifier.of(Quickiemod.MOD_ID, "speedpowderhoe");
|
||||||
|
@ -58,6 +58,8 @@ public class ModItems {
|
|||||||
new Item64Stack(ModIdentifiers.ITEM_COPPERPOWDER));
|
new Item64Stack(ModIdentifiers.ITEM_COPPERPOWDER));
|
||||||
public static final Item ITEM_COPPERSTUB = registerItem(ModIdentifiers.ITEM_COPPERSTUB,
|
public static final Item ITEM_COPPERSTUB = registerItem(ModIdentifiers.ITEM_COPPERSTUB,
|
||||||
new Item64Stack(ModIdentifiers.ITEM_COPPERSTUB));
|
new Item64Stack(ModIdentifiers.ITEM_COPPERSTUB));
|
||||||
|
public static final Item ITEM_COPPERSTICK = registerItem(ModIdentifiers.ITEM_COPPERSTICK,
|
||||||
|
new Item64Stack(ModIdentifiers.ITEM_COPPERSTICK));
|
||||||
|
|
||||||
public static final Item TOOL_SPEEDPOWDERAXE = registerItem(ModIdentifiers.TOOL_SPEEDPOWDERAXE,
|
public static final Item TOOL_SPEEDPOWDERAXE = registerItem(ModIdentifiers.TOOL_SPEEDPOWDERAXE,
|
||||||
new ToolSpeedpowderAxe(ModIdentifiers.TOOL_SPEEDPOWDERAXE));
|
new ToolSpeedpowderAxe(ModIdentifiers.TOOL_SPEEDPOWDERAXE));
|
||||||
@ -108,8 +110,9 @@ public class ModItems {
|
|||||||
items.add(ITEM_CANOLASEED);
|
items.add(ITEM_CANOLASEED);
|
||||||
items.add(ITEM_CANOLABOTTLE);
|
items.add(ITEM_CANOLABOTTLE);
|
||||||
items.add(ITEM_CANOLABOTTLESTACK);
|
items.add(ITEM_CANOLABOTTLESTACK);
|
||||||
items.add(ITEM_COPPERSTRING);
|
|
||||||
items.add(ITEM_COPPERPOWDER);
|
items.add(ITEM_COPPERPOWDER);
|
||||||
|
items.add(ITEM_COPPERSTRING);
|
||||||
|
items.add(ITEM_COPPERSTICK);
|
||||||
items.add(ITEM_COPPERSTUB);
|
items.add(ITEM_COPPERSTUB);
|
||||||
|
|
||||||
items.add(TOOL_SPEEDPOWDERPICKAXE);
|
items.add(TOOL_SPEEDPOWDERPICKAXE);
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "quickiemod:item/copperstick"
|
||||||
|
}
|
||||||
|
}
|
@ -52,7 +52,8 @@
|
|||||||
"item.quickiemod.quickieingot": "Eilpulverbarren",
|
"item.quickiemod.quickieingot": "Eilpulverbarren",
|
||||||
"item.quickiemod.copperstring": "Kupferband",
|
"item.quickiemod.copperstring": "Kupferband",
|
||||||
"item.quickiemod.copperpowder": "Kupferpulver",
|
"item.quickiemod.copperpowder": "Kupferpulver",
|
||||||
"item.quickiemod.copperstub": "Kupferstab",
|
"item.quickiemod.copperstub": "Kupferstummel",
|
||||||
|
"item.quickiemod.copperstick": "Kupferstock",
|
||||||
"block.quickiemod.orenethersulphor": "Nether-Schwefel",
|
"block.quickiemod.orenethersulphor": "Nether-Schwefel",
|
||||||
"block.quickiemod.oresalpeter": "Salpetererz",
|
"block.quickiemod.oresalpeter": "Salpetererz",
|
||||||
"block.quickiemod.oresandsalpeter": "Salpetergestein",
|
"block.quickiemod.oresandsalpeter": "Salpetergestein",
|
||||||
|
@ -53,6 +53,7 @@
|
|||||||
"item.quickiemod.copperstring": "copper string",
|
"item.quickiemod.copperstring": "copper string",
|
||||||
"item.quickiemod.copperpowder": "copper powder",
|
"item.quickiemod.copperpowder": "copper powder",
|
||||||
"item.quickiemod.copperstub": "copper stub",
|
"item.quickiemod.copperstub": "copper stub",
|
||||||
|
"item.quickiemod.copperstick": "copper stick",
|
||||||
"block.quickiemod.orenethersulphor": "nether sulfur",
|
"block.quickiemod.orenethersulphor": "nether sulfur",
|
||||||
"block.quickiemod.oresalpeter": "salpeter ore",
|
"block.quickiemod.oresalpeter": "salpeter ore",
|
||||||
"block.quickiemod.oresandsalpeter": "salpeter stone",
|
"block.quickiemod.oresandsalpeter": "salpeter stone",
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "quickiemod:item/copperstick"
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 778 B |
@ -2,7 +2,7 @@
|
|||||||
"type": "minecraft:blasting",
|
"type": "minecraft:blasting",
|
||||||
"ingredient": "quickiemod:copperstring",
|
"ingredient": "quickiemod:copperstring",
|
||||||
"result": {
|
"result": {
|
||||||
"id":"quickiemod:copperstub"
|
"id":"quickiemod:copperstick"
|
||||||
},
|
},
|
||||||
"experience": 0.0,
|
"experience": 0.0,
|
||||||
"cookingtime": 200
|
"cookingtime": 200
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:blasting",
|
||||||
|
"ingredient": "quickiemod:copperpowder",
|
||||||
|
"result": {
|
||||||
|
"id": "quickiemod:oxidizedcopperpowder"},
|
||||||
|
"experience": 0.0,
|
||||||
|
"cookingtime": 400
|
||||||
|
}
|
@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": "quickiemod:quickieingot",
|
"s": "quickiemod:quickieingot",
|
||||||
"|": "quickiemod:copperstub"
|
"|": "quickiemod:copperstick"
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"id": "quickiemod:quickiepowderaxe",
|
"id": "quickiemod:quickiepowderaxe",
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": "quickiemod:quickieingot",
|
"s": "quickiemod:quickieingot",
|
||||||
"|": "quickiemod:copperstub"
|
"|": "quickiemod:copperstick"
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"id": "quickiemod:quickiepowderhoe",
|
"id": "quickiemod:quickiepowderhoe",
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": "quickiemod:quickieingot",
|
"s": "quickiemod:quickieingot",
|
||||||
"|": "quickiemod:copperstub"
|
"|": "quickiemod:copperstick"
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"id": "quickiemod:quickiepowderpickaxe",
|
"id": "quickiemod:quickiepowderpickaxe",
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": "quickiemod:quickieingot",
|
"s": "quickiemod:quickieingot",
|
||||||
"|": "quickiemod:copperstub"
|
"|": "quickiemod:copperstick"
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"id": "quickiemod:quickiepowdershovel",
|
"id": "quickiemod:quickiepowdershovel",
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"quickiemod:copperstick"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "quickiemod:copperstub",
|
||||||
|
"count": 2
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"ingredient": "quickiemod:quickieingot",
|
||||||
|
"result": {
|
||||||
|
"id": "quickiemod:quickiepowder"
|
||||||
|
},
|
||||||
|
"count": 1
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"ingredient": "quickiemod:speedingot",
|
||||||
|
"result": {
|
||||||
|
"id": "quickiemod:speedpowder"
|
||||||
|
},
|
||||||
|
"count": 1
|
||||||
|
}
|
Reference in New Issue
Block a user