added copper stub
@ -9,7 +9,7 @@ yarn_mappings=1.21.6+build.1
|
||||
loader_version=0.16.14
|
||||
|
||||
# Mod Properties
|
||||
mod_version=1.21.6.1
|
||||
mod_version=1.21.6.2
|
||||
maven_group=de.jottyfan.quickiemod
|
||||
archives_base_name=quickiemod
|
||||
|
||||
|
@ -27,6 +27,9 @@ public class ModIdentifiers {
|
||||
public static final Identifier ITEM_CANOLASEED = Identifier.of(Quickiemod.MOD_ID, "canolaseed");
|
||||
public static final Identifier ITEM_CANOLABOTTLE = Identifier.of(Quickiemod.MOD_ID, "canolabottle");
|
||||
public static final Identifier ITEM_CANOLABOTTLESTACK = Identifier.of(Quickiemod.MOD_ID, "canolabottlestack");
|
||||
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_COPPERSTUB = Identifier.of(Quickiemod.MOD_ID, "copperstub");
|
||||
|
||||
public static final Identifier TOOL_SPEEDPOWDERAXE = Identifier.of(Quickiemod.MOD_ID, "speedpowderaxe");
|
||||
public static final Identifier TOOL_SPEEDPOWDERHOE = Identifier.of(Quickiemod.MOD_ID, "speedpowderhoe");
|
||||
|
@ -52,6 +52,12 @@ public class ModItems {
|
||||
new Item64Stack(ModIdentifiers.ITEM_CANOLABOTTLE));
|
||||
public static final Item ITEM_CANOLABOTTLESTACK = registerItem(ModIdentifiers.ITEM_CANOLABOTTLESTACK,
|
||||
new Item64Stack(ModIdentifiers.ITEM_CANOLABOTTLESTACK));
|
||||
public static final Item ITEM_COPPERSTRING = registerItem(ModIdentifiers.ITEM_COPPERSTRING,
|
||||
new Item64Stack(ModIdentifiers.ITEM_COPPERSTRING));
|
||||
public static final Item ITEM_COPPERPOWDER = registerItem(ModIdentifiers.ITEM_COPPERPOWDER,
|
||||
new Item64Stack(ModIdentifiers.ITEM_COPPERPOWDER));
|
||||
public static final Item ITEM_COPPERSTUB = registerItem(ModIdentifiers.ITEM_COPPERSTUB,
|
||||
new Item64Stack(ModIdentifiers.ITEM_COPPERSTUB));
|
||||
|
||||
public static final Item TOOL_SPEEDPOWDERAXE = registerItem(ModIdentifiers.TOOL_SPEEDPOWDERAXE,
|
||||
new ToolSpeedpowderAxe(ModIdentifiers.TOOL_SPEEDPOWDERAXE));
|
||||
@ -102,6 +108,9 @@ public class ModItems {
|
||||
items.add(ITEM_CANOLASEED);
|
||||
items.add(ITEM_CANOLABOTTLE);
|
||||
items.add(ITEM_CANOLABOTTLESTACK);
|
||||
items.add(ITEM_COPPERSTRING);
|
||||
items.add(ITEM_COPPERPOWDER);
|
||||
items.add(ITEM_COPPERSTUB);
|
||||
|
||||
items.add(TOOL_SPEEDPOWDERPICKAXE);
|
||||
items.add(TOOL_SPEEDPOWDERAXE);
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickiemod:item/copperpowder"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickiemod:item/copperstring"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickiemod:item/copperstub"
|
||||
}
|
||||
}
|
@ -50,6 +50,9 @@
|
||||
"item.quickiemod.oxidizedcopperpowder": "oxidiertes Kupferpulver",
|
||||
"item.quickiemod.speedingot": "Fluchtpulverbarren",
|
||||
"item.quickiemod.quickieingot": "Eilpulverbarren",
|
||||
"item.quickiemod.copperstring": "Kupferband",
|
||||
"item.quickiemod.copperpowder": "Kupferpulver",
|
||||
"item.quickiemod.copperstub": "Kupferstab",
|
||||
"block.quickiemod.orenethersulphor": "Nether-Schwefel",
|
||||
"block.quickiemod.oresalpeter": "Salpetererz",
|
||||
"block.quickiemod.oresandsalpeter": "Salpetergestein",
|
||||
|
@ -50,6 +50,9 @@
|
||||
"item.quickiemod.oxidizedcopperpowder": "oxidized copper powder",
|
||||
"item.quickiemod.speedingot": "Speedpowderingot",
|
||||
"item.quickiemod.quickieingot": "Hurrypowderingot",
|
||||
"item.quickiemod.copperstring": "copper string",
|
||||
"item.quickiemod.copperpowder": "copper powder",
|
||||
"item.quickiemod.copperstub": "copper stub",
|
||||
"block.quickiemod.orenethersulphor": "nether sulfur",
|
||||
"block.quickiemod.oresalpeter": "salpeter ore",
|
||||
"block.quickiemod.oresandsalpeter": "salpeter stone",
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickiemod:item/copperpowder"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickiemod:item/copperstring"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickiemod:item/copperstub"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.7 KiB |
@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "minecraft:blasting",
|
||||
"ingredient": "quickiemod:copperstring",
|
||||
"result": {
|
||||
"id":"quickiemod:copperstub"
|
||||
},
|
||||
"experience": 0.0,
|
||||
"cookingtime": 200
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"c",
|
||||
"c",
|
||||
"c"
|
||||
],
|
||||
"key": {
|
||||
"c": "quickiemod:copperpowder"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:copperstring",
|
||||
"count": 1
|
||||
}
|
||||
}
|
@ -6,9 +6,9 @@
|
||||
"oqo"
|
||||
],
|
||||
"key": {
|
||||
"q": "quickiemod:quickieingot",
|
||||
"o": "quickiemod:quickieingot",
|
||||
"t": "minecraft:torch",
|
||||
"o": "minecraft:obsidian"
|
||||
"q": "quickiemod:copperstub"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:monsterhoarder",
|
||||
|
@ -8,7 +8,7 @@
|
||||
],
|
||||
"key": {
|
||||
"s": "quickiemod:quickieingot",
|
||||
"|": "minecraft:stick"
|
||||
"|": "quickiemod:copperstub"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:quickiepowderaxe",
|
||||
|
@ -8,7 +8,7 @@
|
||||
],
|
||||
"key": {
|
||||
"s": "quickiemod:quickieingot",
|
||||
"|": "minecraft:stick"
|
||||
"|": "quickiemod:copperstub"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:quickiepowderhoe",
|
||||
|
@ -8,7 +8,7 @@
|
||||
],
|
||||
"key": {
|
||||
"s": "quickiemod:quickieingot",
|
||||
"|": "minecraft:stick"
|
||||
"|": "quickiemod:copperstub"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:quickiepowderpickaxe",
|
||||
|
@ -8,7 +8,7 @@
|
||||
],
|
||||
"key": {
|
||||
"s": "quickiemod:quickieingot",
|
||||
"|": "minecraft:stick"
|
||||
"|": "quickiemod:copperstub"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickiemod:quickiepowdershovel",
|
||||
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"ingredient": "minecraft:copper_ingot",
|
||||
"result": {
|
||||
"id": "quickiemod:copperpowder"
|
||||
},
|
||||
"count": 1
|
||||
}
|