添加船的配方
This commit is contained in:
parent
ec0eee74e4
commit
0548f8eb4e
10 changed files with 110 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2024-12-15T19:19:44.8184797 Item Models: superbwarfare
|
||||
// 1.20.1 2024-12-15T19:44:08.2693772 Item Models: superbwarfare
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/aa_12_blueprint.json
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/ak_12_blueprint.json
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/ak_47_blueprint.json
|
||||
|
@ -47,6 +47,7 @@ e04bbd61e716fc5d53c9425aba508fc3287bfd57 assets/superbwarfare/models/item/iron_p
|
|||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/k_98_blueprint.json
|
||||
ce9e4fd8ea92cfdbdda158776c1b6e1b482a3f2a assets/superbwarfare/models/item/lead_ingot.json
|
||||
f66c351b4843ad4d4e086ccfb7d4d0221227d196 assets/superbwarfare/models/item/legendary_material_pack.json
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/m2hb_blueprint.json
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/marlin_blueprint.json
|
||||
13ca8d5676888ff51f3308d88e4bf67691fa34f8 assets/superbwarfare/models/item/minigun_blueprint.json
|
||||
c206cd345f459733399e0be4692586849ef0aac2 assets/superbwarfare/models/item/missile_engine.json
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "superbwarfare:item/gun_blueprint"
|
||||
}
|
||||
}
|
|
@ -131,6 +131,7 @@ public class ModItemModelProvider extends ItemModelProvider {
|
|||
blueprintItem(ModItems.MK_42_BLUEPRINT);
|
||||
blueprintItem(ModItems.MLE_1934_BLUEPRINT);
|
||||
blueprintItem(ModItems.ANNIHILATOR_BLUEPRINT);
|
||||
blueprintItem(ModItems.M_2_HB_BLUEPRINT);
|
||||
|
||||
// blocks
|
||||
evenSimplerBlockItem(ModBlocks.BARBED_WIRE);
|
||||
|
|
|
@ -220,6 +220,7 @@ public class ModItems {
|
|||
public static final RegistryObject<Item> MK_42_BLUEPRINT = ITEMS.register("mk_42_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY));
|
||||
public static final RegistryObject<Item> MLE_1934_BLUEPRINT = ITEMS.register("mle_1934_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY));
|
||||
public static final RegistryObject<Item> ANNIHILATOR_BLUEPRINT = ITEMS.register("annihilator_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY));
|
||||
public static final RegistryObject<Item> M_2_HB_BLUEPRINT = ITEMS.register("m2hb_blueprint", () -> new BlueprintItem(Rarity.RARE));
|
||||
|
||||
/**
|
||||
* Block
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"item.superbwarfare.mk_42_blueprint": "5''/54 Mk42 Blueprint",
|
||||
"item.superbwarfare.mle_1934_blueprint": "138.6mm50 Mle1934 R1938 Blueprint",
|
||||
"item.superbwarfare.annihilator_blueprint": "Annihilator Energy Gun Blueprint",
|
||||
"item.superbwarfare.m2hb_blueprint": "Annihilator Energy Gun Blueprint",
|
||||
|
||||
"item.superbwarfare.common_material_pack": "Common Material Pack",
|
||||
"item.superbwarfare.rare_material_pack": "Rare Material Pack",
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"item.superbwarfare.mk_42_blueprint": "5''/54 Mk42蓝图",
|
||||
"item.superbwarfare.mle_1934_blueprint": "138.6mm50 Mle1934 R1938蓝图",
|
||||
"item.superbwarfare.annihilator_blueprint": "歼灭者能量炮蓝图",
|
||||
"item.superbwarfare.m2hb_blueprint": "M2HB重机枪蓝图",
|
||||
|
||||
"item.superbwarfare.common_material_pack": "普通材料包",
|
||||
"item.superbwarfare.rare_material_pack": "稀有材料包",
|
||||
|
|
|
@ -158,6 +158,20 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "superbwarfare:m2hb_blueprint",
|
||||
"weight": 15,
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "superbwarfare:hunting_rifle_blueprint",
|
||||
|
|
|
@ -102,6 +102,20 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "superbwarfare:m2hb_blueprint",
|
||||
"weight": 15,
|
||||
"functions": [
|
||||
{
|
||||
"function": "set_count",
|
||||
"count": {
|
||||
"min": 1,
|
||||
"max": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "superbwarfare:sks_blueprint",
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"pattern": [
|
||||
"aba",
|
||||
"aca",
|
||||
"aaa"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "minecraft:diamond"
|
||||
},
|
||||
"b": {
|
||||
"item": "superbwarfare:m2hb_blueprint"
|
||||
},
|
||||
"c": {
|
||||
"item": "minecraft:lapis_lazuli"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "superbwarfare:m2hb_blueprint",
|
||||
"count": 2
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"pattern": [
|
||||
"abc",
|
||||
"def",
|
||||
"ghi"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "superbwarfare:m2hb_blueprint"
|
||||
},
|
||||
"b": {
|
||||
"item": "superbwarfare:epic_material_pack"
|
||||
},
|
||||
"c": {
|
||||
"tag":"forge:ingots/steel"
|
||||
},
|
||||
"d": {
|
||||
"item": "minecraft:comparator"
|
||||
},
|
||||
"e": {
|
||||
"tag": "minecraft:boats"
|
||||
},
|
||||
"f": {
|
||||
"item": "minecraft:chest"
|
||||
},
|
||||
"g": {
|
||||
"item": "superbwarfare:cell"
|
||||
},
|
||||
"h": {
|
||||
"item": "superbwarfare:motor"
|
||||
},
|
||||
"i": {
|
||||
"tag":"forge:ingots/copper"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "superbwarfare:container",
|
||||
"nbt": {
|
||||
"BlockEntityTag": {
|
||||
"EntityType": "superbwarfare:speedboat"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue